summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorBernhard Posselt <dev@bernhard-posselt.com>2014-05-02 22:11:14 +0200
committerBernhard Posselt <dev@bernhard-posselt.com>2014-05-02 22:11:14 +0200
commit32cab8ed69e3d197108ca24533c42aeb292215ba (patch)
treec2b00bb1f1a58b8319e39a7a68eadbb94436cb70 /tests
parente215a595ed5991ce4c25763b7e2eafd440d65478 (diff)
also validate database types
Diffstat (limited to 'tests')
-rw-r--r--tests/unit/config/AppConfigTest.php15
1 files changed, 14 insertions, 1 deletions
diff --git a/tests/unit/config/AppConfigTest.php b/tests/unit/config/AppConfigTest.php
index 7ee533e8b..8f91dd338 100644
--- a/tests/unit/config/AppConfigTest.php
+++ b/tests/unit/config/AppConfigTest.php
@@ -42,7 +42,7 @@ class AppConfigTest extends \PHPUnit_Framework_TestCase {
$installedExtensions = array(
'curl' => '4.3'
);
- $databaseType = 'postgresql';
+ $databaseType = 'oracle';
$this->config = new AppConfig($this->nav, $this->l10n,
$this->url, $phpVersion, $ownCloudVersion, $installedApps,
@@ -228,4 +228,17 @@ class AppConfigTest extends \PHPUnit_Framework_TestCase {
));
$this->config->testDependencies();
}
+
+
+ /**
+ * @expectedException \OCA\News\Config\DependencyException
+ */
+ public function testSupportedDb() {
+ $this->config->loadConfig(array(
+ 'databases' => array(
+ 'pgsql', 'sqlite'
+ )
+ ));
+ $this->config->testDependencies();
+ }
} \ No newline at end of file