RetroZilla/embedding/qa/jstests/networking/nsIIOService.html
2015-10-20 23:03:22 -04:00

281 lines
5.9 KiB
HTML

<!-- ***** BEGIN LICENSE BLOCK *****
- Version: MPL 1.1/GPL 2.0/LGPL 2.1
-
- The contents of this file are subject to the Mozilla Public License Version
- 1.1 (the "License"); you may not use this file except in compliance with
- the License. You may obtain a copy of the License at
- http://www.mozilla.org/MPL/
-
- Software distributed under the License is distributed on an "AS IS" basis,
- WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
- for the specific language governing rights and limitations under the
- License.
-
- The Original Code is mozilla.org code.
-
- The Initial Developer of the Original Code is
- Netscape Communications Corporation.
- Portions created by the Initial Developer are Copyright (C) 1998
- the Initial Developer. All Rights Reserved.
-
- Contributor(s):
- Ashish Bhatt <ashishbhatt@netscape.com>
-
- Alternatively, the contents of this file may be used under the terms of
- either the GNU General Public License Version 2 or later (the "GPL"), or
- the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
- in which case the provisions of the GPL or the LGPL are applicable instead
- of those above. If you wish to allow use of your version of this file only
- under the terms of either the GPL or the LGPL, and not to allow others to
- use your version of this file under the terms of the MPL, indicate your
- decision by deleting the provisions above and replace them with the notice
- and other provisions required by the LGPL or the GPL. If you do not delete
- the provisions above, a recipient may use your version of this file under
- the terms of any one of the MPL, the GPL or the LGPL.
-
- ***** END LICENSE BLOCK ***** -->
<html>
<title>nsIIOService Tets case</title>
<head>
<script type="text/javascript" src="http://www.mozilla.org/quality/embed/jstests/bridge.js"></script>
<script type="text/javascript" src="nsIIOService.js"></script>
<script type="text/javascript">
var buffer ;
var scheme = new Array("http","https", "ftp","file","javascript","data","about","gopher","chrome", "jar");
var ioservice = new IOService();
function WritePassFail()
{
if (ioservice.success)
{
buffer += "<td>"+ ioservice.returnvalue +"</td>" ;
buffer += "<td>Pass</td>"
}
else
{
buffer += "<td>" +"Exception: " + ioservice.exception + "</td>" ;
buffer += "<td bgcolor='#FF0000'>Fail</td>"
}
buffer += "</tr>"
ioservice.exception= null;
}
function WriteTableHeader(name,params)
{
buffer += "<tr>" ;
buffer += "<td>" + name + "</td>" ;
buffer += "<td>" + params + "</td>" ;
}
function WriteHeader()
{
buffer = "<b>Results for <a href='http://lxr.mozilla.org/seamonkey/source/netwerk/base/public/nsIIOService.idl'>nsIIOService :</a></b><br><br>"
buffer += "<table border cols=4 width='70%'>"
buffer += "<tr>"
buffer += "<td><b>Property/Method</b></td>"
buffer += "<td><b>Params</b></td>"
buffer += "<td><b>Output/Bug/Error</b></td>"
buffer += "<td><b>Result</b></td>"
buffer += "</tr>"
}
function WriteFooter()
{
buffer += "</table>"
}
function RunAllTests()
{
WriteHeader();
getProtocolHandler();
getProtocolFlags();
newURI();
newFileURI();
newChannelFromURI();
newChannel();
Getoffline();
Setoffline();
allowPort();
extractScheme();
WriteFooter();
if (isRunningStandalone())
{
document.clear();
document.write(buffer);
}
else
WriteResults(buffer);
}
function getProtocolHandler()
{
for (i=0;i<scheme.length;i++)
{
ioservice.getProtocolHandler(scheme[i]);
if (i==0)
WriteTableHeader("getProtocolHandler",scheme[i]);
else
WriteTableHeader("",scheme[i]);
WritePassFail();
}
}
function getProtocolFlags()
{
for (i=0;i<scheme.length;i++)
{
ioservice.getProtocolFlags(scheme[i]);
if (i==0)
WriteTableHeader("getProtocolFlags",scheme[i]);
else
WriteTableHeader("",scheme[i]);
WritePassFail();
}
}
function newURI()
{
var url = "http://slip.mcom.com" ;
ioservice.newURI(url,null,null);
WriteTableHeader("newURI","Spec,OriginCharset,BaseURI");
WritePassFail();
}
function newFileURI()
{
netscape.security.PrivilegeManager.enablePrivilege("UniversalBrowserRead");
netscape.security.PrivilegeManager.enablePrivilege("UniversalXPConnect");
var phandler = ioservice.service.getProtocolHandler("file").QueryInterface(Components.interfaces.nsIFileProtocolHandler);
var file = phandler.getFileFromURLSpec("file:///c:/");
ioservice.newFileURI(file);
WriteTableHeader("newFileURI","nsIFile");
WritePassFail();
}
function newChannelFromURI()
{
var url = "http://slip.mcom.com" ;
ioservice.newURI(url,null,null);
ioservice.newChannelFromURI(ioservice.returnvalue);
WriteTableHeader("newChannelFromURI","URI");
WritePassFail();
}
function newChannel()
{
var url = "http://slip.mcom.com" ;
ioservice.newChannel(url,null,null);
WriteTableHeader("newChannel","Spec,OriginCharset,BaseURI");
WritePassFail();
}
function Getoffline()
{
ioservice.Getoffline();
WriteTableHeader("offline(get)","");
WritePassFail();
}
function Setoffline()
{
ioservice.Setoffline(true);
WriteTableHeader("offline(set)","true");
WritePassFail();
}
function allowPort()
{
var port ;
var scheme ;
ioservice.allowPort(90, "http");
WriteTableHeader("allowPort","Port, Scheme");
WritePassFail();
}
function extractScheme()
{
var url = new Array("http://mozilla.org",
"https://ec.aoltw.net",
"ftp://ftp.mozilla.org",
"file://c:/",
"javascript:alert('e');",
"data:",
"about:",
"ghoper://",
"chrome://communicator/skin/communicator.css",
"jar://resource");
for (i=0;i<url.length;i++)
{
ioservice.extractScheme(url[i]);
if (i==0)
WriteTableHeader("extractScheme",url[i]);
else
WriteTableHeader("",url[i]);
WritePassFail();
}
}
</script>
</head>
<body>
<script type="text/javascript">
RunAllTests();
</script>
</body>
</html>