overleaf/services/contacts/test/acceptance/js/GettingContactsTests.js
Alf Eaton c14467b87a Migrate contacts service to ES modules (#10904)
GitOrigin-RevId: c5abb64729530baecbee0eb589eaed39faa2ac56
2022-12-19 09:03:55 +00:00

121 lines
3 KiB
JavaScript

import { ObjectId } from 'mongodb'
import request from 'request'
import async from 'async'
import { app } from '../../../app/js/server.js'
const HOST = 'http://localhost:3036'
describe('Getting Contacts', function () {
before(function (done) {
this.server = app.listen(3036, 'localhost', error => {
if (error != null) {
throw error
}
done()
})
})
after(function () {
this.server.close()
})
describe('with no contacts', function () {
beforeEach(function () {
this.user_id = ObjectId().toString()
})
it('should return an empty array', function (done) {
request(
{
method: 'GET',
url: `${HOST}/user/${this.user_id}/contacts`,
json: true,
},
(error, response, body) => {
if (error) {
return done(error)
}
response.statusCode.should.equal(200)
body.contact_ids.should.deep.equal([])
done()
}
)
})
})
describe('with contacts', function () {
beforeEach(function (done) {
this.user_id = ObjectId().toString()
this.contact_id_1 = ObjectId().toString()
this.contact_id_2 = ObjectId().toString()
this.contact_id_3 = ObjectId().toString()
const touchContact = (userId, contactId, cb) =>
request(
{
method: 'POST',
url: `${HOST}/user/${userId}/contacts`,
json: {
contact_id: contactId,
},
},
cb
)
async.series(
[
// 2 is preferred since touched twice, then 3 since most recent, then 1
cb => touchContact(this.user_id, this.contact_id_1, cb),
cb => touchContact(this.user_id, this.contact_id_2, cb),
cb => touchContact(this.user_id, this.contact_id_2, cb),
cb => touchContact(this.user_id, this.contact_id_3, cb),
],
done
)
})
it('should return a sorted list of contacts', function (done) {
request(
{
method: 'GET',
url: `${HOST}/user/${this.user_id}/contacts`,
json: true,
},
(error, response, body) => {
if (error) {
return done(error)
}
response.statusCode.should.equal(200)
body.contact_ids.should.deep.equal([
this.contact_id_2,
this.contact_id_3,
this.contact_id_1,
])
done()
}
)
})
it('should respect a limit and only return top X contacts', function (done) {
request(
{
method: 'GET',
url: `${HOST}/user/${this.user_id}/contacts?limit=2`,
json: true,
},
(error, response, body) => {
if (error) {
return done(error)
}
response.statusCode.should.equal(200)
body.contact_ids.should.deep.equal([
this.contact_id_2,
this.contact_id_3,
])
done()
}
)
})
})
})