forked from bcit-ci/CodeIgniter
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request bcit-ci#1394 from toopay/db-test-suite
Escape like tests, bcit-ci#136 verification
- Loading branch information
Showing
3 changed files
with
69 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
<?php | ||
|
||
class Escape_test extends CI_TestCase { | ||
|
||
/** | ||
* @var object Database/Query Builder holder | ||
*/ | ||
protected $db; | ||
|
||
public function set_up() | ||
{ | ||
$this->db = Mock_Database_Schema_Skeleton::init(DB_DRIVER); | ||
|
||
Mock_Database_Schema_Skeleton::create_tables(); | ||
Mock_Database_Schema_Skeleton::create_data(); | ||
} | ||
|
||
// ------------------------------------------------------------------------ | ||
|
||
/** | ||
* @see ./mocks/schema/skeleton.php | ||
*/ | ||
public function test_escape_like_percent_sign() | ||
{ | ||
$string = $this->db->escape_like_str('\%foo'); | ||
$sql = "SELECT `value` FROM `misc` WHERE `key` LIKE '$string%';"; | ||
$res = $this->db->query($sql)->result_array(); | ||
|
||
// Check the result | ||
$this->assertEquals(1, count($res)); | ||
} | ||
|
||
// ------------------------------------------------------------------------ | ||
|
||
/** | ||
* @see ./mocks/schema/skeleton.php | ||
*/ | ||
public function test_escape_like_backslash_sign() | ||
{ | ||
$string = $this->db->escape_like_str('\\'); | ||
$sql = "SELECT `value` FROM `misc` WHERE `key` LIKE '$string%';"; | ||
$res = $this->db->query($sql)->result_array(); | ||
|
||
// Check the result | ||
$this->assertEquals(2, count($res)); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters