-
-
Notifications
You must be signed in to change notification settings - Fork 133
Expand file tree
/
Copy pathReactGenerator.test.js
More file actions
80 lines (69 loc) · 2.03 KB
/
ReactGenerator.test.js
File metadata and controls
80 lines (69 loc) · 2.03 KB
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
import { Api, Resource, Field } from "@api-platform/api-doc-parser";
import path from "path";
import { fileURLToPath } from "url";
import fs from "fs";
import tmp from "tmp";
import ReactGenerator from "./ReactGenerator.js";
const dirname = path.dirname(fileURLToPath(import.meta.url));
test("Generate a React app", () => {
const generator = new ReactGenerator({
hydraPrefix: "",
templateDirectory: `${dirname}/../../templates`,
});
const tmpobj = tmp.dirSync({ unsafeCleanup: true });
const fields = [
new Field("bar", {
id: "http://schema.org/url",
range: "http://www.w3.org/2001/XMLSchema#string",
reference: null,
required: true,
description: "An URL",
}),
];
const resource = new Resource("abc", "http://example.com/foos", {
id: "abc",
title: "abc",
readableFields: fields,
writableFields: fields,
});
const api = new Api("http://example.com", {
entrypoint: "http://example.com:8080",
title: "My API",
resources: [resource],
});
generator.generate(api, resource, tmpobj.name);
[
"/utils/dataAccess.ts",
"/utils/types.ts",
"/config/entrypoint.ts",
"/interfaces/Abc.ts",
"/interfaces/Collection.ts",
"/components/abc/index.ts",
"/components/abc/Create.tsx",
"/components/abc/Update.tsx",
"/components/abc/type.ts",
"/components/Field.tsx",
"/components/Links.tsx",
"/components/Pagination.tsx",
"/routes/abc.tsx",
"/hooks/create.ts",
"/hooks/delete.ts",
"/hooks/fetch.ts",
"/hooks/index.ts",
"/hooks/list.ts",
"/hooks/mercure.ts",
"/hooks/retrieve.ts",
"/hooks/show.ts",
"/hooks/update.ts",
].forEach((file) => expect(fs.existsSync(tmpobj.name + file)).toBe(true));
[
"/components/abc/Form.tsx",
"/components/abc/List.tsx",
"/components/abc/Show.tsx",
"/interfaces/Abc.ts",
].forEach((file) => {
expect(fs.existsSync(tmpobj.name + file)).toBe(true);
expect(fs.readFileSync(tmpobj.name + file, "utf8")).toMatch(/bar/);
});
tmpobj.removeCallback();
});