如何使用Jest和Supertest在每次测试之间清除cookie?

时间:2018-09-06 15:58:01

标签: reactjs jestjs supertest superagent

我有一套测试,如果它们分别运行则全部通过。但是,如果并行运行测试,则由于检查cookie的值而导致测试失败。

问题在于,每次测试之间都不会清除supertest的cookie。

是否有一种方法可以在每个测试之间使用超级测试清除Cookie?这与this open issue相关,后者没有提供解决方案。

我都尝试过:

afterEach(() => {
  request(app)
    .set('Cookie', [])
})

和:

afterEach(() => {
  request(app)
    .set('Cookie', '')
})

...无济于事。

以下两个测试可以单独运行,但如果并行运行则会失败:

test('It should respond 302 to the wrong url', (done) => {
  const accessiblePages = {get_member_accessible_pages: []}
  nock('http://localhost:8000')
    .log(console.log)
    .get('/auth/me/')
    .reply(200, accessiblePages)
  // Must use j: to work with cookie parser
  const cookie = 'userInfo=j:' + encodeURIComponent(
    JSON.stringify(accessiblePages))
  request(app)
    .get('/first-url')
    .set('Cookie', cookie)
    .expect(302)
    .expect('Location', '/new-url')
    .then((response) => {
      expect(response.statusCode).toBe(302)
      done()
    })
})

test('It should set an updated cookie for the logged in user', (done) => {
  const accessiblePages = {get_member_accessible_pages: [123, 456]}
  nock('http://localhost:8000')
    .log(console.log)
    .get('/auth/me/')
    .reply(200, accessiblePages)
  // Must use j: to work with cookie parser
  const userInfoCookie = 'userInfo=j:' + encodeURIComponent(
    JSON.stringify(accessiblePages))
  const accessTokenCookie = 'accessToken=accessToken'
  const requestCookie = [userInfoCookie, accessTokenCookie].join(';')
  const responseCookieValue = accessiblePages
  request(app)
    .get('/first-url')
    .set('Cookie', requestCookie)
    .expect(200)
    .then((response) => {
      expect(response.statusCode).toBe(200)
      const cookies = setCookie.parse(response)
      expect(cookieParser.JSONCookie(cookies[0].value))
        .toEqual(responseCookieValue) // FAILS HERE - shows accessiblePages variable from the previous test.
      done()
    })
})

1 个答案:

答案 0 :(得分:0)

您可以尝试显式清除在测试中设置的cookie。 可以通过NPM模块'js-cookies'或通过简单的辅助函数来完成:

function removeCookie(name) {
  document.cookie = `${name}=1; expires=1 Jan 1970 00:00:00 GMT;`
}

如果您想一次清理所有cookie,则可以使用this解决方案。