Created
December 26, 2017 12:09
-
-
Save blairg/dd575471f9f9cc90ff3b0dab2e4a6446 to your computer and use it in GitHub Desktop.
Migrate from Mocha to Jest - Example
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
/* eslint-disable no-undef */ | |
import HttpStatus from 'http-status'; | |
import cache from 'memory-cache'; | |
import { fn as momentProto } from 'moment'; | |
import ApiController from './../../../src/server/controllers/api'; | |
describe('server/controllers/api', () => { | |
describe('server/controllers/api', () => { | |
describe('get/handler', () => { | |
test('should return a list of todos', () => { | |
const todos = [{ title: 'my title', body: 'my body' }]; | |
const reply = () => ({ | |
code: () => HttpStatus.OK, | |
}); | |
cache.get = jest.fn(() => JSON.stringify(todos)); | |
const requestSpy = jest.fn(); | |
const replySpy = jest.fn(reply); | |
ApiController.get.handler(requestSpy, replySpy); | |
expect(replySpy).toBeCalledWith(todos); | |
}); | |
}); | |
describe('add/handler', () => { | |
test('should add to data store and return a 201 response', () => { | |
const todos = [{ title: 'my title', body: 'my body' }]; | |
const request = { | |
payload: todos[0], | |
server: { | |
publish: () => {}, | |
}, | |
}; | |
const reply = () => ({ | |
code: () => HttpStatus.CREATED, | |
}); | |
momentProto.unix = jest.fn(() => 100); | |
cache.get = jest.fn(() => JSON.stringify(todos)); | |
const replySpy = jest.fn(reply); | |
ApiController.add.handler(request, replySpy); | |
expect(replySpy).toBeCalledWith({ created: 'OK' }); | |
}); | |
test('should add to data store if data store is empty and return a 201 response', () => { | |
const todos = [{ title: 'my title', body: 'my body' }]; | |
const request = { | |
payload: todos[0], | |
server: { | |
publish: () => {}, | |
}, | |
}; | |
const reply = () => ({ | |
code: () => HttpStatus.CREATED, | |
}); | |
momentProto.unix = jest.fn(() => 100); | |
cache.get = jest.fn(() => null); | |
const replySpy = jest.fn(reply); | |
ApiController.add.handler(request, replySpy); | |
expect(replySpy).toBeCalledWith({ created: 'OK' }); | |
}); | |
test('should not add to data store and return a bad request', () => { | |
const request = { | |
payload: null, | |
server: { | |
publish: () => {}, | |
}, | |
}; | |
const reply = () => ({ | |
code: () => HttpStatus.BAD_REQUEST, | |
}); | |
const replySpy = jest.fn(reply); | |
ApiController.add.handler(request, replySpy); | |
expect(replySpy).toBeCalledWith({ 'bad request': 'false' }); | |
}); | |
}); | |
describe('delete/handler', () => { | |
test('should delete todos and return status of 205', () => { | |
const request = { | |
payload: null, | |
server: { | |
publish: () => {}, | |
}, | |
}; | |
const reply = () => ({ | |
code: () => HttpStatus.RESET_CONTENT, | |
}); | |
cache.put = jest.fn(() => []); | |
const replySpy = jest.fn(reply); | |
ApiController.delete.handler(request, replySpy); | |
expect(replySpy).toBeCalledWith({ deleted: 'OK' }); | |
}); | |
}); | |
}); | |
}); |
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
/* eslint-disable no-undef */ | |
import sinon from 'sinon'; | |
import HttpStatus from 'http-status'; | |
import cache from 'memory-cache'; | |
import { fn as momentProto } from 'moment'; | |
import ApiController from './../../../src/server/controllers/api'; | |
const sandbox = sinon.sandbox.create(); | |
describe('server/controllers/api', () => { | |
beforeEach(() => { | |
sandbox.stub(cache, 'get'); | |
sandbox.stub(cache, 'put'); | |
sandbox.stub(momentProto, 'unix'); | |
}); | |
afterEach(() => { | |
sandbox.restore(); | |
}); | |
describe('server/controllers/api', () => { | |
describe('get/handler', () => { | |
it('should return a list of todos', () => { | |
const todos = [{ title: 'my title', body: 'my body' }]; | |
const reply = () => ({ | |
code: () => HttpStatus.OK, | |
}); | |
cache.get.returns(JSON.stringify(todos)); | |
const requestSpy = sandbox.spy(); | |
const replySpy = sandbox.spy(reply); | |
ApiController.get.handler(requestSpy, replySpy); | |
sinon.assert.calledWith(replySpy, todos); | |
}); | |
}); | |
describe('add/handler', () => { | |
it('should add to data store and return a 201 response', () => { | |
const todos = [{ title: 'my title', body: 'my body' }]; | |
const request = { | |
payload: todos[0], | |
server: { | |
publish: () => { }, | |
}, | |
}; | |
const reply = () => ({ | |
code: () => HttpStatus.CREATED, | |
}); | |
momentProto.unix.returns(100); | |
cache.get.returns(JSON.stringify(todos)); | |
const replySpy = sandbox.spy(reply); | |
ApiController.add.handler(request, replySpy); | |
sinon.assert.calledWith(replySpy, { created: 'OK' }); | |
}); | |
it('should add to data store if data store is empty and return a 201 response', () => { | |
const todos = [{ title: 'my title', body: 'my body' }]; | |
const request = { | |
payload: todos[0], | |
server: { | |
publish: () => { }, | |
}, | |
}; | |
const reply = () => ({ | |
code: () => HttpStatus.CREATED, | |
}); | |
momentProto.unix.returns(100); | |
cache.get.returns(null); | |
const replySpy = sandbox.spy(reply); | |
ApiController.add.handler(request, replySpy); | |
sinon.assert.calledWith(replySpy, { created: 'OK' }); | |
}); | |
it('should not add to data store and return a bad request', () => { | |
const request = { | |
payload: null, | |
server: { | |
publish: () => { }, | |
}, | |
}; | |
const reply = () => ({ | |
code: () => HttpStatus.BAD_REQUEST, | |
}); | |
const replySpy = sandbox.spy(reply); | |
ApiController.add.handler(request, replySpy); | |
sinon.assert.calledWith(replySpy, { 'bad request': 'false' }); | |
}); | |
}); | |
describe('delete/handler', () => { | |
it('should delete todos and return status of 205', () => { | |
const request = { | |
payload: null, | |
server: { | |
publish: () => { }, | |
}, | |
}; | |
const reply = () => ({ | |
code: () => HttpStatus.RESET_CONTENT, | |
}); | |
cache.put.returns([]); | |
const replySpy = sandbox.spy(reply); | |
ApiController.delete.handler(request, replySpy); | |
sinon.assert.calledWith(replySpy, { deleted: 'OK' }); | |
}); | |
}); | |
}); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment