dom/fmradio/test/marionette/test_seek_up_and_down.js

Wed, 31 Dec 2014 06:09:35 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 06:09:35 +0100
changeset 0
6474c204b198
permissions
-rw-r--r--

Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.

michael@0 1 /* Any copyright is dedicated to the Public Domain.
michael@0 2 * http://creativecommons.org/publicdomain/zero/1.0/ */
michael@0 3
michael@0 4 MARIONETTE_TIMEOUT = 30000;
michael@0 5
michael@0 6 SpecialPowers.addPermission("fmradio", true, document);
michael@0 7
michael@0 8 let FMRadio = window.navigator.mozFMRadio;
michael@0 9
michael@0 10 function verifyInitialState() {
michael@0 11 log("Verifying initial state.");
michael@0 12 ok(FMRadio);
michael@0 13 is(FMRadio.enabled, false);
michael@0 14 setUp();
michael@0 15 }
michael@0 16
michael@0 17 function setUp() {
michael@0 18 let frequency = FMRadio.frequencyLowerBound + FMRadio.channelWidth;
michael@0 19 FMRadio.enable(frequency);
michael@0 20 FMRadio.onenabled = seekUp;
michael@0 21 }
michael@0 22
michael@0 23 function seekUp() {
michael@0 24 log("Seek up");
michael@0 25 var request = FMRadio.seekUp();
michael@0 26 ok(request);
michael@0 27
michael@0 28 request.onsuccess = function() {
michael@0 29 seekDown();
michael@0 30 };
michael@0 31
michael@0 32 request.onerror = function() {
michael@0 33 ok(false, "Seekup request should not fail.");
michael@0 34 };
michael@0 35 }
michael@0 36
michael@0 37 function seekDown() {
michael@0 38 log("Seek down");
michael@0 39 var request = FMRadio.seekDown();
michael@0 40 ok(request);
michael@0 41
michael@0 42 request.onsuccess = function() {
michael@0 43 cleanUp();
michael@0 44 };
michael@0 45
michael@0 46 request.onerror = function() {
michael@0 47 ok(false, "Seekdown request should not fail.");
michael@0 48 };
michael@0 49 }
michael@0 50
michael@0 51 function cleanUp() {
michael@0 52 FMRadio.disable();
michael@0 53 FMRadio.ondisabled = function() {
michael@0 54 FMRadio.ondisabled = null;
michael@0 55 ok(!FMRadio.enabled);
michael@0 56 finish();
michael@0 57 };
michael@0 58 }
michael@0 59
michael@0 60 verifyInitialState();
michael@0 61

mercurial