summaryrefslogtreecommitdiffstats
path: root/toolkit/components/webextensions/test/xpcshell/test_ext_onmessage_removelistener.js
blob: 6f8b553fc6b26c7588f9e45aa2089917f682722c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
/* -*- Mode: indent-tabs-mode: nil; js-indent-level: 2 -*- */
/* vim: set sts=2 sw=2 et tw=80: */
"use strict";

function backgroundScript() {
  function listener() {
    browser.test.notifyFail("listener should not be invoked");
  }

  browser.runtime.onMessage.addListener(listener);
  browser.runtime.onMessage.removeListener(listener);
  browser.runtime.sendMessage("hello");

  // Make sure that, if we somehow fail to remove the listener, then we'll run
  // the listener before the test is marked as passing.
  setTimeout(function() {
    browser.test.notifyPass("onmessage_removelistener");
  }, 0);
}

let extensionData = {
  background: backgroundScript,
};

add_task(function* test_contentscript() {
  let extension = ExtensionTestUtils.loadExtension(extensionData);
  yield extension.startup();
  yield extension.awaitFinish("onmessage_removelistener");
  yield extension.unload();
});