summaryrefslogtreecommitdiffstats
path: root/net/data/proxy_resolver_v8_unittest/pac_library_unittest.js
diff options
context:
space:
mode:
authorericroman@google.com <ericroman@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2009-02-23 19:10:45 +0000
committerericroman@google.com <ericroman@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2009-02-23 19:10:45 +0000
commit943c808476fc4ccea2175a4f76bc05346c53c209 (patch)
treeae0c1fe78fa44eeb238770a6051fc639885572f8 /net/data/proxy_resolver_v8_unittest/pac_library_unittest.js
parent45bdf86341670d95573acbc699f2d2998a25cf1d (diff)
downloadchromium_src-943c808476fc4ccea2175a4f76bc05346c53c209.zip
chromium_src-943c808476fc4ccea2175a4f76bc05346c53c209.tar.gz
chromium_src-943c808476fc4ccea2175a4f76bc05346c53c209.tar.bz2
Add ProxyResolverV8 class.darin@chromium.org is the original author of 'proxy_resolver_v8.cc' and 'proxy_resolver_script.h'.
Review URL: http://codereview.chromium.org/21391 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@10199 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/data/proxy_resolver_v8_unittest/pac_library_unittest.js')
-rw-r--r--net/data/proxy_resolver_v8_unittest/pac_library_unittest.js130
1 files changed, 130 insertions, 0 deletions
diff --git a/net/data/proxy_resolver_v8_unittest/pac_library_unittest.js b/net/data/proxy_resolver_v8_unittest/pac_library_unittest.js
new file mode 100644
index 0000000..d460b99
--- /dev/null
+++ b/net/data/proxy_resolver_v8_unittest/pac_library_unittest.js
@@ -0,0 +1,130 @@
+// This should output "PROXY success:80" if all the tests pass.
+// Otherwise it will output "PROXY failure:<num-failures>".
+//
+// This aims to unit-test the PAC library functions, which are
+// exposed in the PAC's execution environment. (Namely, dnsDomainLevels,
+// timeRange, etc.)
+
+function FindProxyForURL(url, host) {
+ var numTestsFailed = 0;
+
+ // Run all the tests
+ for (var test in Tests) {
+ var t = new TestContext(test);
+
+ // Run the test.
+ Tests[test](t);
+
+ if (t.failed()) {
+ numTestsFailed++;
+ }
+ }
+
+ if (numTestsFailed == 0) {
+ return "PROXY success:80";
+ }
+ return "PROXY failure:" + numTestsFailed;
+}
+
+// --------------------------
+// Tests
+// --------------------------
+
+var Tests = {};
+
+Tests.testDnsDomainIs = function(t) {
+ t.expectTrue(dnsDomainIs("google.com", ".com"));
+ t.expectTrue(dnsDomainIs("google.co.uk", ".co.uk"));
+ t.expectFalse(dnsDomainIs("google.com", ".co.uk"));
+};
+
+Tests.testDnsDomainLevels = function(t) {
+ t.expectEquals(0, dnsDomainLevels("www"));
+ t.expectEquals(2, dnsDomainLevels("www.google.com"));
+ t.expectEquals(3, dnsDomainLevels("192.168.1.1"));
+};
+
+Tests.testIsInNet = function(t) {
+ // TODO(eroman):
+
+ // t.expectTrue(
+ // isInNet("192.89.132.25", "192.89.132.25", "255.255.255.255"));
+ // t.expectFalse(
+ // isInNet("193.89.132.25", "192.89.132.25", "255.255.255.255"));
+ //
+ // t.expectTrue(isInNet("192.89.132.25", "192.89.0.0", "255.255.0.0"));
+ // t.expectFalse(isInNet("193.89.132.25", "192.89.0.0", "255.255.0.0"));
+};
+
+Tests.testIsPlainHostName = function(t) {
+ t.expectTrue(isPlainHostName("google"));
+ t.expectFalse(isPlainHostName("google.com"));
+};
+
+Tests.testLocalHostOrDomainIs = function(t) {
+ t.expectTrue(localHostOrDomainIs("www.google.com", "www.google.com"));
+ t.expectTrue(localHostOrDomainIs("www", "www.google.com"));
+ t.expectFalse(localHostOrDomainIs("maps.google.com", "www.google.com"));
+};
+
+Tests.testShExpMatch = function(t) {
+ // TODO(eroman):
+
+ //t.expectTrue(shExpMatch("http://maps.google.com/blah/foo/moreblah.jpg",
+ // ".*/foo/.*jpg"));
+
+ //t.expectFalse(shExpMatch("http://maps.google.com/blah/foo/moreblah.jpg",
+ // ".*/foo/.*.html"));
+};
+
+Tests.testWeekdayRange = function(t) {
+ // TODO(eroman)
+};
+
+Tests.testDateRange = function(t) {
+ // TODO(eroman)
+};
+
+Tests.testTimeRange = function(t) {
+ // TODO(eroman)
+};
+
+// --------------------------
+// Helpers
+// --------------------------
+
+// |name| is the name of the test being executed, it will be used when logging
+// errors.
+function TestContext(name) {
+ this.numFailures_ = 0;
+ this.name_ = name;
+};
+
+TestContext.prototype.failed = function() {
+ return this.numFailures_ != 0;
+};
+
+TestContext.prototype.expectEquals = function(expectation, actual) {
+ if (!(expectation === actual)) {
+ this.numFailures_++;
+ this.log("FAIL: expected: " + expectation + ", actual: " + actual);
+ }
+};
+
+TestContext.prototype.expectTrue = function(x) {
+ this.expectEquals(true, x);
+};
+
+TestContext.prototype.expectFalse = function(x) {
+ this.expectEquals(false, x);
+};
+
+TestContext.prototype.log = function(x) {
+ // Prefix with the test name that generated the log.
+ try {
+ alert(this.name_ + ": " + x);
+ } catch(e) {
+ // In case alert() is not defined.
+ }
+};
+