forked from apache/cordova-lib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhelpers.js
214 lines (182 loc) · 6.55 KB
/
helpers.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
/**
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. The ASF licenses this file
to you under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing,
software distributed under the License is distributed on an
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
KIND, either express or implied. See the License for the
specific language governing permissions and limitations
under the License.
*/
const path = require('node:path');
const fs = require('node:fs');
const os = require('node:os');
const ConfigParser = require('cordova-common').ConfigParser;
const fixtureHelper = require('./fixture-helper');
// Just use Android everywhere; we're mocking out any calls to the `android` binary.
module.exports.testPlatform = 'android';
function getConfigPath (dir) {
// if path ends with 'config.xml', return it
if (dir.endsWith('config.xml')) {
return dir;
}
// otherwise, add 'config.xml' to the end of it
return path.join(dir, 'config.xml');
}
module.exports.tmpDir = function (suffix = 'test') {
const dir = path.join(os.tmpdir(), `cordova-lib-${suffix}-`);
return fs.realpathSync(fs.mkdtempSync(dir));
};
/**
* Provides access to various fixtures by name.
*
* @param {String} fixtureName name of fixture that should be accessed
* @returns {Object} with a `copyTo` method that asynchronously copies the
* fixture to the given target directory
*/
module.exports.getFixture = fixtureHelper(() => exports.tmpDir('fixtures'));
/**
* Sets the default timeout for the current suite.
*
* Restores the previous timeout after the suite has finished. The timeout
* applies to all `before*`, `after*` and `it` blocks within the suite.
*
* Must be called before defining any of the aforementioned blocks.
*
* @param {Number} timeout The desired default timeout in ms
*/
module.exports.setDefaultTimeout = timeout => {
const originalTimeout = jasmine.DEFAULT_TIMEOUT_INTERVAL;
// Ensure new default timeout applies to beforeAll blocks
beforeAll(() => {
jasmine.DEFAULT_TIMEOUT_INTERVAL = timeout;
});
// Refresh setting before every test, just to be safe
beforeEach(() => {
jasmine.DEFAULT_TIMEOUT_INTERVAL = timeout;
});
// Revert to original setting after the last afterAll
afterAll(() => {
jasmine.DEFAULT_TIMEOUT_INTERVAL = originalTimeout;
});
};
/**
* Returns an arbitrarily navigable stub with optional terminal properties.
*
* If a requested property is an own property of `terminalProps` it is returned.
* If the requested property is `Symbol.toPrimitive` a function returning an
* empty string is returned.
*
* In any other case, it simply returns itself. If you call it, it returns
* itself.
*
* @param {Object} terminalProps An object whose properties should be exposed
* @return {Proxy} A Proxy with above behavior
*/
module.exports.omniStub = (terminalProps = {}) => {
const stub = new Proxy(_ => _, {
get: (_, key) => {
if (Object.prototype.hasOwnProperty.call(terminalProps, key)) return terminalProps[key];
return key === Symbol.toPrimitive ? _ => '' : stub;
},
apply: _ => stub
});
return stub;
};
module.exports.setEngineSpec = function (appPath, engine, spec) {
appPath = getConfigPath(appPath);
const parser = new ConfigParser(appPath);
parser.removeEngine(engine);
parser.addEngine(engine, spec);
parser.write();
};
module.exports.getEngineSpec = function (appPath, engine) {
appPath = getConfigPath(appPath);
const parser = new ConfigParser(appPath);
const engines = parser.getEngines();
for (let i = 0; i < engines.length; i++) {
if (engines[i].name === module.exports.testPlatform) {
return engines[i].spec;
}
}
return null;
};
module.exports.removeEngine = function (appPath, engine) {
appPath = getConfigPath(appPath);
const parser = new ConfigParser(appPath);
parser.removeEngine(module.exports.testPlatform);
parser.write();
};
module.exports.setPluginSpec = function (appPath, plugin, spec) {
appPath = getConfigPath(appPath);
const parser = new ConfigParser(appPath);
const p = parser.getPlugin(plugin);
let variables = [];
if (p) {
parser.removePlugin(p.name);
if (p.variables.length && p.variables.length > 0) {
variables = p.variables;
}
}
parser.addPlugin({ name: plugin, spec }, variables);
parser.write();
};
module.exports.getPluginSpec = function (appPath, plugin) {
appPath = getConfigPath(appPath);
const parser = new ConfigParser(appPath);
const p = parser.getPlugin(plugin);
if (p) {
return p.spec;
}
return null;
};
module.exports.getPluginVariable = function (appPath, plugin, variable) {
appPath = getConfigPath(appPath);
const parser = new ConfigParser(appPath);
const p = parser.getPlugin(plugin);
if (p && p.variables) {
return p.variables[variable];
}
return null;
};
module.exports.removePlugin = function (appPath, plugin) {
appPath = getConfigPath(appPath);
const parser = new ConfigParser(appPath);
parser.removePlugin(plugin);
parser.write();
};
module.exports.getConfigContent = function (appPath) {
const configFile = path.join(appPath, 'config.xml');
return fs.readFileSync(configFile, 'utf-8');
};
module.exports.writeConfigContent = function (appPath, configContent) {
const configFile = path.join(appPath, 'config.xml');
fs.writeFileSync(configFile, configContent, 'utf-8');
};
module.exports.asymmetricMatchers = {
pathNormalizingTo (expectedPath) {
return {
asymmetricMatch: actualPath => path.normalize(actualPath) === expectedPath,
jasmineToString: _ => `<pathNormalizingTo(${expectedPath})>`
};
}
};
const customMatchers = {
toExist: () => ({
compare (file) {
const pass = fs.existsSync(file);
const expectation = (pass ? 'not ' : '') + 'to exist';
return {
pass, message: `expected ${file} ${expectation}`
};
}
})
};
// Add our custom matchers
beforeEach(() => jasmine.addMatchers(customMatchers));