1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
|
// This is a script to test KPAC.
// To use it: set this script as proxy config file and run
// dcop kded proxyscout proxyForURL http://blah (URL doesn't matter)
// The answer must be http://<your IP>/<test results>
// If you see "failed" in the output, lookup the test name in the comments
// below and let me now at <malte@kde.org> or try to fix it yourself
function FindProxyForURL( url, host )
{
var result = "PROXY http://" + myIPAddress();
// plainhost1
if ( !isPlainHostName( "foo" ) )
result += "/plainhost1=failed"
// plainhost2
if ( isPlainHostName( "foo.bar" ) )
result += "/plainhost2=failed";
// dnsdomain1
if ( !dnsDomainIs( "foo.bar", "bar" ) )
result += "/dnsdomain1=failed";
// dnsdomain2
if ( dnsDomainIs( "foo.baz", "bar" ) )
result += "/dnsdomain2=failed";
// localordomain1
if ( !localHostOrDomainIs( "foo", "bar" ) )
result += "/localordomain1=failed";
// localordomain2
if ( !localHostOrDomainIs( "foo.bar", "foo.bar" ) )
result += "/localordomain2=failed";
// localordomain3
if ( !localHostOrDomainIs( "foo", "foo.baz" ) )
result += "/localordomain3=failed";
// localordomain4
if ( localHostOrDomainIs( "foo.bar", "foo.baz" ) )
result += "/localordomain4=failed";
// isresolvable1
// on failure make sure you can resolve www.kde.org correctly :-)
if ( !isResolvable( "www.kde.org" ) ) result += "/isresolvable1=failed";
// isresolvable2
// on failure make sure dummy.invalid doesn't resolve :-)
if ( isResolvable( "dummy.invalid" ) ) result += "/isresolvable2=failed";
// isinnet1
// on failure check if localhost resolves to 127.0.0.1 as it should
if ( isInNet( "localhost", "1.2.3.4", "255.0.0.0" ) )
result += "/isinnet1=failed";
// isinnet2
if ( isInNet( "1.2.3.4", "1.2.3.5", "255.255.255.255" ) )
result += "/isinnet2=failed";
// isinnet3
if ( !isInNet( "1.2.3.4", "1.2.3.5", "255.255.255.0" ) )
result += "/isinnet3=failed";
// dnsresolve1
// on failure check if localhost resolves to 127.0.0.1 as it should
if ( dnsResolve( "localhost" ) != "127.0.0.1" )
result += "/dnsresolve1=failed";
// dnslevels1
if ( dnsDomainLevels( "foo" ) != 0 )
result += "/dnslevels1=failed";
// dnslevels2
if ( dnsDomainLevels( "foo.bar" ) != 1 )
result += "/dnslevels2=failed";
// dnslevels3
if ( dnsDomainLevels( "foo.bar.baz" ) != 2 )
result += "/dnslevels3=failed";
// shexp1
if ( !shExpMatch( "foobar", "foobar" ) )
result += "/shexp1=failed";
// shexp2
if ( shExpMatch( "FoObAr", "foobar" ) )
result += "/shexp2=failed";
// shexp3
if ( !shExpMatch( "Foobar", "?oobar" ) )
result += "/shexp3=failed";
// shexp4
if ( !shExpMatch( "FoObAr", "*b*" ) )
result += "/shexp4=failed";
// shexp5
if ( shExpMatch( "FoObAr", "*x*" ) )
result += "/shexp5=failed";
// shexp6
if ( shExpMatch( "www.kde.org", "*.kde" ) )
result += "/shexp6=failed";
var now = new Date;
var days = new Array( "sun", "mon", "tue", "wed", "thu", "fri", "sat" );
var months = new Array( "jan", "feb", "mar", "apr", "may", "jun", "jul", "aug", "sep", "oct", "nov", "dec" );
// weekday1
if ( !weekdayRange( "sun", "sat" ) )
result += "/weekday1=failed";
// weekday2
if ( !weekdayRange( "sat", "sun" ) )
result += "/weekday2=failed";
// weekday3
if ( !weekdayRange( days[ now.getDay() ] ) )
result += "/weekday3=failed";
// weekday4
if ( weekdayRange( now.getDay() ? "sun" : "mon" ) )
result += "/weekday4=failed";
// date1
if ( !dateRange( now.getDate() ) )
result += "/date1=failed";
// date2
if ( !dateRange( now.getDate(), 31 ) )
result += "/date2=failed";
// date3
if ( !dateRange( 1, now.getDate() ) )
result += "/date3=failed";
// date4
if ( dateRange( now.getDay() > 5 ? 1 : 6, now.getDay() > 5 ? 3 : 8 ) )
result += "/date4=failed";
// date5
if ( !dateRange( months[ now.getMonth() ] ) )
result += "/date5=failed";
// date6
if ( !dateRange( months[ now.getMonth() ], "dec" ) )
result += "/date6=failed";
// date7
if ( !dateRange( "dec", months[ now.getMonth() ] ) )
result += "/date7=failed";
// date8
if ( !dateRange( now.getFullYear() ) )
result += "/date8=failed";
// date9
if ( dateRange( now.getFullYear() - 1 ) )
result += "/date9=failed";
// date10
// if this fails, check your clock first :-)
if ( dateRange( 1, "jan", 1990, 31, "dec", 2000 ) )
result += "/date10=failed";
// date11
// if this fails, check your clock first :-)
if ( !dateRange( 1, "jan", 2000, 31, "dec", 3000 ) )
result += "/date11=failed";
// time1
if ( !timeRange( now.getHours() ) )
result += "/time1=failed";
// time2
if ( !timeRange( now.getHours(), now.getMinutes(), 0, 0 ) )
result += "/time2=failed";
// time3
if ( !timeRange( now.getHours(), now.getMinutes(), now.getSeconds(), 0, 0, 0 ) )
result += "/time3=failed";
// time4
if ( timeRange( now.getHours() > 5 ? 1 : 6, now.getHours() > 5 ? 3 : 8 ) )
result += "/time4=failed";
// time5
if ( now.getHours() == now.getUTCHours() )
result += "/time5=skipped";
else if ( timeRange( now.getUTCHours() ) )
result += "/time5=failed";
// time6
if ( now.getHours() == now.getUTCHours() )
result += "/time6=skipped";
else if ( !timeRange( now.getUTCHours(), "GMT" ) )
result += "/time6=failed";
return result;
}
|