|
1 |
| -import { describe, expect, it, vi } from "vitest"; |
| 1 | +import { describe, expect, it } from "vitest"; |
2 | 2 |
|
| 3 | +import { packageData } from "../data/packageData.js"; |
3 | 4 | import { readDescription } from "./readDescription.js";
|
4 | 5 |
|
5 |
| -const mockPackageDataDescription = vi.fn<() => string>(); |
6 |
| - |
7 |
| -vi.mock("../data/packageData.js", () => ({ |
8 |
| - packageData: { |
9 |
| - get description() { |
10 |
| - return mockPackageDataDescription(); |
11 |
| - }, |
12 |
| - }, |
13 |
| -})); |
14 |
| - |
15 | 6 | describe(readDescription, () => {
|
16 | 7 | it("returns undefined when the there is no package.json description", async () => {
|
17 | 8 | const description = await readDescription(
|
18 | 9 | () => Promise.resolve({}),
|
19 | 10 | () => Promise.resolve(""),
|
| 11 | + () => Promise.resolve("other-repository"), |
20 | 12 | );
|
21 | 13 |
|
22 | 14 | expect(description).toBeUndefined();
|
23 |
| - expect(mockPackageDataDescription).not.toHaveBeenCalled(); |
24 | 15 | });
|
25 | 16 |
|
26 |
| - it("returns undefined when the description matches the current package.json description", async () => { |
| 17 | + it("returns the README.md description when it matches the current package.json description", async () => { |
27 | 18 | const existing = "Same description.";
|
28 | 19 |
|
29 |
| - mockPackageDataDescription.mockReturnValueOnce(existing); |
30 |
| - |
31 | 20 | const description = await readDescription(
|
32 | 21 | () => Promise.resolve({ description: existing }),
|
33 | 22 | () => Promise.resolve(""),
|
| 23 | + () => Promise.resolve("other-repository"), |
34 | 24 | );
|
35 | 25 |
|
36 |
| - expect(description).toBeUndefined(); |
| 26 | + expect(description).toBe(existing); |
37 | 27 | });
|
38 | 28 |
|
39 |
| - it("returns the updated description when neither description nor name match the current package.json", async () => { |
| 29 | + it("returns the updated package.json description when neither description nor name match the current package.json", async () => { |
40 | 30 | const updated = "Updated description.";
|
41 | 31 |
|
42 |
| - mockPackageDataDescription.mockReturnValueOnce("Existing description"); |
43 |
| - |
44 | 32 | const description = await readDescription(
|
45 | 33 | () => Promise.resolve({ description: updated }),
|
46 | 34 | () => Promise.resolve(""),
|
| 35 | + () => Promise.resolve("other-repository"), |
47 | 36 | );
|
48 | 37 |
|
49 | 38 | expect(description).toBe(updated);
|
50 | 39 | });
|
51 | 40 |
|
52 |
| - it("uses the README.md HTML description when it matches what's inferred from package.json plus HTML tags", async () => { |
| 41 | + it("returns the existing description when they are equal to crate-typescript-app's and the repository is create-typescript-app", async () => { |
| 42 | + const description = await readDescription( |
| 43 | + () => Promise.resolve({ description: packageData.description }), |
| 44 | + () => Promise.resolve(`<p align="center">${packageData.description}</p>`), |
| 45 | + () => Promise.resolve("create-typescript-app"), |
| 46 | + ); |
| 47 | + |
| 48 | + expect(description).toBe(packageData.description); |
| 49 | + }); |
| 50 | + |
| 51 | + it("returns undefined when the descriptions are create-typescript-app's and the repository is not", async () => { |
| 52 | + const description = await readDescription( |
| 53 | + () => Promise.resolve({ description: packageData.description }), |
| 54 | + () => Promise.resolve(`<p align="center">${packageData.description}</p>`), |
| 55 | + () => Promise.resolve("other-repository"), |
| 56 | + ); |
| 57 | + |
| 58 | + expect(description).toBeUndefined(); |
| 59 | + }); |
| 60 | + |
| 61 | + it("uses a README.md HTML description when it matches plain text from package.json plus HTML tags", async () => { |
53 | 62 | const plaintext = "Updated description.";
|
54 | 63 | const encoded = "Updated <code>description</code>.";
|
55 | 64 |
|
56 |
| - mockPackageDataDescription.mockReturnValueOnce("Existing description"); |
57 |
| - |
58 | 65 | const description = await readDescription(
|
59 | 66 | () => Promise.resolve({ description: plaintext }),
|
60 | 67 | () => Promise.resolve(`<p align="center">${encoded}</p>`),
|
| 68 | + () => Promise.resolve("other-repository"), |
61 | 69 | );
|
62 | 70 |
|
63 | 71 | expect(description).toBe(encoded);
|
64 | 72 | });
|
65 | 73 |
|
66 |
| - it("uses the package.json description when the README.md HTML description doesn't match what's inferred from package.json plus HTML tags", async () => { |
| 74 | + it("uses a README.md HTML description when it matches markdown from package.json plus HTML tags", async () => { |
| 75 | + const markdown = "Before `inner` after."; |
| 76 | + const html = `Before <a href="https://create.bingo"><code>inner</code></a> after.`; |
| 77 | + |
| 78 | + const description = await readDescription( |
| 79 | + () => Promise.resolve({ description: markdown }), |
| 80 | + () => Promise.resolve(`<p align="center">${html}</p>`), |
| 81 | + () => Promise.resolve("other-repository"), |
| 82 | + ); |
| 83 | + |
| 84 | + expect(description).toBe(html); |
| 85 | + }); |
| 86 | + |
| 87 | + it("uses a plain text package.json description when the README.md HTML description doesn't match what's inferred from package.json plus HTML tags", async () => { |
67 | 88 | const plaintext = "Updated description.";
|
68 | 89 | const encoded = "Incorrect <code>description</code>.";
|
69 | 90 |
|
70 |
| - mockPackageDataDescription.mockReturnValueOnce("Existing description"); |
71 |
| - |
72 | 91 | const description = await readDescription(
|
73 | 92 | () => Promise.resolve({ description: plaintext }),
|
74 | 93 | () => Promise.resolve(`<p align="center">${encoded}</p>`),
|
| 94 | + () => Promise.resolve("other-repository"), |
75 | 95 | );
|
76 | 96 |
|
77 | 97 | expect(description).toBe(plaintext);
|
78 | 98 | });
|
| 99 | + |
| 100 | + it("uses a markdown package.json description parsed to HTML when the README.md does not have a description and the package.json description is markdown", async () => { |
| 101 | + const inPackageJson = "Updated _description_."; |
| 102 | + const inReadme = "Incorrect <code>description</code>."; |
| 103 | + |
| 104 | + const description = await readDescription( |
| 105 | + () => Promise.resolve({ description: inPackageJson }), |
| 106 | + () => Promise.resolve(`<p align="center">${inReadme}</p>`), |
| 107 | + () => Promise.resolve("other-repository"), |
| 108 | + ); |
| 109 | + |
| 110 | + expect(description).toBe("Updated <em>description</em>."); |
| 111 | + }); |
79 | 112 | });
|
0 commit comments