summaryrefslogtreecommitdiffstats
path: root/devtools/server/tests/unit/test_promises_actor_attach.js
diff options
context:
space:
mode:
authorMatt A. Tobin <mattatobin@localhost.localdomain>2018-02-02 04:16:08 -0500
committerMatt A. Tobin <mattatobin@localhost.localdomain>2018-02-02 04:16:08 -0500
commit5f8de423f190bbb79a62f804151bc24824fa32d8 (patch)
tree10027f336435511475e392454359edea8e25895d /devtools/server/tests/unit/test_promises_actor_attach.js
parent49ee0794b5d912db1f95dce6eb52d781dc210db5 (diff)
downloadUXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar
UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.gz
UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.lz
UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.xz
UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.zip
Add m-esr52 at 52.6.0
Diffstat (limited to 'devtools/server/tests/unit/test_promises_actor_attach.js')
-rw-r--r--devtools/server/tests/unit/test_promises_actor_attach.js52
1 files changed, 52 insertions, 0 deletions
diff --git a/devtools/server/tests/unit/test_promises_actor_attach.js b/devtools/server/tests/unit/test_promises_actor_attach.js
new file mode 100644
index 000000000..17c2a1f41
--- /dev/null
+++ b/devtools/server/tests/unit/test_promises_actor_attach.js
@@ -0,0 +1,52 @@
+/* Any copyright is dedicated to the Public Domain.
+ http://creativecommons.org/publicdomain/zero/1.0/ */
+
+/**
+ * Test that we can attach and detach to the PromisesActor under the correct
+ * states.
+ */
+
+const { PromisesFront } = require("devtools/shared/fronts/promises");
+
+add_task(function* () {
+ let client = yield startTestDebuggerServer("promises-actor-test");
+ let chromeActors = yield getChromeActors(client);
+
+ // We have to attach the chrome TabActor before playing with the PromiseActor
+ yield attachTab(client, chromeActors);
+ yield testAttach(client, chromeActors);
+
+ let response = yield listTabs(client);
+ let targetTab = findTab(response.tabs, "promises-actor-test");
+ ok(targetTab, "Found our target tab.");
+
+ let [ tabResponse ] = yield attachTab(client, targetTab);
+
+ yield testAttach(client, tabResponse);
+
+ yield close(client);
+});
+
+function* testAttach(client, parent) {
+ let promises = PromisesFront(client, parent);
+
+ try {
+ yield promises.detach();
+ ok(false, "Should not be able to detach when in a detached state.");
+ } catch (e) {
+ ok(true, "Expected detach to fail when already in a detached state.");
+ }
+
+ yield promises.attach();
+ ok(true, "Expected attach to succeed.");
+
+ try {
+ yield promises.attach();
+ ok(false, "Should not be able to attach when in an attached state.");
+ } catch (e) {
+ ok(true, "Expected attach to fail when already in an attached state.");
+ }
+
+ yield promises.detach();
+ ok(true, "Expected detach to succeed.");
+}