-
-
Notifications
You must be signed in to change notification settings - Fork 97
/
is-action-of.spec.ts
139 lines (125 loc) · 4.13 KB
/
is-action-of.spec.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
import * as TH from './type-helpers';
import { isActionOf } from './is-action-of';
import { actions } from './type-helpers-fixtures';
const {
withTypeOnly,
withPayload,
withPayloadMeta,
withMappedPayload,
withMappedPayloadMeta,
} = actions;
/** HELPERS */
const typeOnlyAction = withTypeOnly();
const typeOnlyExpected = { type: 'WITH_TYPE_ONLY' };
const payloadAction = withPayload(2);
const payloadExpected = { type: 'WITH_PAYLOAD', payload: 2 };
const payloadMetaAction = withPayloadMeta(2, 'metaValue');
const payloadMetaExpected = {
type: 'WITH_PAYLOAD_META',
payload: 2,
meta: 'metaValue',
};
const mappedPayloadAction = withMappedPayload(2);
const mappedPayloadExpected = { type: 'WITH_MAPPED_PAYLOAD', payload: 2 };
const mappedPayloadMetaAction = withMappedPayloadMeta(2, 'metaValue');
const mappedPayloadMetaExpected = {
type: 'WITH_MAPPED_PAYLOAD_META',
payload: 2,
meta: 'metaValue',
};
const $action = [
typeOnlyAction,
payloadAction,
payloadMetaAction,
mappedPayloadAction,
mappedPayloadMetaAction,
];
/** TESTS */
// @dts-jest:group should work with single action-creator arg
{
// @dts-jest:pass:snap
isActionOf(withTypeOnly)(typeOnlyAction); // => true
// @dts-jest:pass:snap
isActionOf(withTypeOnly, typeOnlyAction); // => true
// @dts-jest:pass:snap
isActionOf(withTypeOnly)(payloadAction); // => false
// @dts-jest:pass:snap
isActionOf(withTypeOnly, payloadAction); // => false
// @dts-jest:pass:snap
isActionOf([withTypeOnly])(typeOnlyAction); // => true
// @dts-jest:pass:snap
isActionOf([withTypeOnly], typeOnlyAction); // => true
// @dts-jest:pass:snap
isActionOf([withTypeOnly])(payloadAction); // => false
// @dts-jest:pass:snap
isActionOf([withTypeOnly], payloadAction); // => false
}
// @dts-jest:group should work with multiple action-creator args
{
// @dts-jest:pass:snap
isActionOf([withTypeOnly, withPayload])(typeOnlyAction); // => true
// @dts-jest:pass:snap
isActionOf([withTypeOnly, withPayload], typeOnlyAction); // => true
// @dts-jest:pass:snap
isActionOf([withTypeOnly, withPayload])(payloadAction); // => true
// @dts-jest:pass:snap
isActionOf([withTypeOnly, withPayload], payloadAction); // => true
// @dts-jest:pass:snap
isActionOf([withTypeOnly, withPayload])(mappedPayloadAction); // => false
// @dts-jest:pass:snap
isActionOf([withTypeOnly, withPayload], mappedPayloadAction); // => false
}
// @dts-jest:group should correctly assert for an array with 1 arg
{
const actual = $action.filter(isActionOf([withTypeOnly]));
// @dts-jest:pass:snap
actual; // => [typeOnlyExpected]
}
// @dts-jest:group should correctly assert for an array with 2 args
{
const actual = $action.filter(isActionOf([withTypeOnly, withPayload]));
// @dts-jest:pass:snap
actual; // => [typeOnlyExpected, payloadExpected]
}
// @dts-jest:group should correctly assert for an array with 3 args
{
const actual = $action.filter(
isActionOf([withTypeOnly, withPayload, withPayloadMeta])
);
// @dts-jest:pass:snap
actual; // => [typeOnlyExpected,payloadExpected,payloadMetaExpected]
}
// @dts-jest:group should correctly assert for an array with 4 args
{
const actual = $action.filter(
isActionOf([withTypeOnly, withPayload, withPayloadMeta, withMappedPayload])
);
// @dts-jest:pass:snap
actual; // => [typeOnlyExpected,payloadExpected,payloadMetaExpected,mappedPayloadExpected]
}
// @dts-jest:group should correctly assert for an array with 5 args
{
const actual = $action.filter(
isActionOf([
withTypeOnly,
withPayload,
withPayloadMeta,
withMappedPayload,
withMappedPayloadMeta,
])
);
// @dts-jest:pass:snap
actual; // => [typeOnlyExpected,payloadExpected,payloadMetaExpected,mappedPayloadExpected,mappedPayloadMetaExpected]
}
// @dts-jest:group should correctly assert type with "any" action
{
const action: any = withPayload(1234);
if (isActionOf([withPayload, withPayloadMeta], action)) {
// @dts-jest:pass:snap
action; // => {"payload": 1234, "type": "WITH_PAYLOAD"}
}
if (isActionOf([withPayload, withPayloadMeta])(action)) {
// @dts-jest:pass:snap
action; // => {"payload": 1234, "type": "WITH_PAYLOAD"}
}
}