]> source.dussan.org Git - nextcloud-server.git/commitdiff
Fix the db tests when running all tests
authorBart Visscher <bartv@thisnet.nl>
Fri, 12 Oct 2012 16:49:47 +0000 (18:49 +0200)
committerBart Visscher <bartv@thisnet.nl>
Fri, 12 Oct 2012 16:49:51 +0000 (18:49 +0200)
tests/lib/db.php
tests/lib/dbschema.php

index 4f1f03ae6f23e5311c555cdb6b0e8db085560c56..2344f7d8ec466ac129a35f101cbd406b697d0ebf 100644 (file)
@@ -7,6 +7,8 @@
  */
 
 class Test_DB extends UnitTestCase {
+       protected $backupGlobals = FALSE;
+
        protected static $schema_file = 'static://test_db_scheme';
        protected $test_prefix;
 
@@ -17,6 +19,7 @@ class Test_DB extends UnitTestCase {
                $content = file_get_contents( $dbfile );
                $content = str_replace( '*dbprefix*', '*dbprefix*'.$r, $content );
                file_put_contents( self::$schema_file, $content );
+               OC_DB::createDbFromStructure(self::$schema_file);
 
                $this->test_prefix = $r;
                $this->table1 = $this->test_prefix.'contacts_addressbooks';
@@ -24,29 +27,11 @@ class Test_DB extends UnitTestCase {
        }
 
        public function tearDown() {
-               unlink(self::$schema_file);
-       }
-
-       protected function setUpDB() {
-               OC_DB::disconnect();
-               OC_DB::createDbFromStructure(self::$schema_file);
-       }
-       protected function tearDownDB() {
                OC_DB::removeDBStructure(self::$schema_file);
+               unlink(self::$schema_file);
        }
 
-       // every thing in one test, phpunit messes with MDB2
-       // also setUpDB and tearDownDB only once, otherwise sqlite doesn't finish
-       public function testDBCompatibility() {
-               $this->setUpDB();
-               $this->doTestQuotes();
-               $this->doTestNOW();
-               $this->doTestUNIX_TIMESTAMP();
-               $this->tearDownDB();
-       }
-
-       public function doTestQuotes() {
-               //$this->setUpDB();
+       public function testQuotes() {
                $query = OC_DB::prepare('SELECT `fullname` FROM *PREFIX*'.$this->table2.' WHERE `uri` = ?');
                $result = $query->execute(array('uri_1'));
                $this->assertTrue($result);
@@ -63,28 +48,23 @@ class Test_DB extends UnitTestCase {
                $this->assertEqual($row['fullname'], 'fullname test');
                $row = $result->fetchRow();
                $this->assertFalse($row);
-               //$this->tearDownDB();
        }
 
-       public function doTestNOW() {
-               //$this->setUpDB();
+       public function testNOW() {
                $query = OC_DB::prepare('INSERT INTO *PREFIX*'.$this->table2.' (`fullname`,`uri`) VALUES (NOW(),?)');
                $result = $query->execute(array('uri_2'));
                $this->assertTrue($result);
                $query = OC_DB::prepare('SELECT `fullname`,`uri` FROM *PREFIX*'.$this->table2.' WHERE `uri` = ?');
                $result = $query->execute(array('uri_2'));
                $this->assertTrue($result);
-               //$this->tearDownDB();
        }
 
-       public function doTestUNIX_TIMESTAMP() {
-               //$this->setUpDB();
+       public function testUNIX_TIMESTAMP() {
                $query = OC_DB::prepare('INSERT INTO *PREFIX*'.$this->table2.' (`fullname`,`uri`) VALUES (UNIX_TIMESTAMP(),?)');
                $result = $query->execute(array('uri_3'));
                $this->assertTrue($result);
                $query = OC_DB::prepare('SELECT `fullname`,`uri` FROM *PREFIX*'.$this->table2.' WHERE `uri` = ?');
                $result = $query->execute(array('uri_3'));
                $this->assertTrue($result);
-               //$this->tearDownDB();
        }
 }
index 25abad7fc95602f591dfd783fc1f43b36c27e3a9..4796ada6921f063c3b356f33111e1937b19bed65 100644 (file)
@@ -35,7 +35,7 @@ class Test_DBSchema extends UnitTestCase {
                unlink(self::$schema_file2);
        }
 
-       // every thing in one test, phpunit messes with MDB2
+       // everything in one test, they depend on each other
        public function testSchema() {
                $this->doTestSchemaCreating();
                $this->doTestSchemaChanging();