-
Notifications
You must be signed in to change notification settings - Fork 1
/
giphy-search-actions-spec.js
77 lines (64 loc) · 2.1 KB
/
giphy-search-actions-spec.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
import proxyquire from 'proxyquire';
function assertDispatchCall(done, callIndex, actionAssertion) {
let call = 0;
return (...args) => {
try {
if (call === callIndex) {
expect(args).to.deep.equal([actionAssertion]);
done();
}
call++;
} catch (e) {
done(e);
}
};
}
describe('Action creators: giphy search', () => {
describe('submitSearch()', () => {
let searchGiphyMock;
let submitSearch;
function getStateMock() {
return {
searchTerm: 'mockSearchTerm',
};
}
beforeEach(() => {
searchGiphyMock = sinon.stub();
const giphySearchActions = proxyquire('../giphy-search-actions.js', {
'./giphy-search-service.js': {
searchGiphy: searchGiphyMock,
},
});
submitSearch = giphySearchActions.submitSearch;
});
describe('when giphy search succeeds', () => {
beforeEach(() => searchGiphyMock.returns(Promise.resolve({ data: 'mockGiphyList' })));
it('should dispatch SUBMIT_SEARCH immediately', () => {
const dispatchMock = sinon.spy();
submitSearch()(dispatchMock, getStateMock);
expect(dispatchMock).to.have.been.calledWithExactly({
type: 'SUBMIT_SEARCH',
});
});
it('should dispatch a GIPHY_RESPONSE', (done) => {
const dispatchMock = assertDispatchCall(done, 1, {
type: 'GIPHY_RESPONSE',
giphyList: 'mockGiphyList',
});
submitSearch()(dispatchMock, getStateMock);
expect(searchGiphyMock).to.have.been.calledWithExactly('mockSearchTerm');
});
});
describe('when giphy search fails', () => {
beforeEach(() => searchGiphyMock.returns(Promise.reject(new Error('mock error'))));
it('should dispatch a GIPHY_ERROR on invalid status', (done) => {
const dispatchMock = assertDispatchCall(done, 1, {
type: 'GIPHY_ERROR',
error: 'Error: mock error',
});
submitSearch()(dispatchMock, getStateMock);
expect(searchGiphyMock).to.have.been.calledWithExactly('mockSearchTerm');
});
});
});
});