-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathindex.ts
274 lines (244 loc) · 7.76 KB
/
index.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
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
/* eslint-disable @typescript-eslint/no-var-requires */
import { isArray, isObject } from "alcalzone-shared/typeguards";
import { AssertionError, expect } from "chai";
import * as fs from "fs";
import * as path from "path";
/**
* Tests if the adapter files are valid.
* This is meant to be executed in a mocha context.
*/
export function validatePackageFiles(adapterDir: string): void {
const packageJsonPath = path.join(adapterDir, "package.json");
const ioPackageJsonPath = path.join(adapterDir, "io-package.json");
// This allows us to skip tests that require valid JSON files
const invalidFiles: Record<string, boolean> = {
"package.json": false,
"io-package.json": false,
};
function skipIfInvalid(
this: Mocha.Context,
...filenames: string[]
): void | never {
if (filenames.some((f) => invalidFiles[f])) return this.skip();
}
function markAsInvalid(this: Mocha.Context, filename: string): void {
if (
this.currentTest!.state === "failed" &&
invalidFiles[filename] === false
) {
invalidFiles[filename] = true;
console.error(
`Skipping subsequent tests including "${filename}" because they require valid JSON files!`,
);
}
}
/** Ensures that a given property exists on the target object */
function ensurePropertyExists(propertyPath: string, targetObj: any): void {
const propertyParts = propertyPath.split(".");
it(`The property "${propertyPath}" exists`, () => {
let prev = targetObj;
for (const part of propertyParts) {
expect(prev[part]).to.not.be.undefined;
prev = prev[part];
}
});
}
describe(`Validate the package files`, () => {
describe(`Ensure they are readable`, () => {
for (const filename of ["package.json", "io-package.json"]) {
const packagePath = path.join(adapterDir, filename);
describe(`${filename}`, () => {
afterEach(function () {
markAsInvalid.call(this, filename);
});
beforeEach(function () {
skipIfInvalid.call(this, filename);
});
it("exists", () => {
expect(
fs.existsSync(packagePath),
`${filename} is missing in the adapter dir. Please create it!`,
).to.be.true;
});
it("contains valid JSON", () => {
expect(() => {
JSON.parse(fs.readFileSync(packagePath, "utf8"));
}, `${filename} contains invalid JSON!`).not.to.throw();
});
it("is an object", () => {
expect(
require(packagePath),
`${filename} must contain an object!`,
).to.be.an("object");
});
});
}
});
describe(`Check contents of package.json`, () => {
beforeEach(function () {
skipIfInvalid.call(this, "package.json");
});
const packageContent = require(packageJsonPath);
const requiredProperties = [
"name",
"version",
"description",
"author",
"license",
"main",
"repository",
"repository.type",
];
requiredProperties.forEach((prop) =>
ensurePropertyExists(prop, packageContent),
);
it("The package name is correct", () => {
let name: string = packageContent.name;
expect(name).to.match(
/^iobroker\./,
`The npm package name must start with lowercase "iobroker."!`,
);
name = name.replace(/^iobroker\./, "");
expect(name).to.match(
/[a-z0-9_\-]+/,
`The adapter name must only contain lowercase letters, numbers, "-" and "_"!`,
);
expect(name).to.match(
/^[a-z]/,
`The adapter name must start with a letter!`,
);
expect(name).to.match(
/[a-z0-9]$/,
`The adapter name must end with a letter or number!`,
);
});
it(`The repository type is "git"`, () => {
expect(packageContent.repository.type).to.equal("git");
});
it("npm is not listed as a dependency", () => {
for (const depType of [
"dependencies",
"devDependencies",
"optionalDependencies",
"peerDependencies",
] as const) {
if (
isObject(packageContent[depType]) &&
"npm" in packageContent[depType]
) {
throw new AssertionError(
`npm must not be listed in ${depType}, found "${packageContent[depType].npm}"!`,
);
}
}
});
});
describe(`Check contents of io-package.json`, () => {
beforeEach(function () {
skipIfInvalid.call(this, "io-package.json");
});
const iopackContent = require(ioPackageJsonPath);
const requiredProperties = [
"common.name",
"common.titleLang",
"common.version",
"common.news",
"common.desc",
"common.icon",
"common.extIcon",
"common.license",
"common.type",
"common.authors",
"native",
];
requiredProperties.forEach((prop) =>
ensurePropertyExists(prop, iopackContent),
);
it(`The title does not contain "adapter" or "iobroker"`, () => {
if (!iopackContent.title) return;
expect(iopackContent.common.title).not.to.match(
/iobroker|adapter/i,
);
});
it(`titleLang is an object to support multiple languages`, () => {
expect(iopackContent.common.titleLang).to.be.an("object");
});
it(`titleLang does not contain "adapter" or "iobroker"`, () => {
for (const title of Object.values(
iopackContent.common.titleLang,
)) {
expect(title).not.to.match(/iobroker|adapter/i);
}
});
it(`The description is an object to support multiple languages`, () => {
expect(iopackContent.common.desc).to.be.an("object");
});
it(`common.authors is an array that is not empty`, () => {
const authors = iopackContent.common.authors;
expect(isArray(authors)).to.be.true;
expect(authors.length).to.be.at.least(1);
});
it(`common.news is an object that contains maximum 20 entries`, () => {
const news = iopackContent.common.news;
expect(isObject(news)).to.be.true;
expect(Object.keys(news).length).to.be.at.most(20);
});
// If the adapter has a configuration page, check that a supported admin UI is used
const hasNoConfigPage =
iopackContent.common.noConfig === true ||
iopackContent.common.noConfig === "true" ||
iopackContent.common.adminUI?.config === "none";
if (!hasNoConfigPage) {
it("The adapter uses Material UI or JSON Config for the admin UI", () => {
const hasSupportedUI =
!!iopackContent.common.materialize ||
iopackContent.common.adminUI?.config === "json" ||
iopackContent.common.adminUI?.config === "materialize";
expect(
hasSupportedUI,
"Unsupported Admin UI, must be materialize or json config!",
).to.be.true;
});
}
});
describe(`Compare contents of package.json and io-package.json`, () => {
beforeEach(function () {
skipIfInvalid.call(this, "package.json", "io-package.json");
});
const packageContent = require(packageJsonPath);
const iopackContent = require(ioPackageJsonPath);
it("The name matches", () => {
expect("iobroker." + iopackContent.common.name).to.equal(
packageContent.name,
);
});
it("The version matches", () => {
expect(iopackContent.common.version).to.equal(
packageContent.version,
);
});
it("The license matches", () => {
expect(iopackContent.common.license).to.equal(
packageContent.license,
);
});
});
});
// describe(`Check additional files`, () => {
// it("README.md exists", () => {
// expect(
// fs.existsSync(path.join(adapterDir, "README.md")),
// `README.md is missing in the adapter dir. Please create it!`,
// ).to.be.true;
// });
// it("LICENSE exists or is present in the README.md", () => {
// const licenseExists = fs.existsSync(path.join(adapterDir, "LICENSE"));
// if (licenseExists) return;
// const readmeContent = fs.readFileSync(path.join(adapterDir, "README.md"), "utf8");
// expect(readmeContent).to.match(
// /## LICENSE/i,
// `The license should be in a file "LICENSE" or be included in "README.md" as a 2nd level headline!`,
// );
// });
// });
}