1
0
mirror of https://github.com/e107inc/e107.git synced 2025-04-05 21:22:57 +02:00

Improved determinism of cloned testDb_Select_gen() tests

If either e_db_mysqlTest's or e_db_pdoTest's testDb_Select_gen() method
gets called before the other, the second won't update and will return 0
instead of the expected 1.

The UPDATE query is unique for each test now so that this cannot happen
anymore.
This commit is contained in:
Deltik 2019-02-13 21:31:28 -06:00
parent c1a0d63abc
commit c4cbb19749
No known key found for this signature in database
GPG Key ID: 1167C5F9C9897637
2 changed files with 6 additions and 2 deletions

View File

@ -303,7 +303,9 @@
public function testDb_Select_gen()
{
$result = $this->db->db_Select_gen("UPDATE `#user` SET user_ip = '127.0.0.3' WHERE user_id = 1");
$result = $this->db->db_Select_gen(
"UPDATE `#user` SET user_signature = 'e_db_mysql' WHERE user_id = 1"
);
$this->assertEquals(1,$result);
}

View File

@ -330,7 +330,9 @@
public function testDb_Select_gen()
{
$result = $this->db->db_Select_gen("UPDATE `#user` SET user_ip = '127.0.0.3' WHERE user_id = 1");
$result = $this->db->db_Select_gen(
"UPDATE `#user` SET user_signature = 'e_db_pdo' WHERE user_id = 1"
);
$this->assertEquals(1,$result);
}