mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 820762 - 0003.Test if voicemailInfo is exposed. r=hsinyi
This commit is contained in:
parent
d0b94c7804
commit
0dfb723b62
@ -5,4 +5,4 @@ qemu = true
|
||||
|
||||
[test_geolocation.js]
|
||||
disabled = Bug 808783
|
||||
|
||||
[test_get_voicemailInfo.js]
|
||||
|
26
dom/system/gonk/tests/marionette/test_get_voicemailInfo.js
Normal file
26
dom/system/gonk/tests/marionette/test_get_voicemailInfo.js
Normal file
@ -0,0 +1,26 @@
|
||||
/* Any copyright is dedicated to the Public Domain.
|
||||
* http://creativecommons.org/publicdomain/zero/1.0/ */
|
||||
|
||||
MARIONETTE_TIMEOUT = 10000;
|
||||
|
||||
let Cc = SpecialPowers.Cc;
|
||||
let Ci = SpecialPowers.Ci;
|
||||
|
||||
// Get system worker manager.
|
||||
let systemWorkerManager = Cc["@mozilla.org/telephony/system-worker-manager;1"];
|
||||
ok(systemWorkerManager);
|
||||
|
||||
// Get RadioIntefaceLayer interface.
|
||||
let RIL = systemWorkerManager.getService(Ci.nsIInterfaceRequestor).
|
||||
getInterface(Ci.nsIRadioInterfaceLayer);
|
||||
ok(RIL);
|
||||
|
||||
// Check voicemail information accessible.
|
||||
ok(RIL.voicemailInfo);
|
||||
ok(RIL.voicemailInfo.number);
|
||||
ok(RIL.voicemailInfo.displayName);
|
||||
// These are the emulator's hard coded voicemail number and alphaId.
|
||||
is(RIL.voicemailInfo.number, "+15552175049");
|
||||
is(RIL.voicemailInfo.displayName, "Voicemail");
|
||||
|
||||
finish();
|
Loading…
Reference in New Issue
Block a user