Revision control

Copy as Markdown

Other Tools

/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/*
* Test suite for getting news urls via the protocol handler.
*/
var defaultProtocolFlags =
Ci.nsIProtocolHandler.URI_NORELATIVE |
Ci.nsIProtocolHandler.URI_LOADABLE_BY_ANYONE |
Ci.nsIProtocolHandler.ALLOWS_PROXY |
Ci.nsIProtocolHandler.URI_FORBIDS_AUTOMATIC_DOCUMENT_REPLACEMENT |
Ci.nsIProtocolHandler.URI_FORBIDS_COOKIE_ACCESS |
Ci.nsIProtocolHandler.ORIGIN_IS_FULL_SPEC;
var protocols = [
{
protocol: "news",
defaultPort: Ci.nsINntpUrl.DEFAULT_NNTP_PORT,
},
// XXX News secure protocol not working yet.
/* { protocol: "snews",
defaultPort: Ci.nsINntpUrl.DEFAULT_NNTPS_PORT
} */
];
function run_test() {
for (var part = 0; part < protocols.length; ++part) {
print("protocol: " + protocols[part].protocol);
var pH = Cc[
"@mozilla.org/network/protocol;1?name=" + protocols[part].protocol
].createInstance(Ci.nsIProtocolHandler);
Assert.equal(pH.scheme, protocols[part].protocol);
Assert.equal(
Services.io.getDefaultPort(pH.scheme),
protocols[part].defaultPort
);
Assert.equal(Services.io.getProtocolFlags(pH.scheme), defaultProtocolFlags);
// Whip through some of the ports to check we get the right results.
// NEWS allows connecting to any port.
for (let i = 0; i < 1024; ++i) {
Assert.ok(pH.allowPort(i, ""));
}
// Check we get a URI when we ask for one
var uri = Services.io.newURI(protocols[part].urlSpec);
uri.QueryInterface(Ci.nsINntpUrl);
Assert.equal(uri.spec, protocols[part].urlSpec);
}
}