зеркало из https://github.com/mozilla/gecko-dev.git
Bug 793208 - Part 4: tests. r=marshall_law
This commit is contained in:
Родитель
29737430aa
Коммит
19db3dc789
|
@ -0,0 +1,151 @@
|
|||
/* Any copyright is dedicated to the Public Domain.
|
||||
http://creativecommons.org/publicdomain/zero/1.0/ */
|
||||
|
||||
subscriptLoader.loadSubScript("resource://gre/modules/ril_consts.js", this);
|
||||
|
||||
function run_test() {
|
||||
run_next_test();
|
||||
}
|
||||
|
||||
function toaFromString(number) {
|
||||
let worker = newWorker({
|
||||
postRILMessage: function fakePostRILMessage(data) {
|
||||
// Do nothing
|
||||
},
|
||||
postMessage: function fakePostMessage(message) {
|
||||
// Do nothing
|
||||
}
|
||||
});
|
||||
return worker.RIL._toaFromString(number);
|
||||
}
|
||||
|
||||
add_test(function test_toaFromString_empty() {
|
||||
let retval = toaFromString("");
|
||||
|
||||
do_check_eq(retval, TOA_UNKNOWN);
|
||||
|
||||
run_next_test();
|
||||
});
|
||||
|
||||
add_test(function test_toaFromString_undefined() {
|
||||
let retval = toaFromString();
|
||||
|
||||
do_check_eq(retval, TOA_UNKNOWN);
|
||||
|
||||
run_next_test();
|
||||
});
|
||||
|
||||
add_test(function test_toaFromString_unknown() {
|
||||
let retval = toaFromString("666222333");
|
||||
|
||||
do_check_eq(retval, TOA_UNKNOWN);
|
||||
|
||||
run_next_test();
|
||||
});
|
||||
|
||||
add_test(function test_toaFromString_international() {
|
||||
let retval = toaFromString("+34666222333");
|
||||
|
||||
do_check_eq(retval, TOA_INTERNATIONAL);
|
||||
|
||||
run_next_test();
|
||||
});
|
||||
|
||||
function _getWorker() {
|
||||
let _postedMessage;
|
||||
let _worker = newWorker({
|
||||
postRILMessage: function fakePostRILMessage(data) {
|
||||
},
|
||||
postMessage: function fakePostMessage(message) {
|
||||
_postedMessage = message;
|
||||
}
|
||||
});
|
||||
return {
|
||||
get postedMessage() {
|
||||
return _postedMessage;
|
||||
},
|
||||
get worker() {
|
||||
return _worker;
|
||||
}
|
||||
};
|
||||
}
|
||||
|
||||
add_test(function test_setCallForward_unconditional() {
|
||||
let workerHelper = _getWorker();
|
||||
let worker = workerHelper.worker;
|
||||
|
||||
worker.RIL.setCallForward = function fakeSetCallForward(options) {
|
||||
worker.RIL[REQUEST_SET_CALL_FORWARD](0, {
|
||||
rilRequestError: ERROR_SUCCESS
|
||||
});
|
||||
};
|
||||
|
||||
worker.RIL.setCallForward({
|
||||
action: Ci.nsIDOMMozMobileCFInfo.CALL_FORWARD_ACTION_REGISTRATION,
|
||||
reason: Ci.nsIDOMMozMobileCFInfo.CALL_FORWARD_REASON_UNCONDITIONAL,
|
||||
serviceClass: ICC_SERVICE_CLASS_VOICE,
|
||||
number: "666222333",
|
||||
timeSeconds: 10
|
||||
});
|
||||
|
||||
let postedMessage = workerHelper.postedMessage;
|
||||
|
||||
do_check_eq(postedMessage.errorMsg, GECKO_ERROR_SUCCESS);
|
||||
do_check_true(postedMessage.success);
|
||||
|
||||
run_next_test();
|
||||
});
|
||||
|
||||
add_test(function test_queryCallForwardStatus_unconditional() {
|
||||
let workerHelper = _getWorker();
|
||||
let worker = workerHelper.worker;
|
||||
|
||||
worker.RIL.setCallForward = function fakeSetCallForward(options) {
|
||||
worker.RIL[REQUEST_SET_CALL_FORWARD](0, {
|
||||
rilRequestError: ERROR_SUCCESS
|
||||
});
|
||||
};
|
||||
|
||||
worker.Buf.readUint32 = function fakeReadUint32() {
|
||||
return worker.Buf.int32Array.pop();
|
||||
};
|
||||
|
||||
worker.Buf.readString = function fakeReadString() {
|
||||
return "+34666222333";
|
||||
};
|
||||
|
||||
worker.RIL.queryCallForwardStatus = function fakeQueryCallForward(options) {
|
||||
worker.Buf.int32Array = [
|
||||
0, // rules.timeSeconds
|
||||
145, // rules.toa
|
||||
49, // rules.serviceClass
|
||||
Ci.nsIDOMMozMobileCFInfo.CALL_FORWARD_REASON_UNCONDITIONAL, // rules.reason
|
||||
1, // rules.active
|
||||
1 // rulesLength
|
||||
];
|
||||
worker.RIL[REQUEST_QUERY_CALL_FORWARD_STATUS](1, {
|
||||
rilRequestError: ERROR_SUCCESS
|
||||
});
|
||||
};
|
||||
|
||||
worker.RIL.queryCallForwardStatus({
|
||||
action: Ci.nsIDOMMozMobileCFInfo.CALL_FORWARD_ACTION_QUERY_STATUS,
|
||||
reason: Ci.nsIDOMMozMobileCFInfo.CALL_FORWARD_REASON_UNCONDITIONAL,
|
||||
serviceClass: ICC_SERVICE_CLASS_VOICE,
|
||||
number: "666222333",
|
||||
timeSeconds: 10
|
||||
});
|
||||
|
||||
let postedMessage = workerHelper.postedMessage;
|
||||
|
||||
do_check_eq(postedMessage.errorMsg, GECKO_ERROR_SUCCESS);
|
||||
do_check_true(postedMessage.success);
|
||||
do_check_true(Array.isArray(postedMessage.rules));
|
||||
do_print(postedMessage.rules.length);
|
||||
do_check_eq(postedMessage.rules.length, 1);
|
||||
do_check_true(postedMessage.rules[0].active);
|
||||
do_check_eq(postedMessage.rules[0].reason,
|
||||
Ci.nsIDOMMozMobileCFInfo.CALL_FORWARD_REASON_UNCONDITIONAL);
|
||||
do_check_eq(postedMessage.rules[0].number, "+34666222333");
|
||||
run_next_test();
|
||||
});
|
|
@ -6,3 +6,4 @@ tail =
|
|||
[test_ril_worker_icc.js]
|
||||
[test_ril_worker_sms.js]
|
||||
[test_ril_worker_mmi.js]
|
||||
[test_ril_worker_cf.js]
|
||||
|
|
Загрузка…
Ссылка в новой задаче