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
|
import reducer from "../../../src/console/reducers/console";
import { expect } from "chai";
import {
CONSOLE_HIDE,
CONSOLE_HIDE_COMMAND,
CONSOLE_SET_CONSOLE_TEXT,
CONSOLE_SHOW_COMMAND,
CONSOLE_SHOW_ERROR,
CONSOLE_SHOW_INFO,
ConsoleAction,
} from "../../../src/console/actions/console";
describe("console reducer", () => {
it("return the initial state", () => {
const state = reducer(undefined, {} as any);
expect(state).to.have.property("mode", "");
expect(state).to.have.property("messageText", "");
expect(state).to.have.property("consoleText", "");
});
it("return next state for CONSOLE_HIDE", () => {
const initialState = reducer(undefined, {} as any);
const action: ConsoleAction = { type: CONSOLE_HIDE };
const state = reducer({ ...initialState, mode: "error" }, action);
expect(state).to.have.property("mode", "");
});
it("return next state for CONSOLE_SHOW_COMMAND", () => {
const action: ConsoleAction = {
type: CONSOLE_SHOW_COMMAND,
text: "open ",
};
const state = reducer(undefined, action);
expect(state).to.have.property("mode", "command");
expect(state).to.have.property("consoleText", "open ");
});
it("return next state for CONSOLE_SHOW_INFO", () => {
const action: ConsoleAction = {
type: CONSOLE_SHOW_INFO,
text: "an info",
};
const state = reducer(undefined, action);
expect(state).to.have.property("mode", "info");
expect(state).to.have.property("messageText", "an info");
});
it("return next state for CONSOLE_SHOW_ERROR", () => {
const action: ConsoleAction = {
type: CONSOLE_SHOW_ERROR,
text: "an error",
};
const state = reducer(undefined, action);
expect(state).to.have.property("mode", "error");
expect(state).to.have.property("messageText", "an error");
});
it("return next state for CONSOLE_HIDE_COMMAND", () => {
const initialState = reducer(undefined, {} as any);
const action: ConsoleAction = {
type: CONSOLE_HIDE_COMMAND,
};
let state = reducer({ ...initialState, mode: "command" }, action);
expect(state).to.have.property("mode", "");
state = reducer({ ...initialState, mode: "error" }, action);
expect(state).to.have.property("mode", "error");
});
it("return next state for CONSOLE_SET_CONSOLE_TEXT", () => {
const action: ConsoleAction = {
type: CONSOLE_SET_CONSOLE_TEXT,
consoleText: "hello world",
};
const state = reducer(undefined, action);
expect(state).to.have.property("consoleText", "hello world");
});
});
|