tenfourfox/devtools/client/performance/test/unit/test_frame-utils-02.js
Cameron Kaiser c9b2922b70 hello FPR
2017-04-19 00:56:45 -07:00

59 lines
2.4 KiB
JavaScript

/* Any copyright is dedicated to the Public Domain.
http://creativecommons.org/publicdomain/zero/1.0/ */
/**
* 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.");
});