1
0
Fork 0
mirror of https://github.com/Chocobozzz/PeerTube.git synced 2025-10-05 02:39:33 +02:00

Server: adapt tests to host

This commit is contained in:
Chocobozzz 2016-11-14 20:45:00 +01:00
parent 49abbbbedc
commit a4254ea173
7 changed files with 58 additions and 48 deletions

View file

@ -30,25 +30,25 @@ function makeFriends (url, accessToken, expectedStatus, end) {
// Which pod makes friends with which pod
const friendsMatrix = {
'http://localhost:9001': [
'http://localhost:9002'
'localhost:9002'
],
'http://localhost:9002': [
'http://localhost:9003'
'localhost:9003'
],
'http://localhost:9003': [
'http://localhost:9001'
'localhost:9001'
],
'http://localhost:9004': [
'http://localhost:9002'
'localhost:9002'
],
'http://localhost:9005': [
'http://localhost:9001',
'http://localhost:9004'
'localhost:9001',
'localhost:9004'
],
'http://localhost:9006': [
'http://localhost:9001',
'http://localhost:9002',
'http://localhost:9003'
'localhost:9001',
'localhost:9002',
'localhost:9003'
]
}
const path = '/api/v1/pods/makefriends'
@ -58,7 +58,7 @@ function makeFriends (url, accessToken, expectedStatus, end) {
.post(path)
.set('Accept', 'application/json')
.set('Authorization', 'Bearer ' + accessToken)
.send({ 'urls': friendsMatrix[url] })
.send({ 'hosts': friendsMatrix[url] })
.expect(expectedStatus)
.end(function (err, res) {
if (err) throw err