mirror of
https://github.com/classilla/tenfourfox.git
synced 2025-01-06 09:29:35 +00:00
43 lines
1.2 KiB
JavaScript
43 lines
1.2 KiB
JavaScript
/* Any copyright is dedicated to the Public Domain.
|
|
* http://creativecommons.org/publicdomain/zero/1.0/ */
|
|
|
|
MARIONETTE_TIMEOUT = 60000;
|
|
MARIONETTE_HEAD_JS = "head.js";
|
|
|
|
const TEST_DATA = [
|
|
// [mmi, expectedError]
|
|
// Currently emulator doesn't support REQUEST_QUERY_CLIP, so we expect to
|
|
// get a 'RequestNotSupported' error here.
|
|
["*#30#", "RequestNotSupported"],
|
|
// Unsupported CLIP MMI code.
|
|
["*30#", "emMmiErrorNotSupported"],
|
|
["#30#", "emMmiErrorNotSupported"],
|
|
["**30#", "emMmiErrorNotSupported"],
|
|
["##30#", "emMmiErrorNotSupported"],
|
|
];
|
|
|
|
function testCLIP(aMmi, aExpectedError) {
|
|
log("Test " + aMmi + " ...");
|
|
|
|
return gSendMMI(aMmi).then(aResult => {
|
|
// Since emulator doesn't support clip, so we expect the result is always
|
|
// failed.
|
|
ok(!aResult.success, "Check success");
|
|
is(aResult.serviceCode, "scClip", "Check serviceCode");
|
|
is(aResult.statusMessage, aExpectedError, "Check statusMessage");
|
|
});
|
|
}
|
|
|
|
// Start test
|
|
startTest(function() {
|
|
let promise = Promise.resolve();
|
|
|
|
TEST_DATA.forEach(function(aData) {
|
|
promise = promise.then(() => testCLIP(aData[0], aData[1]));
|
|
});
|
|
|
|
return promise
|
|
.catch(aError => ok(false, "Promise reject: " + aError))
|
|
.then(finish);
|
|
});
|