-
Notifications
You must be signed in to change notification settings - Fork 4
/
classifications-test.ts
161 lines (141 loc) · 4.58 KB
/
classifications-test.ts
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
import { expect } from "chai";
import reducer, { ClassificationsState } from "../classifications";
import ActionCreator from "../../actions";
describe("classifications reducer", () => {
const genreData = {
Fiction: {},
Nonfiction: {},
};
const classificationsData = [
{
type: "type",
name: "name",
source: "source",
weight: "weight",
},
];
const initState: ClassificationsState = {
genreTree: null,
classifications: null,
isFetchingGenreTree: false,
isEditingClassifications: false,
isFetchingClassifications: false,
fetchError: null,
};
const errorState: ClassificationsState = {
genreTree: null,
classifications: null,
isFetchingGenreTree: false,
isEditingClassifications: false,
isFetchingClassifications: false,
fetchError: { status: 401, response: "test error", url: "test url" },
};
it("returns initial state for unrecognized action", () => {
expect(reducer(undefined, {})).to.deep.equal(initState);
});
it("handles GENRE_TREE_REQUEST", () => {
const action = { type: ActionCreator.GENRE_TREE_REQUEST, url: "test url" };
// start with empty state
let newState = Object.assign({}, initState, {
isFetchingGenreTree: true,
});
expect(reducer(initState, action)).to.deep.equal(newState);
// start with error state
newState = Object.assign({}, errorState, {
isFetchingGenreTree: true,
fetchError: null,
});
expect(reducer(errorState, action)).to.deep.equal(newState);
});
it("handles GENRE_TREE_FAILURE", () => {
const action = {
type: ActionCreator.GENRE_TREE_FAILURE,
error: "test error",
};
const oldState = Object.assign({}, initState, { isFetching: true });
const newState = Object.assign({}, oldState, {
fetchError: "test error",
isFetchingGenreTree: false,
});
expect(reducer(oldState, action)).to.deep.equal(newState);
});
it("handles GENRE_TREE_LOAD", () => {
const action = { type: ActionCreator.GENRE_TREE_LOAD, data: genreData };
const newState = Object.assign({}, initState, {
genreTree: genreData,
isFetchingGenreTree: false,
});
expect(reducer(initState, action)).to.deep.equal(newState);
});
it("handles EDIT_CLASSIFICATIONS_REQUEST", () => {
const action = {
type: ActionCreator.EDIT_CLASSIFICATIONS_REQUEST,
url: "test url",
};
// start with empty state
let newState = Object.assign({}, initState, {
isEditingClassifications: true,
});
expect(reducer(initState, action)).to.deep.equal(newState);
// start with error state
newState = Object.assign({}, errorState, {
isEditingClassifications: true,
fetchError: null,
});
expect(reducer(errorState, action)).to.deep.equal(newState);
});
it("handles EDIT_CLASSIFICATIONS_FAILURE", () => {
const action = {
type: ActionCreator.EDIT_CLASSIFICATIONS_FAILURE,
error: "test error",
};
const oldState = Object.assign({}, initState, {
isEditingClassifications: true,
});
const newState = Object.assign({}, oldState, {
fetchError: "test error",
isEditingClassifications: false,
});
expect(reducer(oldState, action)).to.deep.equal(newState);
});
it("handles CLASSIFICATIONS_REQUEST", () => {
const action = {
type: ActionCreator.CLASSIFICATIONS_REQUEST,
url: "test url",
};
// start with empty state
let newState = Object.assign({}, initState, {
isFetchingClassifications: true,
});
expect(reducer(initState, action)).to.deep.equal(newState);
// start with error state
newState = Object.assign({}, errorState, {
isFetchingClassifications: true,
fetchError: null,
});
expect(reducer(errorState, action)).to.deep.equal(newState);
});
it("handles CLASSIFICATIONS_FAILURE", () => {
const action = {
type: ActionCreator.CLASSIFICATIONS_FAILURE,
error: "test error",
};
const oldState = Object.assign({}, initState, { isFetching: true });
const newState = Object.assign({}, oldState, {
fetchError: "test error",
isFetchingClassifications: false,
});
expect(reducer(oldState, action)).to.deep.equal(newState);
});
it("handles CLASSIFICATIONS_LOAD", () => {
const action = {
type: ActionCreator.CLASSIFICATIONS_LOAD,
data: { classifications: classificationsData },
};
const newState = Object.assign({}, initState, {
classifications: classificationsData,
isFetchingClassifications: false,
});
expect(reducer(initState, action)).to.deep.equal(newState);
});
});