This repository has been archived by the owner on Jun 5, 2022. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsnap-values.test.js
291 lines (224 loc) · 7.51 KB
/
snap-values.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
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
const test = require('ava');
const SnapValues = require('./snap-values.js');
const makeOptions = {
/**
* Derived from either (in order):
*
* - packagerConfig.name
* - packageJSON.productName
* - packageJSON.name
*
* This is the basis for the executable name used by electron-packager
* though it runs the name through a sanitiser for the platforms.
*/
appName: 'Nimble Notes v3!',
forgeConfig: {
packagerConfig: {
icon: './test/fixtures/icon'
}
},
packageJSON: {
version: '2.0.3',
description: 'Simple note taking',
license: 'MIT'
},
targetArch: 'x64',
targetPlatform: 'linux'
};
test('applicationName is derived from electron-forge appName', t => {
const values = new SnapValues({makeOptions, makerOptions: {}});
t.is(values.applicationName, 'Nimble Notes v3!');
});
test('applicationName is overridden', t => {
const makerOptions = {
applicationName: 'Nimble Notes!'
};
const values = new SnapValues({makeOptions, makerOptions});
t.is(values.applicationName, makerOptions.applicationName);
});
test('applicationName will be marked as invalid if over 40 characters', t => {
const makerOptions = {
applicationName: 'This is my really cool application DOWNLOAD NOW'
};
const values = new SnapValues({makeOptions, makerOptions});
t.throws(() => {
console.log(values.applicationName);
}, {message: `applicationName must be 40 characters or less: ${makerOptions.applicationName}`});
});
test('executableName derived from applicationName and auto-sanitised', t => {
const values = new SnapValues({makeOptions, makerOptions: {}});
t.is(values.executableName, 'nimble-notes-v3');
});
test('executableName can be overriden with make options', t => {
const makerOptions = {
executableName: 'nimblenote!'
};
const values = new SnapValues({makeOptions, makerOptions});
t.is(values.executableName, 'nimblenote');
});
test('packagedExecutableName is calculated from electron-packager', t => {
const values = new SnapValues({makeOptions, makerOptions: {}});
t.is(values.packagedExecutableName, 'Nimble Notes v3!');
});
test('version will be derived from package.json', t => {
const values = new SnapValues({makeOptions, makerOptions: {}});
t.is(values.version, '2.0.3');
});
test('summary will be derived from package.json', t => {
const values = new SnapValues({makeOptions, makerOptions: {}});
t.is(values.summary, 'Simple note taking');
});
test('summary can be overridden with maker config', t => {
const makerOptions = {
summary: 'Even simpler note taking'
};
const values = new SnapValues({makeOptions, makerOptions});
t.is(values.summary, makerOptions.summary);
});
test('summary will throw an error if longer than 78 characters', t => {
const makerOptions = {
summary: 'Even simpler note taking that keeps on giving and giving and making your life more productive than ever'
};
const values = new SnapValues({makeOptions, makerOptions});
t.throws(() => {
console.log(values.summary);
}, {message: 'summary must be 78 characters or less'});
});
test('description will be derived from package.json', t => {
const values = new SnapValues({makeOptions, makerOptions: {}});
t.is(values.description, 'Simple note taking');
});
test('description can be overridden', t => {
const makerOptions = {
description: 'Here we go again'
};
const values = new SnapValues({makeOptions, makerOptions});
t.is(values.description, makerOptions.description);
});
test('license is derived from package.json', t => {
const values = new SnapValues({makeOptions, makerOptions: {}});
t.is(values.license, 'MIT');
});
test('license can be overridden', t => {
const makerOptions = {
license: 'Proprietary'
};
const values = new SnapValues({makeOptions, makerOptions});
t.is(values.license, makerOptions.license);
});
test('icon is derived from forge config', t => {
const values = new SnapValues({makeOptions, makerOptions: {}});
t.is(values.icon, `${process.cwd()}/test/fixtures/icon.png`);
});
test('icon can be overridden', t => {
const makerOptions = {
icon: './test.png'
};
const values = new SnapValues({makeOptions, makerOptions});
t.is(values.icon, `${process.cwd()}/test.png`);
});
test('categories default to empty', t => {
const values = new SnapValues({makeOptions, makerOptions: {}});
t.deepEqual(values.categories, []);
});
test('categories can be set', t => {
const makerOptions = {
categories: ['Utility', 'Development']
};
const values = new SnapValues({makeOptions, makerOptions});
t.deepEqual(values.categories, makerOptions.categories);
});
test('confinement defaults to strict', t => {
const values = new SnapValues({makeOptions, makerOptions: {}});
t.is(values.confinement, 'strict');
});
test('confinement can be overridden', t => {
const makerOptions = {
confinement: 'devmode'
};
const values = new SnapValues({makeOptions, makerOptions});
t.is(values.confinement, makerOptions.confinement);
});
test('confinement must be valid value', t => {
const makerOptions = {
confinement: 'relaxed'
};
const values = new SnapValues({makeOptions, makerOptions});
t.throws(() => {
console.log(values.confinement);
}, {message: 'confinement must be either `strict`, `devmode` or `classic`'});
});
test('grade defaults to stable', t => {
const values = new SnapValues({makeOptions, makerOptions: {}});
t.is(values.grade, 'stable');
});
test('grade can be overridden', t => {
const makerOptions = {
grade: 'devel'
};
const values = new SnapValues({makeOptions, makerOptions});
t.is(values.grade, makerOptions.grade);
});
test('grade must be valid value', t => {
const makerOptions = {
grade: 'mediocre'
};
const values = new SnapValues({makeOptions, makerOptions});
t.throws(() => {
console.log(values.grade);
}, {message: 'grade must be either `stable` or `devel`'});
});
test('stagePackages has defaults', t => {
const values = new SnapValues({makeOptions, makerOptions: {}});
t.is(values.stagePackages, SnapValues.defaultStagePackages);
});
test('stagePackages can be replaced', t => {
const makerOptions = {
stagePackages: ['testPackage1', 'testPackage2']
};
const values = new SnapValues({makeOptions, makerOptions});
t.is(values.stagePackages, makerOptions.stagePackages);
});
test('stagePackages can be overridden and include defaults', t => {
const makerOptions = {
stagePackages: ['testPackage1', 'testPackage2', 'default']
};
const values = new SnapValues({makeOptions, makerOptions});
t.deepEqual(values.stagePackages.sort(),
[...SnapValues.defaultStagePackages,
...makerOptions.stagePackages.filter(item => item !== 'default')].sort()
);
});
test('plugs have defaults', t => {
const values = new SnapValues({makeOptions, makerOptions: {}});
t.true(Array.isArray(SnapValues.defaultPlugs));
t.is(values.plugs, SnapValues.defaultPlugs);
});
test('plugs can be replaced', t => {
const makerOptions = {
plugs: ['x11', 'home']
};
const values = new SnapValues({makeOptions, makerOptions});
t.is(values.plugs, makerOptions.plugs);
});
test('plugs can be overridden and include defaults', t => {
const makerOptions = {
plugs: ['desktop-legacy', 'media-hub', 'default']
};
const values = new SnapValues({makeOptions, makerOptions});
t.deepEqual(values.plugs.sort(),
[...SnapValues.defaultPlugs,
...makerOptions.plugs.filter(item => item !== 'default')].sort()
);
});
test('layout values can be added', t => {
const makerOptions = {
layout: {
'/usr/lib/x86_64-linux-gnu/imlib2': {
bind: '$SNAP/usr/lib/x86_64-linux-gnu/imlib2'
}
}
};
const values = new SnapValues({makeOptions, makerOptions});
t.like(values.layout, makerOptions.layout);
});