diff options
author | Chocobozzz <me@florianbigard.com> | 2020-12-30 11:27:00 +0100 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2020-12-30 11:27:00 +0100 |
commit | 6eb3a98843b845ce27a2231e40d466e1b40d0264 (patch) | |
tree | 8829394d961faf0ed75d943175bd705fc9d76109 /server/tests | |
parent | a0194a187fba31ccb895a245134e8713798da47e (diff) | |
parent | 24198e976f41bcc41b90c640f2c51931fc22b0a4 (diff) | |
download | PeerTube-6eb3a98843b845ce27a2231e40d466e1b40d0264.tar.gz PeerTube-6eb3a98843b845ce27a2231e40d466e1b40d0264.tar.zst PeerTube-6eb3a98843b845ce27a2231e40d466e1b40d0264.zip |
Merge branch '3520-cli_auth_add_trailing_slash' into release/3.0.0
Diffstat (limited to 'server/tests')
-rw-r--r-- | server/tests/cli/peertube.ts | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/server/tests/cli/peertube.ts b/server/tests/cli/peertube.ts index 348438533..fcf7e2e2e 100644 --- a/server/tests/cli/peertube.ts +++ b/server/tests/cli/peertube.ts | |||
@@ -66,6 +66,18 @@ describe('Test CLI wrapper', function () { | |||
66 | await execCLI(`${env} ${cmd} auth add -u ${server.url} -U user_1 -p super_password`) | 66 | await execCLI(`${env} ${cmd} auth add -u ${server.url} -U user_1 -p super_password`) |
67 | }) | 67 | }) |
68 | 68 | ||
69 | it('Should not fail to add a user if there is a slash at the end of the instance URL', async function () { | ||
70 | this.timeout(60000) | ||
71 | |||
72 | const env = getEnvCli(server) | ||
73 | let fullServerURL | ||
74 | fullServerURL = server.url + '/' | ||
75 | await execCLI(`${env} ${cmd} auth add -u ${fullServerURL} -U user_1 -p super_password`) | ||
76 | |||
77 | fullServerURL = server.url + '/asdfasdf' | ||
78 | await execCLI(`${env} ${cmd} auth add -u ${fullServerURL} -U user_1 -p super_password`) | ||
79 | }) | ||
80 | |||
69 | it('Should default to this user', async function () { | 81 | it('Should default to this user', async function () { |
70 | this.timeout(60000) | 82 | this.timeout(60000) |
71 | 83 | ||