Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am currently using PHPUnit and DBUnit for my project. I have a problem in DBUnit because DBUnit PHPUnit_Extensions_Database_TestCase­Src class does not seem to be truncating the existing data on the test db. So this makes my insertion tests fail after only working for one time.

I am using mysql and here is my code :

abstract class Generic_Tests_DatabaseTestCase extends PHPUnit_Extensions_Database_TestCase
{
    // only instantiate pdo once for test clean-up/fixture load
    static private $pdo = null;

    // only instantiate PHPUnit_Extensions_Database_DB_IDatabaseConnection once per test
    private $conn = null;

    final public function getConnection()
    {
        if ($this->conn === null) {
            if (self::$pdo == null) {
                self::$pdo = new PDO( "mysql:dbname=db;host=localhost", "root", "pass" );
            }
            $this->conn = $this->createDefaultDBConnection(self::$pdo, "db");
        }

        return $this->conn;
    }
}

class DbopTest extends Generic_Tests_DatabaseTestCase
{       
    private $db;

    protected function setup(){
        $this->db = null;
    }

    public function getDataSet(){
        return $this->createMySQLXMLDataSet(dirname(__FILE__) . '/../rows.xml');
    }       
    ...
}

So how can I fix this problem? What is it that I do wrong here?

share|improve this question
Where does the wished truncation take's place? Which version of PHPUnit and which version of DBUnit are you using? – hakre Feb 28 '12 at 22:10
thats the problem, i think in my getDataSet method, truncation operates automatically. But I cant see that happen. I am using PHP Unit 3.6.10. – LostMohican Feb 29 '12 at 11:48
2  
It's just a guess, but you're overwriting the setUp() method. Please check if getDataSet() is still being called. – hakre Feb 29 '12 at 15:04
yeah, when i call the parent::setup the problem is fixed, good guess ; ) – LostMohican Feb 29 '12 at 21:52
1  
+1 Useful question because of the use of getDataSet and use of Generic DataTest class! – eddy147 Aug 2 '12 at 6:53
show 1 more comment

2 Answers

up vote 13 down vote accepted

If you override the setUp method, PHPUnit won't automatically call your getDataSet method. You need to take care that you call the parent::setUp method as well, otherwise PHPUnit does not know what to do ;).

share|improve this answer
+1 Easy to miss. Thank you. – eddy147 Aug 2 '12 at 6:53
Hahaha, thanks :D – inf3rno Apr 18 at 2:53

You need to have a getDataSet() method otherwise PHPUnit assumes you have no data to fixturize.

http://www.phpunit.de/manual/3.6/en/database.html

The getDataSet() method defines how the initial state of the database should look before each test is executed. The state of a database is abstracted through the concepts DataSet and DataTable both being represented by the interfaces PHPUnit_Extensions_Database_DataSet_IDataSet and PHPUnit_Extensions_Database_DataSet_IDataTable. The next section will describe in detail how these concepts work and what the benefits are for using them in database testing.

For the implementation we only need to know that the getDataSet() method is called once during setUp() to retrieve the fixture data-set and insert it into the database. In the example we are using a factory method createFlatXMLDataSet($filename) that represents a data-set through an XML representation.

share|improve this answer
you can see that my DbopTest method has a getDataSet method, and it creates dataset from a mysqldump file. – LostMohican Feb 29 '12 at 11:49

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.