Commit 274e7689 authored by Jérome Perrin's avatar Jérome Perrin

ui_test_core: display promise rejection reasons on setFile

Sometimes test fail we don't have any information about what the problem
was.

Using the same technique of turning a promise into "a function called
several times until it returns true or false", we can get rejection
failures in the selenium error message.
parent c1ad72b9
......@@ -11,30 +11,55 @@
* </tr>
*/
Selenium.prototype.doSetFile = function(locator, url_and_filename) {
var tmpArray = url_and_filename.split(' ', 2);
var url = tmpArray[0];
var fileName = tmpArray[1];
var tmpArray = url_and_filename.split(' ', 2);
var url = tmpArray[0];
var fileName = tmpArray[1];
var rejectionValue,
promiseState = 'pending';
// same technique as doVerifyImageMatchSnapshot
return function assertFileSet() {
if (promiseState === 'pending') {
return false;
}
if (promiseState === 'resolved') {
return true;
}
if (promiseState === 'rejected') {
Assert.fail(rejectionValue);
}
if (!fileName) {
throw new Error('file name must not be empty.');
throw new Error('file name must not be empty.');
}
var fileField = this.page().findElement(locator);
fetch(url)
.then(function (response){
.then(function(response) {
if (!response.ok) {
throw new Error('HTTP error, status = ' + response.status);
throw new Error('HTTP error, status = ' + response.status);
}
return response.blob();
})
.then(function (blob){
var dT = new ClipboardEvent('').clipboardData || // Firefox < 62 workaround exploiting https://bugzilla.mozilla.org/show_bug.cgi?id=1422655
new DataTransfer(); // specs compliant (as of March 2018 only Chrome)
})
.then(function(blob) {
var dT =
/* Firefox < 62 workaround exploiting https://bugzilla.mozilla.org/show_bug.cgi?id=1422655 */
new ClipboardEvent('').clipboardData ||
/* specs compliant (as of March 2018 only Chrome) */
new DataTransfer();
dT.items.add(new File([blob], fileName));
fileField.files = dT.files;
});
return Selenium.decorateFunctionWithTimeout(function () {
var window = selenium.browserbot.getCurrentWindow();
return (fileField.value || "").endsWith(fileName);
}, 60000);
})
.then(
function() {
promiseState = 'resolved';
},
function(error) {
console.error(error);
promiseState = 'rejected';
rejectionValue = 'Error setting file ' + error;
}
);
}
};
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment