1999-06-14 12:45:27 +04:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
|
|
|
|
*
|
1999-11-06 06:40:37 +03:00
|
|
|
* The contents of this file are subject to the Netscape 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/NPL/
|
1999-06-14 12:45:27 +04:00
|
|
|
*
|
1999-11-06 06:40:37 +03:00
|
|
|
* 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.
|
1999-06-14 12:45:27 +04:00
|
|
|
*
|
1999-11-06 06:40:37 +03:00
|
|
|
* The Original Code is mozilla.org code.
|
|
|
|
*
|
|
|
|
* The Initial Developer of the Original Code is Netscape
|
1999-06-14 12:45:27 +04:00
|
|
|
* Communications Corporation. Portions created by Netscape are
|
1999-11-06 06:40:37 +03:00
|
|
|
* Copyright (C) 1998 Netscape Communications Corporation. All
|
|
|
|
* Rights Reserved.
|
|
|
|
*
|
|
|
|
* Contributor(s):
|
1999-06-14 12:45:27 +04:00
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
A test file to check default URL parsing.
|
1999-11-03 12:33:03 +03:00
|
|
|
-Gagan Saksena 03/25/99
|
1999-06-14 12:45:27 +04:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
#include "plstr.h"
|
1999-06-15 04:34:37 +04:00
|
|
|
#include "nsIServiceManager.h"
|
|
|
|
#include "nsIIOService.h"
|
1999-06-14 12:45:27 +04:00
|
|
|
#include "nsIURL.h"
|
|
|
|
#include "nsCOMPtr.h"
|
1999-06-15 04:34:37 +04:00
|
|
|
#include "iostream.h"
|
1999-07-23 01:14:51 +04:00
|
|
|
#include "nsXPIDLString.h"
|
1999-06-14 12:45:27 +04:00
|
|
|
|
|
|
|
// Define CIDs...
|
1999-06-15 04:34:37 +04:00
|
|
|
static NS_DEFINE_CID(kIOServiceCID, NS_IOSERVICE_CID);
|
1999-11-03 12:33:03 +03:00
|
|
|
static NS_DEFINE_CID(kStdURLCID, NS_STANDARDURL_CID);
|
1999-06-14 12:45:27 +04:00
|
|
|
|
1999-07-10 09:00:23 +04:00
|
|
|
int writeout(const char* i_pURL, PRBool bUseStd =PR_TRUE)
|
1999-06-14 12:45:27 +04:00
|
|
|
{
|
1999-06-15 04:34:37 +04:00
|
|
|
if (i_pURL)
|
|
|
|
{
|
1999-11-03 12:33:03 +03:00
|
|
|
cout << "Analyzing " << i_pURL << endl;
|
1999-06-15 04:34:37 +04:00
|
|
|
|
1999-11-03 12:33:03 +03:00
|
|
|
nsCOMPtr<nsIURI> pURL;
|
1999-06-15 04:34:37 +04:00
|
|
|
nsresult result = NS_OK;
|
1999-11-03 12:33:03 +03:00
|
|
|
|
|
|
|
if (bUseStd)
|
|
|
|
{
|
|
|
|
nsIURI* url;
|
|
|
|
result = nsComponentManager::CreateInstance(kStdURLCID, nsnull,
|
|
|
|
nsCOMTypeInfo<nsIURI>::GetIID(), (void**)&url);
|
|
|
|
if (NS_FAILED(result))
|
|
|
|
{
|
|
|
|
cout << "CreateInstance failed" << endl;
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
pURL = url;
|
|
|
|
pURL->SetSpec((char*)i_pURL);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
NS_WITH_SERVICE(nsIIOService, pService, kIOServiceCID, &result);
|
|
|
|
if (NS_FAILED(result))
|
|
|
|
{
|
|
|
|
cout << "Service failed!" << endl;
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
result = pService->NewURI(i_pURL, nsnull, getter_AddRefs(pURL));
|
|
|
|
}
|
|
|
|
if (NS_SUCCEEDED(result))
|
|
|
|
{
|
1999-11-18 09:19:01 +03:00
|
|
|
nsCOMPtr<nsIURL> tURL = do_QueryInterface(pURL);
|
1999-11-03 12:33:03 +03:00
|
|
|
nsXPIDLCString temp;
|
|
|
|
PRInt32 port;
|
1999-11-18 09:19:01 +03:00
|
|
|
tURL->GetScheme(getter_Copies(temp));
|
1999-11-03 12:33:03 +03:00
|
|
|
cout << "Got " << (temp ? (const char*)temp : "") << ',';
|
1999-11-18 09:19:01 +03:00
|
|
|
tURL->GetPreHost(getter_Copies(temp));
|
1999-11-03 12:33:03 +03:00
|
|
|
cout << (temp ? (const char*)temp : "") << ',';
|
1999-11-18 09:19:01 +03:00
|
|
|
tURL->GetHost(getter_Copies(temp));
|
1999-11-03 12:33:03 +03:00
|
|
|
cout << (temp ? (const char*)temp : "") << ',';
|
1999-11-18 09:19:01 +03:00
|
|
|
tURL->GetPort(&port);
|
1999-11-03 12:33:03 +03:00
|
|
|
cout << port << ',';
|
1999-11-18 09:19:01 +03:00
|
|
|
tURL->GetQuery(getter_Copies(temp));
|
|
|
|
cout << (temp ? (const char*)temp : "") << ',';
|
|
|
|
tURL->GetPath(getter_Copies(temp));
|
1999-11-03 12:33:03 +03:00
|
|
|
cout << (temp ? (const char*)temp : "") << endl;
|
1999-11-18 09:19:01 +03:00
|
|
|
|
1999-11-03 12:33:03 +03:00
|
|
|
} else {
|
|
|
|
cout << "Can not create URL" << endl;
|
|
|
|
}
|
1999-07-03 13:53:09 +04:00
|
|
|
return NS_OK;
|
1999-06-14 12:45:27 +04:00
|
|
|
}
|
1999-06-15 04:34:37 +04:00
|
|
|
return -1;
|
1999-06-14 12:45:27 +04:00
|
|
|
}
|
|
|
|
|
1999-07-23 01:14:51 +04:00
|
|
|
/* construct a url and print out its five elements separated by commas */
|
1999-07-10 09:00:23 +04:00
|
|
|
nsresult testURL(const char* i_pURL, PRBool bUseStd=PR_TRUE)
|
1999-06-14 12:45:27 +04:00
|
|
|
{
|
1999-07-23 01:14:51 +04:00
|
|
|
|
1999-11-03 12:33:03 +03:00
|
|
|
if (i_pURL)
|
|
|
|
return writeout(i_pURL, bUseStd);
|
1999-06-15 04:34:37 +04:00
|
|
|
|
1999-11-03 12:33:03 +03:00
|
|
|
/*
|
|
|
|
If you add a test case then make sure you also add the expected
|
|
|
|
result in the resultset as well.
|
|
|
|
*/
|
1999-06-15 04:34:37 +04:00
|
|
|
|
1999-11-18 09:19:01 +03:00
|
|
|
const int tests = 13;
|
1999-07-23 01:14:51 +04:00
|
|
|
const char* url[tests] =
|
1999-11-03 12:33:03 +03:00
|
|
|
{
|
|
|
|
"http://username:password@hostname.com:80/pathname/./more/stuff/../path",
|
|
|
|
"username@host:8080/path",
|
|
|
|
"http://gagan/",
|
|
|
|
"scheme:host/netlib",
|
|
|
|
"", //empty string
|
|
|
|
"mailbox:///foo", // No host specified path should be /foo
|
|
|
|
"scheme:user@hostname.edu:80/pathname", //this is always http:user and not user:pass
|
|
|
|
"http://username:password@hostname:80/pathname",
|
|
|
|
"resource:/pathname",
|
|
|
|
"ftp://uname%here.com:pwd@there.com/aPath/a.html",
|
|
|
|
"http://www.inf.bme.hu?foo=bar",
|
1999-11-18 09:19:01 +03:00
|
|
|
"http://test.com/aPath/a.html#/1/2",
|
|
|
|
"http://user:pass@ipaddres:2/get?foo/something"
|
1999-11-03 12:33:03 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
const char* resultset[tests] =
|
|
|
|
{
|
1999-11-18 09:19:01 +03:00
|
|
|
"http,username:password,hostname.com,80,,/pathname/more/path",
|
|
|
|
",username,host,8080,,/path",
|
|
|
|
"http,,gagan,-1,,/",
|
|
|
|
"scheme,,host,-1,,/netlib",
|
|
|
|
",,,-1,,/",
|
|
|
|
"mailbox,,,-1,,/foo",
|
|
|
|
"scheme,user,hostname.edu,80,,/pathname",
|
|
|
|
"http,username:password,hostname,80,,/pathname",
|
|
|
|
"resource,,,-1,,/pathname",
|
|
|
|
"ftp,uname%here.com:pwd,there.com,-1,,/aPath/a.html",
|
|
|
|
"http,,www.inf.bme.hu,-1,,/?foo=bar",
|
|
|
|
"http,,test.com,-1,,/aPath/a.html#/1/2",
|
|
|
|
"http,user:pass,ipaddres,2,foo/something,/get?foo/something"
|
1999-11-03 12:33:03 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
// These tests will fail to create a URI from NS_NewURI calls...
|
|
|
|
// because of a missing scheme: in front. This set assumes
|
|
|
|
// an only working http handler is available. When we switch on mail these
|
1999-07-23 01:14:51 +04:00
|
|
|
// results will change!
|
1999-11-03 12:33:03 +03:00
|
|
|
PRBool failWithURI[tests] =
|
|
|
|
{
|
|
|
|
PR_FALSE,
|
|
|
|
PR_TRUE,
|
|
|
|
PR_FALSE,
|
|
|
|
PR_TRUE,
|
|
|
|
PR_TRUE,
|
|
|
|
PR_FALSE, // we now have mailbox:
|
|
|
|
PR_TRUE,
|
|
|
|
PR_FALSE,
|
|
|
|
PR_FALSE,
|
|
|
|
PR_FALSE,
|
1999-11-18 09:19:01 +03:00
|
|
|
PR_FALSE,
|
1999-09-18 15:12:45 +04:00
|
|
|
PR_FALSE
|
1999-11-03 12:33:03 +03:00
|
|
|
};
|
|
|
|
nsresult stat;
|
|
|
|
for (int i = 0; i< tests; ++i)
|
|
|
|
{
|
|
|
|
cout << "--------------------" << endl;
|
|
|
|
if (!bUseStd)
|
|
|
|
cout << "Should" << (failWithURI[i] ? " not " : " ")
|
|
|
|
<< "create URL" << endl;
|
|
|
|
stat = writeout(url[i], bUseStd);
|
|
|
|
if (NS_FAILED(stat))
|
|
|
|
return stat;
|
|
|
|
if (bUseStd || !failWithURI[i])
|
|
|
|
cout << "Expect " << resultset[i] << endl << endl;
|
|
|
|
}
|
|
|
|
return 0;
|
1999-06-15 04:34:37 +04:00
|
|
|
}
|
|
|
|
|
1999-07-23 01:14:51 +04:00
|
|
|
int makeAbsTest(const char* i_BaseURI, const char* relativePortion)
|
|
|
|
{
|
|
|
|
if (!i_BaseURI)
|
|
|
|
return -1;
|
|
|
|
|
1999-11-18 09:19:01 +03:00
|
|
|
// build up the base URL
|
|
|
|
nsCOMPtr<nsIURI> baseURL;
|
1999-11-03 12:33:03 +03:00
|
|
|
nsresult status = nsComponentManager::CreateInstance(kStdURLCID, nsnull,
|
1999-11-18 09:19:01 +03:00
|
|
|
nsCOMTypeInfo<nsIURI>::GetIID(), getter_AddRefs(baseURL));
|
1999-11-03 12:33:03 +03:00
|
|
|
if (NS_FAILED(status))
|
|
|
|
{
|
|
|
|
cout << "CreateInstance failed" << endl;
|
|
|
|
return status;
|
|
|
|
}
|
|
|
|
status = baseURL->SetSpec((char*)i_BaseURI);
|
1999-07-23 01:14:51 +04:00
|
|
|
if (NS_FAILED(status)) return status;
|
|
|
|
|
1999-11-18 09:19:01 +03:00
|
|
|
|
|
|
|
// get the new spec
|
|
|
|
nsXPIDLCString newURL;
|
|
|
|
status = baseURL->Resolve(relativePortion, getter_Copies(newURL));
|
|
|
|
if (NS_FAILED(status)) return status;
|
1999-07-23 01:14:51 +04:00
|
|
|
|
|
|
|
nsXPIDLCString temp;
|
|
|
|
baseURL->GetSpec(getter_Copies(temp));
|
|
|
|
|
|
|
|
cout << "Analyzing " << temp << endl;
|
|
|
|
cout << "With " << relativePortion << endl;
|
|
|
|
|
1999-11-18 09:19:01 +03:00
|
|
|
cout << "Got " << newURL << endl;
|
1999-07-23 01:14:51 +04:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int doMakeAbsTest(const char* i_URL = 0, const char* i_relativePortion=0)
|
|
|
|
{
|
|
|
|
if (i_URL && i_relativePortion)
|
|
|
|
{
|
|
|
|
return makeAbsTest(i_URL, i_relativePortion);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Run standard tests. These tests are based on the ones described in
|
|
|
|
// rfc1808
|
|
|
|
/* Section 5.1. Normal Examples
|
|
|
|
|
|
|
|
g:h = <URL:g:h>
|
|
|
|
g = <URL:http://a/b/c/g>
|
|
|
|
./g = <URL:http://a/b/c/g>
|
|
|
|
g/ = <URL:http://a/b/c/g/>
|
|
|
|
/g = <URL:http://a/g>
|
|
|
|
//g = <URL:http://g>
|
|
|
|
?y = <URL:http://a/b/c/d;p?y>
|
|
|
|
g?y = <URL:http://a/b/c/g?y>
|
|
|
|
g?y/./x = <URL:http://a/b/c/g?y/./x>
|
|
|
|
#s = <URL:http://a/b/c/d;p?q#s>
|
|
|
|
g#s = <URL:http://a/b/c/g#s>
|
|
|
|
g#s/./x = <URL:http://a/b/c/g#s/./x>
|
|
|
|
g?y#s = <URL:http://a/b/c/g?y#s>
|
|
|
|
;x = <URL:http://a/b/c/d;x>
|
|
|
|
g;x = <URL:http://a/b/c/g;x>
|
|
|
|
g;x?y#s = <URL:http://a/b/c/g;x?y#s>
|
|
|
|
. = <URL:http://a/b/c/>
|
|
|
|
./ = <URL:http://a/b/c/>
|
|
|
|
.. = <URL:http://a/b/>
|
|
|
|
../ = <URL:http://a/b/>
|
|
|
|
../g = <URL:http://a/b/g>
|
|
|
|
../.. = <URL:http://a/>
|
|
|
|
../../ = <URL:http://a/>
|
|
|
|
../../g = <URL:http://a/g>
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
const char baseURL[] = "http://a/b/c/d;p?q#f";
|
|
|
|
|
1999-09-22 02:27:27 +04:00
|
|
|
struct test {
|
|
|
|
const char* relativeURL;
|
|
|
|
const char* expectedResult;
|
1999-07-23 01:14:51 +04:00
|
|
|
};
|
|
|
|
|
1999-09-22 02:27:27 +04:00
|
|
|
test tests[] = {
|
|
|
|
// Tests from rfc1808, section 5.1
|
|
|
|
{ "g:h", "g:h" },
|
|
|
|
{ "g", "http://a/b/c/g" },
|
|
|
|
{ "./g", "http://a/b/c/g" },
|
|
|
|
{ "g/", "http://a/b/c/g/" },
|
|
|
|
{ "/g", "http://a/g" },
|
|
|
|
{ "//g", "http://g" },
|
|
|
|
{ "?y", "http://a/b/c/d;p?y" },
|
|
|
|
{ "g?y", "http://a/b/c/g?y" },
|
|
|
|
{ "g?y/./x", "http://a/b/c/g?y/./x" },
|
|
|
|
{ "#s", "http://a/b/c/d;p?q#s" },
|
|
|
|
{ "g#s", "http://a/b/c/g#s" },
|
|
|
|
{ "g#s/./x", "http://a/b/c/g#s/./x" },
|
|
|
|
{ "g?y#s", "http://a/b/c/g?y#s" },
|
|
|
|
{ ";x", "http://a/b/c/d;x" },
|
|
|
|
{ "g;x", "http://a/b/c/g;x" },
|
|
|
|
{ "g;x?y#s", "http://a/b/c/g;x?y#s" },
|
|
|
|
{ ".", "http://a/b/c/" },
|
|
|
|
{ "./", "http://a/b/c/" },
|
|
|
|
{ "..", "http://a/b/" },
|
|
|
|
{ "../", "http://a/b/" },
|
|
|
|
{ "../g", "http://a/b/g" },
|
|
|
|
{ "../..", "http://a/" },
|
|
|
|
{ "../../", "http://a/" },
|
|
|
|
{ "../../g", "http://a/g" },
|
|
|
|
|
|
|
|
// Our additional tests...
|
|
|
|
{ "#my::anchor", "http://a/b/c/d;p?q#my::anchor" },
|
1999-11-18 09:19:01 +03:00
|
|
|
{ "get?baseRef=viewcert.jpg", "http://a/b/c/get?baseRef=viewcert.jpg" },
|
1999-09-22 02:27:27 +04:00
|
|
|
|
|
|
|
// Make sure relative query's work right even if the query
|
|
|
|
// string contains absolute urls or other junk.
|
|
|
|
{ "?http://foo", "http://a/b/c/d;p?http://foo" },
|
|
|
|
{ "g?http://foo", "http://a/b/c/g?http://foo" },
|
|
|
|
{ "g/h?http://foo", "http://a/b/c/g/h?http://foo" },
|
|
|
|
{ "g/h/../H?http://foo","http://a/b/c/g/H?http://foo" },
|
|
|
|
{ "g/h/../H?http://foo?baz", "http://a/b/c/g/H?http://foo?baz" },
|
|
|
|
{ "g/h/../H?http://foo;baz", "http://a/b/c/g/H?http://foo;baz" },
|
|
|
|
{ "g/h/../H?http://foo#bar", "http://a/b/c/g/H?http://foo#bar" },
|
|
|
|
{ "g/h/../H;baz?http://foo", "http://a/b/c/g/H;baz?http://foo" },
|
|
|
|
{ "g/h/../H;baz?http://foo#bar", "http://a/b/c/g/H;baz?http://foo#bar" },
|
1999-11-03 12:33:03 +03:00
|
|
|
{ "g/h/../H;baz?C:\\temp", "http://a/b/c/g/H;baz?C:\\temp" },
|
1999-07-23 01:14:51 +04:00
|
|
|
};
|
|
|
|
|
1999-09-22 02:27:27 +04:00
|
|
|
const int numTests = sizeof(tests) / sizeof(tests[0]);
|
|
|
|
|
|
|
|
for (int i = 0 ; i<numTests ; ++i)
|
1999-07-23 01:14:51 +04:00
|
|
|
{
|
1999-09-22 02:27:27 +04:00
|
|
|
makeAbsTest(baseURL, tests[i].relativeURL);
|
|
|
|
cout << "Expect " << tests[i].expectedResult << endl << endl;
|
1999-07-23 01:14:51 +04:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
1999-06-22 22:24:02 +04:00
|
|
|
nsresult NS_AutoregisterComponents()
|
|
|
|
{
|
|
|
|
nsresult rv = nsComponentManager::AutoRegister(nsIComponentManager::NS_Startup, NULL /* default */);
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
1999-07-23 01:14:51 +04:00
|
|
|
void printusage(void)
|
|
|
|
{
|
|
|
|
printf("urltest [-std] [-all] <URL> [-abs <relative>]\n");
|
|
|
|
printf("\n");
|
|
|
|
printf(" -std : Generate results using nsStdURL. \n");
|
|
|
|
printf(" <URL> : The string representing the URL. \n");
|
|
|
|
printf(" -all : Run all standard tests. Ignores <URL> then. \n");
|
|
|
|
printf(" -abs : Make an absolute URL from the base (<URI>) and the\n");
|
|
|
|
printf(" relative path specified. Can be used with -all. Implies -std.\n");
|
|
|
|
}
|
|
|
|
|
1999-06-15 04:34:37 +04:00
|
|
|
int main(int argc, char **argv)
|
|
|
|
{
|
1999-10-25 06:22:30 +04:00
|
|
|
int rv = -1;
|
1999-06-15 04:34:37 +04:00
|
|
|
nsresult result = NS_OK;
|
|
|
|
|
|
|
|
if (argc < 2) {
|
1999-07-23 01:14:51 +04:00
|
|
|
printusage();
|
1999-06-15 04:34:37 +04:00
|
|
|
return 0;
|
1999-06-14 12:45:27 +04:00
|
|
|
}
|
1999-06-15 04:34:37 +04:00
|
|
|
|
1999-06-22 22:24:02 +04:00
|
|
|
result = NS_AutoregisterComponents();
|
1999-11-03 12:33:03 +03:00
|
|
|
if (NS_FAILED(result)) return result;
|
1999-07-23 01:14:51 +04:00
|
|
|
|
1999-11-03 12:33:03 +03:00
|
|
|
cout << "------------------" << endl << endl; // end of all messages from register components...
|
1999-07-23 01:14:51 +04:00
|
|
|
|
1999-11-03 12:33:03 +03:00
|
|
|
PRBool bStdTest= PR_FALSE;
|
|
|
|
PRBool bTestAll= PR_FALSE;
|
1999-07-23 01:14:51 +04:00
|
|
|
PRBool bMakeAbs= PR_FALSE;
|
|
|
|
char* relativePath = 0;
|
|
|
|
char* url = 0;
|
1999-07-10 09:00:23 +04:00
|
|
|
for (int i=1; i<argc; i++) {
|
|
|
|
if (PL_strcasecmp(argv[i], "-std") == 0)
|
1999-11-03 12:33:03 +03:00
|
|
|
{
|
|
|
|
bStdTest = PR_TRUE;
|
1999-07-23 01:14:51 +04:00
|
|
|
}
|
|
|
|
else if (PL_strcasecmp(argv[i], "-all") == 0)
|
1999-11-03 12:33:03 +03:00
|
|
|
{
|
|
|
|
bTestAll = PR_TRUE;
|
1999-07-23 01:14:51 +04:00
|
|
|
}
|
|
|
|
else if (PL_strcasecmp(argv[i], "-abs") == 0)
|
|
|
|
{
|
|
|
|
if (i+1 >= argc)
|
|
|
|
{
|
|
|
|
printusage();
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
relativePath = argv[i+1];
|
|
|
|
bMakeAbs = PR_TRUE;
|
|
|
|
i++;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
url = argv[i];
|
|
|
|
}
|
1999-11-03 12:33:03 +03:00
|
|
|
}
|
1999-10-25 06:22:30 +04:00
|
|
|
PRTime startTime = PR_Now();
|
1999-07-23 01:14:51 +04:00
|
|
|
if (bMakeAbs)
|
|
|
|
{
|
1999-10-25 06:22:30 +04:00
|
|
|
rv = bTestAll ? doMakeAbsTest() : doMakeAbsTest(url, relativePath);
|
1999-07-23 01:14:51 +04:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
1999-11-03 12:33:03 +03:00
|
|
|
rv = bTestAll ? testURL(0, bStdTest) : testURL(url, bStdTest);
|
1999-10-25 06:22:30 +04:00
|
|
|
}
|
|
|
|
if (bTestAll)
|
|
|
|
{
|
|
|
|
PRTime endTime = PR_Now();
|
|
|
|
printf("Elapsed time: %d micros.\n", (PRInt32)
|
|
|
|
(endTime - startTime));
|
1999-07-23 01:14:51 +04:00
|
|
|
}
|
1999-10-25 06:22:30 +04:00
|
|
|
return rv;
|
1999-06-14 12:45:27 +04:00
|
|
|
}
|