Last active
July 1, 2020 11:19
-
-
Save kianaditya/022676988b7a766da8a7f1edd04e81dc to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const request = require('supertest') | |
const app = require('../src/app') | |
const expect = require('chai').expect | |
describe('GET /user endpoint', async () => { | |
it('GET /user endpoint success', async () => { | |
try { | |
const authResponse = await request(app) | |
.post('/login') | |
.send({ email: '[email protected]', password: 'password' }) | |
const token = authResponse.body.token | |
const response = await request(app).get('/user').set({ | |
'Content-Type': 'application/json', | |
Authorization: token, | |
}) | |
expect(response.statusCode).to.equal(200) | |
expect(response.body) | |
.to.be.an.instanceof(Object) | |
.that.includes.all.keys(['firstName', 'lastName']) | |
.and.to.have.property('Written') | |
.to.be.an.instanceof(Array) | |
.and.to.have.length(4) | |
.and.to.have.property(0) | |
.to.be.an.instanceof(Object) | |
.that.includes.all.keys(['id', 'title', 'content']) | |
} catch (error) { | |
console.error(error) | |
} | |
}) | |
it('GET /user endpoint failure', async () => { | |
try { | |
const response = await request(app).get('/user') | |
expect(response.statusCode).to.equal(401) | |
} catch (error) { | |
console.log(error) | |
} | |
}) | |
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment