forked from intel/webml-polyfill
-
Notifications
You must be signed in to change notification settings - Fork 0
/
test-ci.js
242 lines (225 loc) · 7.49 KB
/
test-ci.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
const webdriver = require('selenium-webdriver');
const chrome = require('selenium-webdriver/chrome');
const By = webdriver.By;
const options = new chrome.Options();
options.addArguments('no-sandbox');
const builder = new webdriver.Builder();
builder.forBrowser('chrome');
builder.setChromeOptions(options);
const driver = builder.build();
const csv = require('./node_modules/fast-csv');
const fs = require('fs');
const os = require('os');
let countPasses = 0;
let countFailures = 0;
let countPending = 0;
let flagPending = null;
let csvTitle = null;
let csvModule = null;
let csvName = null;
let csvPass = null;
let csvFail = null;
let csvNA = null;
(async function() {
let baselinejson = JSON.parse(fs.readFileSync('./test/tools/CI/baseline/baseline.config.json'));
let sys = os.type();
let platform;
if (sys == 'Linux') {
platform = 'Linux';
} else if (sys == 'Darwin') {
platform = 'macOS';
} else if (sys == 'Windows_NT') {
platform = 'Win';
} else {
let string = `We do not support ${sys} as run platform`;
throw new Error(string);
}
let getName = async function(element) {
let Text = null;
let length = 0;
await element.findElement(By.xpath('./h2')).getText()
.then(function(message) {
length = message.length - 1;
Text = message;
});
let arrayElement = await element.findElements(By.xpath('./h2/child::*'));
for (let j = 1; j <= arrayElement.length; j++) {
await arrayElement[j - 1].getText()
.then(function(message) {
length = length - message.length;
});
}
if (flagPending) {
return Text;
} else {
return Text.slice(0, length);
}
};
let getError = async function(element) {
let Text = await element.findElement(By.xpath('./pre[@class="error"]')).getText();
return Text;
};
let backendModel;
let baseLineData = new Map();
let lists = [
'Feature',
'Case Id',
'Test Case',
'Linux-Polyfill-Fast-WASM',
'macOS-Polyfill-Fast-WASM',
'Android-Polyfill-Fast-WASM',
'Win-Polyfill-Fast-WASM',
];
let checkStatus = async function(backendModel, results) {
for (let i = 0; i < lists.length; i++) {
if (lists[i] == backendModel) {
csv.fromPath('test/tools/CI/baseline/unitTestsBaseline.csv').on('data', function(data) {
baseLineData.set(data[0] + data[2] + data[i]);
}).on('end', function() {
if (results['Pass'] != 1 && baseLineData.has(results['Feature'] + results['TestCase'] + 'Pass')) {
let str = 'Feature: ' + results['Feature'] + ', TestCase: ' + results['TestCase'];
failCaseList.push(str);
}
});
}
}
};
let getInfo = async function(element) {
let array = await element.findElements(By.xpath('./ul/li[@class="test fail"]'));
for (let i = 1; i <= array.length; i++) {
await array[i - 1].getAttribute('class')
.then(function(message) {
if (message == 'test pass pending') {
flagPending = true;
} else {
flagPending = false;
}
});
await getName(array[i - 1])
.then(function(message) {
csvName = message;
});
if (flagPending) {
csvPass = null;
csvFail = null;
csvNA = '1';
countPending++;
} else {
await getError(array[i - 1])
.then(function(message) {
csvPass = null;
csvFail = '1';
csvNA = null;
countFailures++;
}).catch(function(error) {
csvPass = '1';
csvFail = null;
csvNA = null;
countPasses++;
});
}
if (csvModule == null) {
csvModule = csvTitle;
}
let DataFormat = {
Feature: csvTitle,
CaseId: csvModule + '/' + i,
TestCase: csvName,
Pass: csvPass,
Fail: csvFail,
NA: csvNA,
};
await checkStatus(backendModel, DataFormat);
csvName = null;
csvPass = null;
csvFail = null;
csvNA = null;
}
};
let grasp = async function() {
let arrayTitles = await driver.findElements(By.xpath('//ul[@id="mocha-report"]/li[@class="suite"]'));
for (let i = 1; i <= arrayTitles.length; i++) {
await arrayTitles[i - 1].findElement(By.xpath('./h1/a')).getText()
.then(function(message) {
csvTitle = message;
csvModule = null;
});
let arrayModule = await arrayTitles[i - 1].findElements(By.xpath('./ul/li[@class="suite"]'));
for (let j = 1; j <= arrayModule.length; j++) {
await arrayModule[j - 1].findElement(By.xpath('./h1/a')).getText()
.then(function(message) {
let array = message.split('#');
csvModule = array[1];
});
await getInfo(arrayModule[j - 1]);
}
await getInfo(arrayTitles[i - 1]);
}
};
let testResult = async function() {
let backendModels = [
'Linux-Polyfill-Fast-WASM',
'macOS-Polyfill-Fast-WASM',
'Android-Polyfill-Fast-WASM',
'Win-Polyfill-Fast-WASM',
];
let prefers = [
'fast',
];
await driver.get('chrome://gpu');
let vr = await driver.findElement(By.xpath('//*[@id="info-view-table"]/tbody/tr[2]/td[2]/span')).getText();
await driver.sleep(1000);
console.log(`chrome version is : ${vr} \n`);
for (let j of prefers) {
let totalResult;
j1 = j.replace(/(\w)/,function(v){return v.toUpperCase()});
for (let i of backendModels) {
if ((i.indexOf(platform) != -1) && (i.indexOf(j1) != -1)) {
backendModel = i;
console.log(`Begin test with : ${i} prefer.`);
totalResult = baselinejson[i];
let testlink = 'https://brucedai.github.io/webnnt/test/ci.html?prefer=';
await driver.get(testlink + j.toLowerCase());
for (let t = 0; t <= 6; t++) {
let time_begin = await driver.findElement(By.xpath('//ul[@id="mocha-stats"]/li[@class="duration"]//em')).getText();
await driver.sleep(10000);
let time_end = await driver.findElement(By.xpath('//ul[@id="mocha-stats"]/li[@class="duration"]//em')).getText();
if (time_begin === time_end) {
let passResult = await driver.findElement(By.xpath('//*[@id="mocha-stats"]/li[2]/em')).getText();
let failResult = await driver.findElement(By.xpath('//*[@id="mocha-stats"]/li[3]/em')).getText();
if (totalResult.pass > passResult) {
let str = 'Expect pass is :' + totalResult.pass + ' and actual result is : ' + passResult + ' will exit process !';
throw new Error(str);
}
if (totalResult.fail < failResult) {
let str = 'Expect fail is :' + totalResult.fail + ' and actual result is : ' + failResult + ' will exit process !';
throw new Error(str);
}
break;
};
}
countPasses = 0;
countFailures = 0;
countPending = 0;
await grasp();
}
}
}
if (failCaseList.length > 0) {
console.log('Test fail, below case get different result with expect data : ');
for (let i = 0; i< failCaseList.length; i++ ) {
console.log(failCaseList[i]);
}
await driver.quit();
throw new Error('Test Fail');
}
};
let failCaseList = [];
await testResult();
await driver.quit();
})().then(function() {
console.log('Test completed!');
}).catch(function(err) {
console.log(err);
process.exit(1);
});