mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-25 05:41:12 +00:00
Bug 1461997 - Remove unused feeds xpcshell-test that were missed being removed in bug 1420622. r=Gijs
MozReview-Commit-ID: JCPxA9GI2wq --HG-- extra : rebase_source : 397fa38ab3b669278f12be7250aea17ec56d9cf1
This commit is contained in:
parent
0237d1df76
commit
95dacc7bfa
@ -1,7 +0,0 @@
|
||||
"use strict";
|
||||
|
||||
module.exports = {
|
||||
"extends": [
|
||||
"plugin:mozilla/xpcshell-test"
|
||||
]
|
||||
};
|
@ -1 +0,0 @@
|
||||
ChromeUtils.import("resource://gre/modules/Services.jsm");
|
@ -1,42 +0,0 @@
|
||||
ChromeUtils.import("resource://gre/modules/NetUtil.jsm");
|
||||
|
||||
function run_test() {
|
||||
var feedFeedURI = Services.io.newURI("feed://example.com/feed.xml");
|
||||
var httpFeedURI = Services.io.newURI("feed:http://example.com/feed.xml");
|
||||
var httpURI = Services.io.newURI("http://example.com/feed.xml");
|
||||
|
||||
var httpsFeedURI =
|
||||
Services.io.newURI("feed:https://example.com/feed.xml");
|
||||
var httpsURI = Services.io.newURI("https://example.com/feed.xml");
|
||||
|
||||
var feedChannel = NetUtil.newChannel({
|
||||
uri: feedFeedURI,
|
||||
loadUsingSystemPrincipal: true
|
||||
});
|
||||
|
||||
var httpChannel = NetUtil.newChannel({
|
||||
uri: httpFeedURI,
|
||||
loadUsingSystemPrincipal: true
|
||||
});
|
||||
|
||||
var httpsChannel = NetUtil.newChannel({
|
||||
uri: httpsFeedURI,
|
||||
loadUsingSystemPrincipal: true
|
||||
});
|
||||
|
||||
// not setting .originalURI to the original URI is naughty
|
||||
Assert.ok(feedFeedURI.equals(feedChannel.originalURI));
|
||||
Assert.ok(httpFeedURI.equals(httpChannel.originalURI));
|
||||
Assert.ok(httpsFeedURI.equals(httpsChannel.originalURI));
|
||||
|
||||
// actually using the horrible mess that's a feed: URI is suicidal
|
||||
Assert.ok(httpURI.equals(feedChannel.URI));
|
||||
Assert.ok(httpURI.equals(httpChannel.URI));
|
||||
Assert.ok(httpsURI.equals(httpsChannel.URI));
|
||||
|
||||
// check that we throw creating feed: URIs from file and ftp
|
||||
Assert.throws(function() { Services.io.newURI("feed:ftp://example.com/feed.xml"); },
|
||||
"Should throw an exception when trying to create a feed: URI with an ftp: inner");
|
||||
Assert.throws(function() { Services.io.newURI("feed:file:///var/feed.xml"); },
|
||||
"Should throw an exception when trying to create a feed: URI with a file: inner");
|
||||
}
|
@ -1,38 +0,0 @@
|
||||
function run_test() {
|
||||
var success = false;
|
||||
try {
|
||||
Services.io.newURI("feed:javascript:alert('hi');");
|
||||
} catch (e) {
|
||||
success = e.result == Cr.NS_ERROR_MALFORMED_URI;
|
||||
}
|
||||
if (!success)
|
||||
do_throw("We didn't throw NS_ERROR_MALFORMED_URI creating a feed:javascript: URI");
|
||||
|
||||
success = false;
|
||||
try {
|
||||
Services.io.newURI("feed:data:text/html,hi");
|
||||
} catch (e) {
|
||||
success = e.result == Cr.NS_ERROR_MALFORMED_URI;
|
||||
}
|
||||
if (!success)
|
||||
do_throw("We didn't throw NS_ERROR_MALFORMED_URI creating a feed:data: URI");
|
||||
|
||||
success = false;
|
||||
try {
|
||||
Services.io.newURI("pcast:javascript:alert('hi');");
|
||||
} catch (e) {
|
||||
success = e.result == Cr.NS_ERROR_MALFORMED_URI;
|
||||
}
|
||||
if (!success)
|
||||
do_throw("We didn't throw NS_ERROR_MALFORMED_URI creating a pcast:javascript: URI");
|
||||
|
||||
success = false;
|
||||
try {
|
||||
Services.io.newURI("pcast:data:text/html,hi");
|
||||
} catch (e) {
|
||||
success = e.result == Cr.NS_ERROR_MALFORMED_URI;
|
||||
}
|
||||
if (!success)
|
||||
do_throw("We didn't throw NS_ERROR_MALFORMED_URI creating a pcast:data: URI");
|
||||
|
||||
}
|
@ -1,7 +0,0 @@
|
||||
[DEFAULT]
|
||||
head = head_feeds.js
|
||||
firefox-appdir = browser
|
||||
skip-if = toolkit == 'android'
|
||||
|
||||
[test_355473.js]
|
||||
[test_758990.js]
|
Loading…
Reference in New Issue
Block a user