overleaf/services/contacts/test/acceptance/js/GettingContactsTests.js
Jakob Ackermann a540754f6e Merge pull request #18116 from overleaf/jpa-bulk-replace-localhost
[misc] bulk replace localhost with 127.0.0.1

GitOrigin-RevId: d238f3635302e8ff5500d611108c4d1bef216726
2024-04-26 08:04:39 +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://127.0.0.1:3036'
describe('Getting Contacts', function () {
before(function (done) {
this.server = app.listen(3036, '127.0.0.1', error => {
if (error != null) {
throw error
}
done()
})
})
after(function () {
this.server.close()
})
describe('with no contacts', function () {
beforeEach(function () {
this.user_id = new 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 = new ObjectId().toString()
this.contact_id_1 = new ObjectId().toString()
this.contact_id_2 = new ObjectId().toString()
this.contact_id_3 = new 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()
}
)
})
})
})