| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196 |
- const { db } = require('../../../app/src/infrastructure/mongodb')
- const { expect } = require('chai')
- const User = require('./helpers/User').promises
- describe('Captcha', function () {
- let user
- beforeEach('create user', async function () {
- user = new User()
- await user.ensureUserExists()
- })
- async function login(email, password, captchaResponse) {
- await user.getCsrfToken()
- return user.doRequest('POST', {
- url: '/login',
- json: {
- email,
- password,
- 'g-recaptcha-response': captchaResponse,
- },
- })
- }
- async function loginWithCaptcha(captchaResponse) {
- return login(user.email, user.password, captchaResponse)
- }
- async function loginWithEmailAndCaptcha(email, captchaResponse) {
- return login(email, user.password, captchaResponse)
- }
- async function canSkipCaptcha(email) {
- await user.getCsrfToken()
- const { response, body } = await user.doRequest('POST', {
- url: '/login/can-skip-captcha',
- json: { email },
- })
- expect(response.statusCode).to.equal(200)
- return body
- }
- function expectBadCaptchaResponse(response, body) {
- expect(response.statusCode).to.equal(400)
- expect(body.errorReason).to.equal('cannot_verify_user_not_robot')
- }
- function expectSuccessfulLogin(response, body) {
- expect(response.statusCode).to.equal(200)
- expect(body).to.deep.equal({ redir: '/project' })
- }
- function expectBadLogin(response, body) {
- expect(response.statusCode).to.equal(401)
- expect(body).to.deep.equal({
- message: {
- text: 'Your email or password is incorrect. Please try again.',
- type: 'error',
- },
- })
- }
- it('should reject a login without captcha response', async function () {
- const { response, body } = await loginWithCaptcha('')
- expectBadCaptchaResponse(response, body)
- })
- it('should reject a login with an invalid captcha response', async function () {
- const { response, body } = await loginWithCaptcha('invalid')
- expectBadCaptchaResponse(response, body)
- })
- it('should accept a login with a valid captcha response', async function () {
- const { response, body } = await loginWithCaptcha('valid')
- expectSuccessfulLogin(response, body)
- })
- it('should note the solved captcha in audit log', async function () {
- const { response, body } = await loginWithCaptcha('valid')
- expectSuccessfulLogin(response, body)
- const auditLog = await user.getAuditLog()
- expect(auditLog[0].info).to.deep.equal({
- captcha: 'solved',
- method: 'Password login',
- })
- })
- describe('deviceHistory', function () {
- beforeEach('login', async function () {
- const { response, body } = await loginWithCaptcha('valid')
- expectSuccessfulLogin(response, body)
- })
- it('should be able to skip captcha with the same email', async function () {
- expect(await canSkipCaptcha(user.email)).to.equal(true)
- })
- it('should be able to omit captcha with the same email', async function () {
- const { response, body } = await loginWithCaptcha('')
- expectSuccessfulLogin(response, body)
- })
- it('should note the skipped captcha in audit log', async function () {
- const { response, body } = await loginWithCaptcha('')
- expectSuccessfulLogin(response, body)
- const auditLog = await user.getAuditLog()
- expect(auditLog[1].info).to.deep.equal({
- captcha: 'skipped',
- method: 'Password login',
- })
- })
- it('should request a captcha for another email', async function () {
- expect(await canSkipCaptcha('a@bc.de')).to.equal(false)
- })
- it('should flag missing captcha for another email', async function () {
- const { response, body } = await loginWithEmailAndCaptcha('a@bc.de', '')
- expectBadCaptchaResponse(response, body)
- })
- describe('login failure', function () {
- beforeEach(async function () {
- const { response, body } = await login(
- user.email,
- 'bad password',
- 'valid'
- )
- expectBadLogin(response, body)
- })
- it('should be able to skip captcha per device history', async function () {
- expect(await canSkipCaptcha(user.email)).to.equal(true)
- })
- it('should request a captcha despite device history entry', async function () {
- const { response, body } = await loginWithCaptcha('')
- expectBadCaptchaResponse(response, body)
- })
- it('should accept the login with captcha', async function () {
- const { response, body } = await loginWithCaptcha('valid')
- expectSuccessfulLogin(response, body)
- })
- describe('when the login failure happened a long time ago', function () {
- beforeEach(async function () {
- db.users.updateOne(
- { email: user.email },
- {
- $set: {
- lastFailedLogin: new Date(
- Date.now() - 90 * 24 * 60 * 60 * 1000
- ),
- },
- }
- )
- })
- it('should be able to skip captcha per device history', async function () {
- expect(await canSkipCaptcha(user.email)).to.equal(true)
- })
- it('should accept the login without captcha', async function () {
- const { response, body } = await loginWithCaptcha('')
- expectSuccessfulLogin(response, body)
- })
- it('should accept the login with captcha', async function () {
- const { response, body } = await loginWithCaptcha('valid')
- expectSuccessfulLogin(response, body)
- })
- })
- })
- describe('cycle history', function () {
- beforeEach('create and login with 10 other users', async function () {
- for (let i = 0; i < 10; i++) {
- const otherUser = new User()
- otherUser.password = user.password
- await otherUser.ensureUserExists()
- const { response, body } = await loginWithEmailAndCaptcha(
- otherUser.email,
- 'valid'
- )
- expectSuccessfulLogin(response, body)
- }
- })
- it('should have rolled out the initial users email', async function () {
- const { response, body } = await loginWithCaptcha('')
- expectBadCaptchaResponse(response, body)
- })
- })
- })
- })
|