-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathfliplet-test.js
executable file
·192 lines (151 loc) · 4.95 KB
/
fliplet-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
const puppeteer = require('puppeteer');
const Mocha = require('mocha');
const { expect, should } = require('chai');
const casual = require('casual');
const fs = require('fs');
const path = require('path');
const _ = require('lodash');
const config = require('./lib/config');
const publish = require('./lib/publish');
const api = require('./lib/api');
const authToken = _.get(config.data, 'user.auth_token', process.env.AUTH_TOKEN);
const debug = !!(process.argv[2] || '').match('--debug');
const runner = async function run() {
let file;
let fileName;
let tags;
let packageName;
function restoreWidgetJson() {
// Restore widget.json file
file.package = packageName;
file.tags = tags;
fs.writeFileSync(fileName, JSON.stringify(file, null, 2));
}
try {
if (!authToken) {
console.error('[ERROR] Please login before running tests.');
process.exit(1);
}
// puppeteer options
const opts = {
headless: !debug,
slowMo: 100,
timeout: 10000
};
console.log('[BOOTSTRAP] Launching Puppeteer...');
const browser = await puppeteer.launch(opts);
// Globals to be used on Mocha tests
global.browser = browser;
global.expect = expect;
global.should = should;
global.casual = require('casual');
// Instantiate a Mocha instance.
const mocha = new Mocha({
reporter: 'spec'
});
/*
* Extending nightmare with save action
* To be used with the interfaceBrowser
* Simulate what happens in Studio
*/
/*
Nightmare.action("save", function (done) {
this.evaluate_now(
function () {
window.postMessage("save-widget", window.location.origin);
},
function () {
// Refresh pages
interfaceBrowser.refresh();
buildBrowser.refresh();
// Wait some time so the refresh really happens
// TODO: Use .wait with some conditional on both browsers instead
// TODO: update widgetInstance with new data
setTimeout(done, 2000);
}
);
});
*/
fileName = './widget.json';
file = require(`${process.cwd()}/widget.json`);
packageName = file.package;
tags = file.tags;
// Generate a random package name for this test
file.package = `test.${packageName}.${casual.unix_time}`;
file.tags = [];
fs.writeFileSync(fileName, JSON.stringify(file, null, 2));
const { widget } = await publish.run({ auth_token: authToken });
restoreWidgetJson();
api.setAuthToken(authToken);
const testDir = `${process.cwd()}/tests`;
const { app } = await api.app.post();
const { page } = await api.page.post({ appId: app.id });
const { widgetInstance } = await api.widgetInstance.post({
pageId: page.id,
widgetId: widget.id
});
const layout = `<section>{{{widget ${widgetInstance.id}}}}</section>`;
await api.page.put({
appId: app.id,
id: page.id,
layout
});
global.widgetInstance = widgetInstance;
global.buildSelector = `[data-fl-widget-instance][data-id="${widgetInstance.id}"]`;
browser.renderWidget = async function(isInterface) {
if (global.page) {
global.page.close();
}
global.page = await global.browser.newPage();
const uri = isInterface
? `v1/widget-instances/${widgetInstance.id}/interface`
: `v1/apps/${app.id}/pages/${page.id}/preview`;
const url = `${config.api_url}${uri}?auth_token=${authToken}`;
await global.page.goto(url);
};
browser.renderWidgetWithData = async function(data, isInterface = false) {
if (data) {
await api.widgetInstance.put(widgetInstance.id, data);
}
return browser.renderWidget(isInterface);
};
browser.renderInterface = async function() {
return browser.renderWidget(true);
};
browser.renderInterfaceWithData = async function(data) {
return browser.renderWidgetWithData(data, true);
};
console.log('[BOOTSTRAP] Loading tests from', testDir);
fs.readdirSync(testDir)
.filter(function(file) {
return file.match(/\.js$/);
})
.forEach(function(file) {
console.log('[MOCHA] Adding file', file);
mocha.addFile(path.join(testDir, file));
});
console.log('[MOCHA] Running test suite...');
mocha.timeout(15000);
mocha
.run(function(failures) {
process.on('exit', function() {
process.exit(failures); // exit with non-zero status if there were failures
});
})
.on('end', async function() {
await browser.close();
// Clean created data
await Promise.all([
api.widgetInstance.del(widgetInstance.id),
api.page.del({ id: page.id, appId: app.id })
]);
await Promise.all([api.app.del(app.id), api.widget.del(widget.id)]);
});
} catch (error) {
console.error(error);
restoreWidgetJson();
await global.browser.close();
process.exit(1);
}
};
runner();