]> source.dussan.org Git - nextcloud-server.git/commitdiff
Some UtilTests require DB 373/head
authorRoeland Jago Douma <roeland@famdouma.nl>
Mon, 11 Jul 2016 19:05:39 +0000 (21:05 +0200)
committerRoeland Jago Douma <roeland@famdouma.nl>
Mon, 11 Jul 2016 19:05:39 +0000 (21:05 +0200)
In the current setup there is no DI so no way to mock them.

tests/lib/UtilTest.php

index c68f8d00a40ca9d3ef310e65abc2ebcb2f915123..33c15565b92ac1b81f0313608809a99b4a7462c0 100644 (file)
@@ -29,6 +29,9 @@ class UtilTest extends \Test\TestCase {
                $this->assertTrue(is_string($edition));
        }
 
+       /**
+        * @group DB
+        */
        function testFormatDate() {
                date_default_timezone_set("UTC");
 
@@ -41,6 +44,9 @@ class UtilTest extends \Test\TestCase {
                $this->assertEquals($expected, $result);
        }
 
+       /**
+        * @group DB
+        */
        function testFormatDateWithTZ() {
                date_default_timezone_set("UTC");
 
@@ -69,6 +75,7 @@ class UtilTest extends \Test\TestCase {
 
        /**
         * @dataProvider formatDateWithTZFromSessionData
+        * @group DB
         */
        function testFormatDateWithTZFromSession($offset, $expected, $expectedTimeZone) {
                date_default_timezone_set("UTC");
@@ -285,6 +292,7 @@ class UtilTest extends \Test\TestCase {
         * Test default apps
         *
         * @dataProvider defaultAppsProvider
+        * @group DB
         */
        function testDefaultApps($defaultAppConfig, $expectedPath, $enabledApps) {
                $oldDefaultApps = \OCP\Config::getSystemValue('defaultapp', '');