-
-
Notifications
You must be signed in to change notification settings - Fork 132
Expand file tree
/
Copy pathReactNativeGenerator.test.js
More file actions
65 lines (57 loc) · 1.75 KB
/
ReactNativeGenerator.test.js
File metadata and controls
65 lines (57 loc) · 1.75 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
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 ReactNativeGenerator from "./ReactNativeGenerator.js";
const dirname = path.dirname(fileURLToPath(import.meta.url));
test("Generate a React app", () => {
const generator = new ReactNativeGenerator({
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.js",
"/config/entrypoint.js",
"/actions/abc/create.js",
"/actions/abc/delete.js",
"/actions/abc/list.js",
"/actions/abc/show.js",
"/actions/abc/update.js",
"/components/abc/Create.js",
"/components/abc/Form.js",
"/components/abc/index.js",
"/components/abc/List.js",
"/components/abc/Show.js",
"/components/abc/Update.js",
"/reducers/abc/create.js",
"/reducers/abc/delete.js",
"/reducers/abc/index.js",
"/reducers/abc/list.js",
"/reducers/abc/show.js",
"/reducers/abc/update.js",
].forEach((file) => expect(fs.existsSync(tmpobj.name + file)).toBe(true));
tmpobj.removeCallback();
});