-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathunit.ts
204 lines (177 loc) · 6 KB
/
unit.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
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
import { Step } from "@shanzhai/interfaces";
import { htmlSourceStore } from "@shanzhai/html-source-store";
import { parsedPugStore } from "@shanzhai/parsed-pug-store";
import { RenderPugStep } from "@shanzhai/render-pug-step";
import { MergeObjectInput } from "@shanzhai/merge-object-input";
import { pugLocalStore } from "@shanzhai/pug-local-store";
import { DeleteFromKeyedStoreStep } from "@shanzhai/delete-from-keyed-store-step";
import { KeyedStoreGetInput } from "@shanzhai/keyed-store-get-input";
import { KeyedStoreSetOutput } from "@shanzhai/keyed-store-set-output";
import { KeyedStoreGetAllInput } from "@shanzhai/keyed-store-get-all-input";
import readPugFilesPlugin = require(".");
describe(`render-pug-plugin`, () => {
it(`uses the correct keyed store`, () => {
expect(readPugFilesPlugin.triggers.renderPug.keyedStore).toBe(
parsedPugStore
);
});
it(`advertises the stores it will write to`, () => {
expect(
expect(readPugFilesPlugin.triggers.renderPug.writesToStores).toEqual(
jasmine.arrayWithExactContents([htmlSourceStore])
)
);
});
it(`refreshes all when the locals change`, () => {
expect(
readPugFilesPlugin.triggers.renderPug.refreshAllWhenStoresChange
).toEqual([pugLocalStore]);
});
describe(`when parsed Pug without an extension is removed`, () => {
let step: Step;
beforeAll(() => {
step = readPugFilesPlugin.triggers.renderPug.down(`Test Key`);
});
it(`deletes the rendered Pug from the store`, () => {
expect(step).toEqual(
new DeleteFromKeyedStoreStep(htmlSourceStore, `Test Key`)
);
});
});
describe(`when parsed Pug without an extension is added`, () => {
let step: Step;
beforeAll(() => {
step = readPugFilesPlugin.triggers.renderPug.up(`Test Key`);
});
it(`renders the Pug`, () => {
expect(step).toEqual(
new RenderPugStep(
`Render Pug "Test Key" as "Test Key"`,
new KeyedStoreGetInput(parsedPugStore, `Test Key`),
new MergeObjectInput(new KeyedStoreGetAllInput(pugLocalStore)),
new KeyedStoreSetOutput(htmlSourceStore, `Test Key`)
)
);
});
});
describe(`when parsed Pug with an unexpected extension is removed`, () => {
let step: Step;
beforeAll(() => {
step = readPugFilesPlugin.triggers.renderPug.down(
`test.pug.key.with.an.unexpected.extension`
);
});
it(`deletes the rendered Pug from the store`, () => {
expect(step).toEqual(
new DeleteFromKeyedStoreStep(
htmlSourceStore,
`test.pug.key.with.an.unexpected.extension`
)
);
});
});
describe(`when parsed Pug with an unexpected extension is added`, () => {
let step: Step;
beforeAll(() => {
step = readPugFilesPlugin.triggers.renderPug.up(
`test.pug.key.with.an.unexpected.extension`
);
});
it(`renders the Pug`, () => {
expect(step).toEqual(
new RenderPugStep(
`Render Pug "test.pug.key.with.an.unexpected.extension" as "test.pug.key.with.an.unexpected.extension"`,
new KeyedStoreGetInput(
parsedPugStore,
`test.pug.key.with.an.unexpected.extension`
),
new MergeObjectInput(new KeyedStoreGetAllInput(pugLocalStore)),
new KeyedStoreSetOutput(
htmlSourceStore,
`test.pug.key.with.an.unexpected.extension`
)
)
);
});
});
describe(`when parsed Pug with the expected extension is removed`, () => {
let step: Step;
beforeAll(() => {
step = readPugFilesPlugin.triggers.renderPug.down(
`test.key.with.an.expected.extension.pug`
);
});
it(`deletes the rendered Pug from the store`, () => {
expect(step).toEqual(
new DeleteFromKeyedStoreStep(
htmlSourceStore,
`test.key.with.an.expected.extension.html`
)
);
});
});
describe(`when parsed Pug with the expected extension is added`, () => {
let step: Step;
beforeAll(() => {
step = readPugFilesPlugin.triggers.renderPug.up(
`test.key.with.an.expected.extension.pug`
);
});
it(`renders the Pug`, () => {
expect(step).toEqual(
new RenderPugStep(
`Render Pug "test.key.with.an.expected.extension.pug" as "test.key.with.an.expected.extension.html"`,
new KeyedStoreGetInput(
parsedPugStore,
`test.key.with.an.expected.extension.pug`
),
new MergeObjectInput(new KeyedStoreGetAllInput(pugLocalStore)),
new KeyedStoreSetOutput(
htmlSourceStore,
`test.key.with.an.expected.extension.html`
)
)
);
});
});
describe(`when parsed Pug with a possibly confused extension is removed`, () => {
let step: Step;
beforeAll(() => {
step = readPugFilesPlugin.triggers.renderPug.down(
`test.key.with.a.possiblyconfusedextensionpug`
);
});
it(`deletes the rendered Pug from the store`, () => {
expect(step).toEqual(
new DeleteFromKeyedStoreStep(
htmlSourceStore,
`test.key.with.a.possiblyconfusedextensionpug`
)
);
});
});
describe(`when parsed Pug with a possibly confused extension is added`, () => {
let step: Step;
beforeAll(() => {
step = readPugFilesPlugin.triggers.renderPug.up(
`test.key.with.a.possiblyconfusedextensionpug`
);
});
it(`renders the Pug`, () => {
expect(step).toEqual(
new RenderPugStep(
`Render Pug "test.key.with.a.possiblyconfusedextensionpug" as "test.key.with.a.possiblyconfusedextensionpug"`,
new KeyedStoreGetInput(
parsedPugStore,
`test.key.with.a.possiblyconfusedextensionpug`
),
new MergeObjectInput(new KeyedStoreGetAllInput(pugLocalStore)),
new KeyedStoreSetOutput(
htmlSourceStore,
`test.key.with.a.possiblyconfusedextensionpug`
)
)
);
});
});
});