Add more test cases
Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
This commit is contained in:
parent
c275beeceb
commit
9dae927b0c
1 changed files with 4 additions and 1 deletions
|
@ -158,12 +158,15 @@ class SetupTest extends \Test\TestCase {
|
|||
|
||||
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', ''],
|
||||
'https://nctest13pgsql.lan/nextcloud' => ['https://nctest13pgsql.lan/', ''],
|
||||
'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', ''],
|
||||
|
|
Loading…
Reference in a new issue