-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathaction-docs-action.test.ts
245 lines (216 loc) · 7.4 KB
/
action-docs-action.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
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
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
import { generateActionMarkdownDocs, Options } from "../src";
import { readFileSync, writeFileSync, copyFileSync, unlink } from "fs";
import * as path from "path";
const fixtureDir = path.join("__tests__", "fixtures", "action");
// By default an 'action.yml' is expected at the runtime location. Therefore we copy one during the test.
beforeAll(() => {
copyFileSync(path.join(fixtureDir, "action.yml"), "action.yml");
});
afterAll(() => {
return unlink("action.yml", (err) => {
if (err) throw err;
});
});
describe("Test output", () => {
test("With defaults.", async () => {
const markdown = await generateActionMarkdownDocs();
const expected = <string>(
readFileSync(path.join(fixtureDir, "default.output"), "utf-8")
);
expect(markdown).toEqual(expected);
});
test("With name header included.", async () => {
const markdown = await generateActionMarkdownDocs({
includeNameHeader: true,
});
const expected = <string>(
readFileSync(path.join(fixtureDir, "default-with-header.output"), "utf-8")
);
expect(markdown).toEqual(expected);
});
test("A minimal action definition.", async () => {
const markdown = await generateActionMarkdownDocs({
sourceFile: path.join(fixtureDir, "minimal_action.yml"),
});
const expected = <string>(
readFileSync(path.join(fixtureDir, "minimal_action.output"), "utf-8")
);
expect(markdown).toEqual(expected);
});
test("All fields action definition.", async () => {
const markdown = await generateActionMarkdownDocs({
sourceFile: path.join(fixtureDir, "all_fields_action.yml"),
});
const expected = <string>(
readFileSync(path.join(fixtureDir, "all_fields_action.output"), "utf-8")
);
expect(markdown).toEqual(expected);
});
});
describe("Test update readme ", () => {
test("With defaults.", async () => {
await testReadme(
{
sourceFile: "action.yml", // Default value
originalReadme: path.join(fixtureDir, "default_readme.input"),
fixtureReadme: path.join(fixtureDir, "default_readme.output"),
},
{
includeNameHeader: true,
},
);
});
test("Empty readme (all fields)", async () => {
await testReadme(
{
sourceFile: path.join(fixtureDir, "all_fields_action.yml"),
originalReadme: path.join(fixtureDir, "all_fields_readme.input"),
fixtureReadme: path.join(fixtureDir, "all_fields_readme.output"),
},
{
includeNameHeader: true,
},
);
});
test("Empty readme (all fields) with header", async () => {
await testReadme(
{
sourceFile: path.join(fixtureDir, "all_fields_action.yml"),
originalReadme: path.join(fixtureDir, "all_fields_readme.input"),
fixtureReadme: path.join(fixtureDir, "all_fields_readme_header.output"),
},
{
includeNameHeader: true,
},
false,
true,
);
});
test("All fields one annotation", async () => {
await testReadme({
sourceFile: path.join(fixtureDir, "all_fields_action.yml"),
originalReadme: path.join(fixtureDir, "all_fields_one_annotation.input"),
fixtureReadme: path.join(fixtureDir, "all_fields_one_annotation.output"),
});
});
test("Filled readme (all fields)", async () => {
await testReadme({
sourceFile: path.join(fixtureDir, "all_fields_action.yml"),
originalReadme: path.join(fixtureDir, "all_fields_readme_filled.input"),
fixtureReadme: path.join(fixtureDir, "all_fields_readme_filled.output"),
});
});
test("Filled readme (all fields) with header", async () => {
await testReadme(
{
sourceFile: path.join(fixtureDir, "all_fields_action.yml"),
originalReadme: path.join(fixtureDir, "all_fields_readme.input"),
fixtureReadme: path.join(fixtureDir, "all_fields_readme_header.output"),
},
{
includeNameHeader: true,
},
false,
true,
);
});
test("Readme (all fields) with CRLF line breaks", async () => {
await testReadme(
{
sourceFile: path.join(fixtureDir, "all_fields_action.yml.crlf"),
originalReadme: path.join(fixtureDir, "all_fields_readme.input.crlf"),
fixtureReadme: path.join(fixtureDir, "all_fields_readme.output.crlf"),
},
{ lineBreaks: "CRLF" },
);
});
test("Readme (inputs) for action-docs-action", async () => {
await testReadme({
sourceFile: path.join(fixtureDir, "action_docs_action_action.yml"),
originalReadme: path.join(fixtureDir, "action_docs_action_readme.input"),
fixtureReadme: path.join(fixtureDir, "action_docs_action_readme.output"),
});
});
test("Readme for two action.yml-s", async () => {
await testReadme(
{
sourceFile: path.join(fixtureDir, "action_docs_action_action.yml"),
originalReadme: path.join(fixtureDir, "two_actions_readme.input"),
fixtureReadme: path.join(fixtureDir, "two_actions_readme.output"),
},
{},
false,
);
await testReadme({
sourceFile: path.join(fixtureDir, "all_fields_action.yml"),
originalReadme: path.join(fixtureDir, "two_actions_readme.input"),
fixtureReadme: path.join(fixtureDir, "two_actions_readme.output"),
});
});
test("Readme for deprecated inputs", async () => {
await testReadme({
sourceFile: path.join(fixtureDir, "deprecated_input_action.yml"),
originalReadme: path.join(fixtureDir, "deprecated_input_action.input"),
fixtureReadme: path.join(fixtureDir, "deprecated_input_action.output"),
});
});
});
describe("Test usage format", () => {
test("Multi-line descriptions.", async () => {
await testReadme({
sourceFile: path.join(fixtureDir, "action.yml"),
originalReadme: path.join(fixtureDir, "action_usage_readme.input"),
fixtureReadme: path.join(fixtureDir, "action_usage_readme.output"),
});
});
test("With and without defaults.", async () => {
await testReadme({
sourceFile: path.join(fixtureDir, "all_fields_action.yml"),
originalReadme: path.join(fixtureDir, "all_fields_usage_readme.input"),
fixtureReadme: path.join(fixtureDir, "all_fields_usage_readme.output"),
});
});
});
describe("Backwards compatibility", () => {
test("Deprecated action option still works correctly", async () => {
await testReadme(
{
sourceFile: path.join(fixtureDir, "all_fields_action.yml"),
originalReadme: path.join(fixtureDir, "action_deprecated.input"),
fixtureReadme: path.join(fixtureDir, "action_deprecated.output"),
},
{
includeNameHeader: true,
},
);
});
});
interface ReadmeTestFixtures {
sourceFile: string;
originalReadme: string;
fixtureReadme: string;
}
async function testReadme(
files: ReadmeTestFixtures,
overwriteOptions?: Options,
doExpect: boolean = true,
includeNameHeader: boolean = false,
) {
const expected = <string>readFileSync(files.fixtureReadme, "utf-8");
const original = <string>readFileSync(files.originalReadme, "utf-8");
try {
await generateActionMarkdownDocs({
sourceFile: files.sourceFile,
updateReadme: true,
includeNameHeader: includeNameHeader,
readmeFile: files.originalReadme,
...overwriteOptions,
});
const updated = <string>readFileSync(files.originalReadme, "utf-8");
if (doExpect) {
expect(updated).toEqual(expected);
}
} finally {
writeFileSync(files.originalReadme, original);
}
}