Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorMorris Jobke <hey@morrisjobke.de>2018-10-03 00:39:30 +0300
committerGitHub <noreply@github.com>2018-10-03 00:39:30 +0300
commit8ede3f6346aaf96671878b320b82fd5542acef91 (patch)
treec0759b03e99e374bed3c8adb98c166ba5337d9c2 /tests
parente45248c17a796645c6de4399b6693405e5b19818 (diff)
parent9dae927b0c666f8db70732b0ac098b44ed913d92 (diff)
Merge pull request #11446 from nextcloud/bugfix/10678/pretty-urls-dont-work
Allow overwrite.cli.url without trailing slash
Diffstat (limited to 'tests')
-rw-r--r--tests/lib/SetupTest.php14
1 files changed, 12 insertions, 2 deletions
diff --git a/tests/lib/SetupTest.php b/tests/lib/SetupTest.php
index 628f9393c15..176a5b19f29 100644
--- a/tests/lib/SetupTest.php
+++ b/tests/lib/SetupTest.php
@@ -153,14 +153,24 @@ class SetupTest extends \Test\TestCase {
}
\OC::$CLI = $cliState;
- $this->assertEquals($webRoot, $expected);
+ $this->assertSame($webRoot, $expected);
}
public function findWebRootProvider(): array {
return [
+ 'https://www.example.com/nextcloud/' => ['https://www.example.com/nextcloud/', '/nextcloud'],
'https://www.example.com/nextcloud' => ['https://www.example.com/nextcloud', '/nextcloud'],
'https://www.example.com/' => ['https://www.example.com/', ''],
- 'https://www.example.com' => ['https://www.example.com', false],
+ 'https://www.example.com' => ['https://www.example.com', ''],
+ 'https://nctest13pgsql.lan/test123/' => ['https://nctest13pgsql.lan/test123/', '/test123'],
+ 'https://nctest13pgsql.lan/test123' => ['https://nctest13pgsql.lan/test123', '/test123'],
+ 'https://nctest13pgsql.lan/' => ['https://nctest13pgsql.lan/', ''],
+ 'https://nctest13pgsql.lan' => ['https://nctest13pgsql.lan', ''],
+ 'https://192.168.10.10/nc/' => ['https://192.168.10.10/nc/', '/nc'],
+ 'https://192.168.10.10/nc' => ['https://192.168.10.10/nc', '/nc'],
+ 'https://192.168.10.10/' => ['https://192.168.10.10/', ''],
+ 'https://192.168.10.10' => ['https://192.168.10.10', ''],
+ 'invalid' => ['invalid', false],
'empty' => ['', false],
];
}