-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathintegration-tests.test.js
276 lines (216 loc) · 10.8 KB
/
integration-tests.test.js
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
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
const path = require("path");
const fsExtra = require("fs-extra");
const childProcess = require("child_process");
const markdownNotesTree = require("./src/index");
describe("markdown-notes-tree", () => {
test("it should have correct basic functionality", () => {
const resultFolderPath = getTestFolderPath("basics", "result");
const expectedLogs = [
"Processing files in order to build notes tree",
"Writing notes tree to main README file",
"Writing trees for directories",
`Writing to ${path.join(resultFolderPath, "sub1", "README.md")}`,
`Writing to ${path.join(resultFolderPath, "sub1", "sub1a", "README.md")}`,
`Writing to ${path.join(resultFolderPath, "sub2", "README.md")}`,
`Writing to ${path.join(resultFolderPath, "sub2", "sub2a", "README.md")}`,
`Writing to ${path.join(resultFolderPath, "sub2", "sub2b", "README.md")}`,
"Finished execution"
];
executeTestScenario("basics", [], expectedLogs);
});
test("it should allow using filename as fallback for missing title", () => {
executeTestScenario("allow-missing-title", ["--allowMissingTitle"]);
});
test("it should preserve content after the tree in the main README", () => {
executeTestScenario("content-after-main-tree", []);
});
test("it should allow content before the title of a note", () => {
executeTestScenario("content-before-note-title", []);
});
test("it should ignore non-relevant files and folders", () => {
executeTestScenario("default-ignores", []);
});
test("it should throw an error if a Markdown file does not have a title", () => {
const folderName = "error-no-title";
const resultFolderPath = getTestFolderPath(folderName, "result");
const invalidFilePath = path.join(resultFolderPath, "sub1", "file1a.md");
expect(() => executeTestScenario(folderName, [])).toThrow(
`No title found for Markdown file ${invalidFilePath}`
);
});
test("it should throw an error if a Markdown file has a link inside the title", () => {
const folderName = "error-link-in-title";
const resultFolderPath = getTestFolderPath(folderName, "result");
const invalidFilePath = path.join(resultFolderPath, "sub1", "file1a.md");
expect(() => executeTestScenario(folderName, [])).toThrow(
`Cannot get title from file ${invalidFilePath}: Title cannot contain Markdown links since this would mess up the links in the tree (consider using HTML as a workaround)`
);
});
test("it should throw an error if an existing directory README has an incorrect structure", () => {
const folderName = "error-invalid-file-structure-directory-readme";
const resultFolderPath = getTestFolderPath(folderName, "result");
const invalidFilePath = path.join(resultFolderPath, "sub1", "README.md");
expect(() => executeTestScenario(folderName, [])).toThrow(
`Cannot get description from file ${invalidFilePath}: Invalid file structure: only one description marker found or end marker found before start marker`
);
});
test("it should throw an error if the main README has an incorrect file structure", () => {
const folderName = "error-invalid-file-structure-main-readme";
const resultFolderPath = getTestFolderPath(folderName, "result");
const invalidFilePath = path.join(resultFolderPath, "README.md");
expect(() => executeTestScenario(folderName, [])).toThrow(
`Cannot get new contents for file ${invalidFilePath}: Invalid file structure: tree end marker found before tree start marker`
);
});
test("it should properly order files by file name by default, including support for special characters", () => {
executeTestScenario("file-order-special-characters", []);
});
test("it should allow adding custom file ignores using a single glob expression", () => {
executeTestScenario("ignore-files", ["--ignore", "**/CONTRIBUTING.md"]);
});
test("it should allow adding custom file ignores using multiple glob expressions", () => {
executeTestScenario("ignore-files", [
"--ignore",
"CONTRIBUTING.md",
"--ignore",
"sub1/CONTRIBUTING.md"
]);
});
test("it should allow using a custom ignore to ignore an entire folder", () => {
executeTestScenario("ignore-folder", ["--ignore", "exclude-this-folder"]);
});
test("it should allow including all directories by default", () => {
executeTestScenario("include-all-directories-by-default", [
"--includeAllDirectoriesByDefault"
]);
});
test("it should allow including upward navigation links", () => {
executeTestScenario("include-upward-navigation", ["--includeUpwardNavigation"]);
});
test("it should allow including upward navigation links linking directly to README", () => {
executeTestScenario("include-upward-navigation-link-to-readme", [
"--includeUpwardNavigation",
"--linkToSubdirectoryReadme"
]);
});
test("it should allow linking directly to subdirectory README files", () => {
executeTestScenario("link-to-subdirectory-readme", ["--linkToSubdirectoryReadme"]);
});
test("it should allow not writing subdirectory trees", () => {
const expectedLogs = [
"Processing files in order to build notes tree",
"Writing notes tree to main README file",
"Finished execution"
];
executeTestScenario("no-subdirectory-trees", ["--noSubdirectoryTrees"], expectedLogs);
});
test("it should use note titles from YAML front matter if provided", () => {
executeTestScenario("note-title-front-matter", []);
});
test("it should allow rich text in note titles", () => {
executeTestScenario("note-title-rich-text", []);
});
test("it should allow putting notes before directories", () => {
executeTestScenario("notes-before-directories", ["--notesBeforeDirectories"]);
});
test("it should allow adjusting the number of spaces", () => {
executeTestScenario("number-spaces-two", ["--numberSpaces", "2"]);
});
test("it should allow ordering notes by title", () => {
executeTestScenario("order-notes-by-title", ["--orderNotesByTitle"]);
});
test("it should allow using a custom README filename", () => {
executeTestScenario("readme-filename", ["--readmeFilename", "README_FILENAME.md"]);
});
test("it should allow disabling logging", () => {
const expectedLogs = [];
executeTestScenario("basics", ["--silent"], expectedLogs);
});
test("it should include subdirectory descriptions if provided", () => {
executeTestScenario("subdirectory-description", []);
});
test("it should allow putting subdirectory descriptions on a new line", () => {
executeTestScenario("subdirectory-description-on-new-line", [
"--subdirectoryDescriptionOnNewLine"
]);
});
test("it should handle Markdown syntax in subdirectory names", () => {
executeTestScenario("subdirectory-name-markdown-syntax", [
"--includeAllDirectoriesByDefault"
]);
});
test("it should preserve content in directory README files before description markers", () => {
executeTestScenario("subdirectory-readme-extra-content", []);
});
test("it should use and preserve custom subdirectory titles if provided", () => {
executeTestScenario("subdirectory-title", []);
});
test("it should allow rich text in custom subdirectory titles", () => {
executeTestScenario("subdirectory-title-rich-text", []);
});
test("it should allow using tabs for indentation", () => {
executeTestScenario("use-tabs", ["--useTabs"]);
});
function executeTestScenario(folderName, args, expectedLogs = undefined) {
const inputFolderPath = getTestFolderPath(folderName, "input");
const expectedFolderPath = getTestFolderPath(folderName, "expected");
const resultFolderPath = getTestFolderPath(folderName, "result");
fsExtra.copySync(inputFolderPath, resultFolderPath, {
overwrite: false,
errorOnExist: true
});
const originalWorkingDirectory = process.cwd();
changeWorkingDirectoryTo(resultFolderPath);
try {
executeAndCheck(args, resultFolderPath, expectedFolderPath, expectedLogs);
// check that second run doesn't change anything
executeAndCheck(args, resultFolderPath, expectedFolderPath, expectedLogs);
} finally {
changeWorkingDirectoryTo(originalWorkingDirectory);
fsExtra.removeSync(resultFolderPath);
}
}
function getTestFolderPath(folderName, subfolderName) {
return path.join(__dirname, "test-data", folderName, subfolderName);
}
function changeWorkingDirectoryTo(absolutePath) {
process.chdir(path.relative(process.cwd(), absolutePath));
}
function executeAndCheck(args, resultFolderPath, expectedFolderPath, expectedLogs) {
const capturedLogs = [];
const logger = message => capturedLogs.push(message);
markdownNotesTree.execute(args, logger);
checkResult(resultFolderPath, expectedFolderPath);
if (expectedLogs) {
expect(capturedLogs).toEqual(expectedLogs);
}
}
function checkResult(resultFolderPath, expectedFolderPath) {
const resultData = getSingleLevelFolderDataForCompare(resultFolderPath);
const expectedData = getSingleLevelFolderDataForCompare(expectedFolderPath).map(data => ({
...data,
fullPath: expect.anything() // fullPath is only to make it clear for which file the test fails
}));
expect(resultData).toEqual(expectedData);
for (const dataEntry of resultData) {
if (dataEntry.isDirectory) {
const deeperResultFolderPath = path.join(resultFolderPath, dataEntry.name);
const deeperExpectedFolderPath = path.join(expectedFolderPath, dataEntry.name);
checkResult(deeperResultFolderPath, deeperExpectedFolderPath);
}
}
}
function getSingleLevelFolderDataForCompare(folderPath) {
const entries = fsExtra.readdirSync(folderPath, { withFileTypes: true });
return entries.map(entry => {
const name = entry.name;
const fullPath = path.join(folderPath, name);
const isDirectory = entry.isDirectory();
let contents;
if (!isDirectory && name.endsWith(".md")) {
contents = fsExtra.readFileSync(fullPath, { encoding: "utf-8" });
}
return { name, fullPath, isDirectory, contents };
});
}
});