summaryrefslogtreecommitdiffstats
path: root/devtools/client/performance/test/unit/test_frame-utils-02.js
diff options
context:
space:
mode:
Diffstat (limited to 'devtools/client/performance/test/unit/test_frame-utils-02.js')
-rw-r--r--devtools/client/performance/test/unit/test_frame-utils-02.js59
1 files changed, 59 insertions, 0 deletions
diff --git a/devtools/client/performance/test/unit/test_frame-utils-02.js b/devtools/client/performance/test/unit/test_frame-utils-02.js
new file mode 100644
index 000000000..ef0d275bd
--- /dev/null
+++ b/devtools/client/performance/test/unit/test_frame-utils-02.js
@@ -0,0 +1,59 @@
+/* Any copyright is dedicated to the Public Domain.
+ http://creativecommons.org/publicdomain/zero/1.0/ */
+"use strict";
+
+/**
+ * Tests the function testing whether or not a frame is content or chrome
+ * works properly.
+ */
+
+function run_test() {
+ run_next_test();
+}
+
+add_task(function () {
+ let FrameUtils = require("devtools/client/performance/modules/logic/frame-utils");
+
+ let isContent = (frame) => {
+ FrameUtils.computeIsContentAndCategory(frame);
+ return frame.isContent;
+ };
+
+ ok(isContent({ location: "http://foo" }),
+ "Verifying content/chrome frames is working properly.");
+ ok(isContent({ location: "https://foo" }),
+ "Verifying content/chrome frames is working properly.");
+ ok(isContent({ location: "file://foo" }),
+ "Verifying content/chrome frames is working properly.");
+
+ ok(!isContent({ location: "chrome://foo" }),
+ "Verifying content/chrome frames is working properly.");
+ ok(!isContent({ location: "resource://foo" }),
+ "Verifying content/chrome frames is working properly.");
+
+ ok(!isContent({ location: "chrome://foo -> http://bar" }),
+ "Verifying content/chrome frames is working properly.");
+ ok(!isContent({ location: "chrome://foo -> https://bar" }),
+ "Verifying content/chrome frames is working properly.");
+ ok(!isContent({ location: "chrome://foo -> file://bar" }),
+ "Verifying content/chrome frames is working properly.");
+
+ ok(!isContent({ location: "resource://foo -> http://bar" }),
+ "Verifying content/chrome frames is working properly.");
+ ok(!isContent({ location: "resource://foo -> https://bar" }),
+ "Verifying content/chrome frames is working properly.");
+ ok(!isContent({ location: "resource://foo -> file://bar" }),
+ "Verifying content/chrome frames is working properly.");
+
+ ok(!isContent({ category: 1, location: "chrome://foo" }),
+ "Verifying content/chrome frames is working properly.");
+ ok(!isContent({ category: 1, location: "resource://foo" }),
+ "Verifying content/chrome frames is working properly.");
+
+ ok(!isContent({ category: 1, location: "file://foo -> http://bar" }),
+ "Verifying content/chrome frames is working properly.");
+ ok(!isContent({ category: 1, location: "file://foo -> https://bar" }),
+ "Verifying content/chrome frames is working properly.");
+ ok(!isContent({ category: 1, location: "file://foo -> file://bar" }),
+ "Verifying content/chrome frames is working properly.");
+});