dom/fmradio/test/marionette/test_cancel_seek.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 = 10000;
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 = seek;
michael@0 21 }
michael@0 22
michael@0 23 function seek() {
michael@0 24 log("Seek up");
michael@0 25 var request = FMRadio.seekUp();
michael@0 26 ok(request);
michael@0 27
michael@0 28 var seekUpIsCancelled = false;
michael@0 29 request.onerror = function() {
michael@0 30 seekUpIsCancelled = true;
michael@0 31 };
michael@0 32
michael@0 33 var seekUpCompleted = false;
michael@0 34 request.onsuccess = function() {
michael@0 35 ok(!seekUpIsCancelled);
michael@0 36 seekUpCompleted = true;
michael@0 37 };
michael@0 38
michael@0 39 log("Seek up");
michael@0 40 var cancelSeekReq = FMRadio.cancelSeek();
michael@0 41 ok(cancelSeekReq);
michael@0 42
michael@0 43 // There are two possibilities which depends on the system
michael@0 44 // process scheduling (bug 911063 comment 0):
michael@0 45 // - seekup action is canceled
michael@0 46 // - seekup's onsuccess fires before cancelSeek's onerror
michael@0 47
michael@0 48 cancelSeekReq.onsuccess = function() {
michael@0 49 ok(seekUpIsCancelled, "Seekup request failed.");
michael@0 50 cleanUp();
michael@0 51 };
michael@0 52
michael@0 53 cancelSeekReq.onerror = function() {
michael@0 54 ok(seekUpCompleted);
michael@0 55 cleanUp();
michael@0 56 };
michael@0 57 }
michael@0 58
michael@0 59 function cleanUp() {
michael@0 60 FMRadio.disable();
michael@0 61 FMRadio.ondisabled = function() {
michael@0 62 FMRadio.ondisabled = null;
michael@0 63 ok(!FMRadio.enabled);
michael@0 64 finish();
michael@0 65 };
michael@0 66 }
michael@0 67
michael@0 68 verifyInitialState();
michael@0 69

mercurial