aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/tests/api/friends-basic.js
blob: 5f1fdd255d728104db58d2fa433886baf20d2662 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
/* eslint-disable no-unused-expressions */

'use strict'

const chai = require('chai')
const each = require('async/each')
const expect = chai.expect
const series = require('async/series')

const loginUtils = require('../utils/login')
const miscsUtils = require('../utils/miscs')
const podsUtils = require('../utils/pods')
const serversUtils = require('../utils/servers')

describe('Test basic friends', function () {
  let servers = []

  function makeFriends (podNumber, callback) {
    const server = servers[podNumber - 1]
    return podsUtils.makeFriends(server.url, server.accessToken, callback)
  }

  function testMadeFriends (servers, serverToTest, callback) {
    const friends = []
    for (let i = 0; i < servers.length; i++) {
      if (servers[i].url === serverToTest.url) continue
      friends.push(servers[i].host)
    }

    podsUtils.getFriendsList(serverToTest.url, function (err, res) {
      if (err) throw err

      const result = res.body.data
      expect(result).to.be.an('array')
      expect(result.length).to.equal(2)

      const resultHosts = [ result[0].host, result[1].host ]
      expect(resultHosts[0]).to.not.equal(resultHosts[1])

      const errorString = 'Friends host do not correspond for ' + serverToTest.host
      expect(friends).to.contain(resultHosts[0], errorString)
      expect(friends).to.contain(resultHosts[1], errorString)
      callback()
    })
  }

  // ---------------------------------------------------------------

  before(function (done) {
    this.timeout(120000)
    serversUtils.flushAndRunMultipleServers(3, function (serversRun, urlsRun) {
      servers = serversRun

      each(servers, function (server, callbackEach) {
        loginUtils.loginAndGetAccessToken(server, function (err, accessToken) {
          if (err) return callbackEach(err)

          server.accessToken = accessToken
          callbackEach()
        })
      }, done)
    })
  })

  it('Should not have friends', function (done) {
    each(servers, function (server, callback) {
      podsUtils.getFriendsList(server.url, function (err, res) {
        if (err) throw err

        const result = res.body.data
        expect(result).to.be.an('array')
        expect(result.length).to.equal(0)
        callback()
      })
    }, done)
  })

  it('Should make friends', function (done) {
    this.timeout(120000)

    series([
      // The second pod make friend with the third
      function (next) {
        makeFriends(2, next)
      },
      // Wait for the request between pods
      function (next) {
        setTimeout(next, 11000)
      },
      // The second pod should have the third as a friend
      function (next) {
        podsUtils.getFriendsList(servers[1].url, function (err, res) {
          if (err) throw err

          const result = res.body.data
          expect(result).to.be.an('array')
          expect(result.length).to.equal(1)

          const pod = result[0]
          expect(pod.host).to.equal(servers[2].host)
          expect(pod.email).to.equal('admin3@example.com')
          expect(pod.score).to.equal(20)
          expect(miscsUtils.dateIsValid(pod.createdAt)).to.be.true

          next()
        })
      },
      // Same here, the third pod should have the second pod as a friend
      function (next) {
        podsUtils.getFriendsList(servers[2].url, function (err, res) {
          if (err) throw err

          const result = res.body.data
          expect(result).to.be.an('array')
          expect(result.length).to.equal(1)

          const pod = result[0]
          expect(pod.host).to.equal(servers[1].host)
          expect(pod.email).to.equal('admin2@example.com')
          expect(pod.score).to.equal(20)
          expect(miscsUtils.dateIsValid(pod.createdAt)).to.be.true

          next()
        })
      },
      // Finally the first pod make friend with the second pod
      function (next) {
        makeFriends(1, next)
      },
      // Wait for the request between pods
      function (next) {
        setTimeout(next, 11000)
      }
    ],
    // Now each pod should be friend with the other ones
    function (err) {
      if (err) throw err
      each(servers, function (server, callback) {
        testMadeFriends(servers, server, callback)
      }, done)
    })
  })

  it('Should not be allowed to make friend again', function (done) {
    this.timeout(10000)
    const server = servers[1]
    podsUtils.makeFriends(server.url, server.accessToken, 409, done)
  })

  it('Should quit friends of pod 2', function (done) {
    this.timeout(10000)

    series([
      // Pod 1 quit friends
      function (next) {
        const server = servers[1]
        podsUtils.quitFriends(server.url, server.accessToken, next)
      },
      // Pod 1 should not have friends anymore
      function (next) {
        podsUtils.getFriendsList(servers[1].url, function (err, res) {
          if (err) throw err

          const result = res.body.data
          expect(result).to.be.an('array')
          expect(result.length).to.equal(0)

          next()
        })
      },
      // Other pods shouldn't have pod 1 too
      function (next) {
        each([ servers[0].url, servers[2].url ], function (url, callback) {
          podsUtils.getFriendsList(url, function (err, res) {
            if (err) throw err

            const result = res.body.data
            expect(result).to.be.an('array')
            expect(result.length).to.equal(1)
            expect(result[0].host).not.to.be.equal(servers[1].host)
            callback()
          })
        }, next)
      }
    ], done)
  })

  it('Should allow pod 2 to make friend again', function (done) {
    this.timeout(120000)

    const server = servers[1]
    podsUtils.makeFriends(server.url, server.accessToken, function () {
      setTimeout(function () {
        each(servers, function (server, callback) {
          testMadeFriends(servers, server, callback)
        }, done)
      }, 11000)
    })
  })

  it('Should allow pod 1 to quit only pod 2', function (done) {
    series([
      // Pod 1 quits pod 2
      function (next) {
        const server = servers[0]

        // Get pod 2 id so we can query it
        podsUtils.getFriendsList(server.url, function (err, res) {
          if (err) throw err

          const result = res.body.data
          let pod = result.find((friend) => (friend.host === servers[1].host))

          // Remove it from the friends list
          podsUtils.quitOneFriend(server.url, server.accessToken, pod.id, next)
        })
      },

      // Pod 1 should have only pod 3 in its friends list
      function (next) {
        podsUtils.getFriendsList(servers[0].url, function (err, res) {
          if (err) throw err

          const result = res.body.data
          expect(result).to.be.an('array')
          expect(result.length).to.equal(1)

          const pod = result[0]
          expect(pod.host).to.equal(servers[2].host)

          next()
        })
      },

      // Pod 2 should have only pod 3 in its friends list
      function (next) {
        podsUtils.getFriendsList(servers[1].url, function (err, res) {
          if (err) throw err

          const result = res.body.data
          expect(result).to.be.an('array')
          expect(result.length).to.equal(1)

          const pod = result[0]
          expect(pod.host).to.equal(servers[2].host)

          next()
        })
      },

      // Pod 3 should have both pods in its friends list
      function (next) {
        podsUtils.getFriendsList(servers[2].url, function (err, res) {
          if (err) throw err

          const result = res.body.data
          expect(result).to.be.an('array')
          expect(result.length).to.equal(2)

          next()
        })
      }
    ], done)
  })

  after(function (done) {
    servers.forEach(function (server) {
      process.kill(-server.app.pid)
    })

    if (this.ok) {
      serversUtils.flushTests(done)
    } else {
      done()
    }
  })
})