mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
112 lines
2.9 KiB
JavaScript
112 lines
2.9 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";
|
|
|
|
// PIN is hardcoded as "0000" by default.
|
|
// See it here {B2G_HOME}/external/qemu/telephony/sim_card.c,
|
|
// in asimcard_create().
|
|
const TEST_DATA = [
|
|
// Test passing no pin.
|
|
{
|
|
pin: "",
|
|
newPin: "0000",
|
|
newPinAgain: "1111",
|
|
expectedError: {
|
|
name: "emMmiError",
|
|
additionalInformation: null
|
|
}
|
|
},
|
|
// Test passing no newPin.
|
|
{
|
|
pin: "0000",
|
|
newPin: "",
|
|
newPinAgain: "",
|
|
expectedError: {
|
|
name: "emMmiError",
|
|
additionalInformation: null
|
|
}
|
|
},
|
|
// Test passing mismatched newPin.
|
|
{
|
|
pin: "0000",
|
|
newPin: "0000",
|
|
newPinAgain: "1111",
|
|
expectedError: {
|
|
name: "emMmiErrorMismatchPin",
|
|
additionalInformation: null
|
|
}
|
|
},
|
|
// Test passing invalid pin (< 4 digit).
|
|
{
|
|
pin: "000",
|
|
newPin: "0000",
|
|
newPinAgain: "0000",
|
|
expectedError: {
|
|
name: "emMmiErrorInvalidPin",
|
|
additionalInformation: null
|
|
}
|
|
},
|
|
// Test passing invalid newPin (> 8 digit).
|
|
{
|
|
pin: "0000",
|
|
newPin: "000000000",
|
|
newPinAgain: "000000000",
|
|
expectedError: {
|
|
name: "emMmiErrorInvalidPin",
|
|
additionalInformation: null
|
|
}
|
|
},
|
|
// Test passing incorrect pin.
|
|
{
|
|
pin: "1234",
|
|
newPin: "0000",
|
|
newPinAgain: "0000",
|
|
expectedError: {
|
|
name: "emMmiErrorBadPin",
|
|
// The default pin retries is 3, failed once becomes to 2
|
|
additionalInformation: 2
|
|
}
|
|
},
|
|
// Test changing pin successfully (Reset the retries).
|
|
{
|
|
pin: "0000",
|
|
newPin: "0000",
|
|
newPinAgain: "0000"
|
|
}
|
|
];
|
|
|
|
function testChangePin(aPin, aNewPin, aNewPinAgain, aExpectedError) {
|
|
let MMI_CODE = "**04*" + aPin + "*" + aNewPin + "*" + aNewPinAgain + "#";
|
|
log("Test " + MMI_CODE);
|
|
|
|
return sendMMI(MMI_CODE)
|
|
.then(function resolve(aResult) {
|
|
ok(!aExpectedError, MMI_CODE + " success");
|
|
is(aResult.serviceCode, "scPin", "Check service code");
|
|
is(aResult.statusMessage, "smPinChanged", "Check status message");
|
|
is(aResult.additionalInformation, undefined, "Check additional information");
|
|
}, function reject(aError) {
|
|
ok(aExpectedError, MMI_CODE + " fail");
|
|
is(aError.name, aExpectedError.name, "Check name");
|
|
is(aError.message, "", "Check message");
|
|
is(aError.serviceCode, "scPin", "Check service code");
|
|
is(aError.additionalInformation, aExpectedError.additionalInformation,
|
|
"Chech additional information");
|
|
});
|
|
}
|
|
|
|
// Start test
|
|
startTestCommon(function() {
|
|
let promise = Promise.resolve();
|
|
for (let i = 0; i < TEST_DATA.length; i++) {
|
|
let data = TEST_DATA[i];
|
|
promise = promise.then(() => testChangePin(data.pin,
|
|
data.newPin,
|
|
data.newPinAgain,
|
|
data.expectedError));
|
|
}
|
|
return promise;
|
|
});
|