-
Notifications
You must be signed in to change notification settings - Fork 0
/
openid.test.discover.xml
263 lines (213 loc) · 7.95 KB
/
openid.test.discover.xml
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
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
<?xml version="1.0" encoding="UTF-8"?>
<table xmlns="http://query.yahooapis.com/v1/schema/table.xsd">
<meta>
<author>Erik Eldridge</author>
<description>Unit tests for openid.assoc.xml</description>
<sampleQuery>use 'http://github.com/erikeldridge/yql-tables/raw/master/openid/openid.test.discover.xml' as table; select * from table where tableUri='http://github.com/erikeldridge/yql-tables/raw/master/openid/openid.discover.xml' and run='0,1,2'</sampleQuery>
<documentationURL>http://wiki.github.com/ydn/yql-openid-support/</documentationURL>
</meta>
<bindings>
<select>
<inputs>
<key id="tableUri" type="xs:string" paramType="variable"/>
<key id="run" type="xs:string" paramType="variable"/>
</inputs>
<execute><![CDATA[
//credit: http://javascript.crockford.com/remedial.html
if(!String.prototype.supplant){String.prototype.supplant=function(o){return this.replace(/{([^{}]*)}/g,function(a,b){var r=o[b];return typeof r==='string'||typeof r==='number'?r:a;});};}if(!String.prototype.trim){String.prototype.trim=function(){return this.replace(/^\s+|\s+$/g,"");};}
//use default tableuri if no other specified
tableUri = tableUri || 'http://www.datatables.org/openid/openid.discover.xml';
//cases
//ref: http://openid.net/get-an-openid
testCases = [
function(){
var caseName = 'valid yahoo.com';
var query = 'use "{tableUri}" as table; select * from table where normalizedId = "{normalizedId}"'.supplant({
'tableUri' : tableUri,
'normalizedId' : 'http://www.yahoo.com/'
});
var results = y.query( query ).results;y.log(results);
//tests
if ( results.error ) {
return {
name : caseName,
fail : 'table should return success for valid id "http://yahoo.com/"'
};
}
if ( 'https://open.login.yahooapis.com/openid/op/auth' != results.success ) {
return {
name : caseName,
fail : 'table should return "https://open.login.yahooapis.com/openid/op/auth", not ' + results.success
};
}
//pass if no tests fail
return {
name : caseName,
pass : ''
};
},
function(){
var caseName = 'valid flickr id';
var query = 'use "{tableUri}" as table; select * from table where normalizedId = "{normalizedId}"'.supplant({
'tableUri' : tableUri,
'normalizedId' : 'http://flickr.com/erikeldridge'
});
var results = y.query( query ).results;
//tests
if ( results.error ) {
return {
name : caseName,
fail : 'table should return success for valid id "http://flickr.com/erikeldridge"'
};
}
if ( 'https://open.login.yahooapis.com/openid/op/auth' != results.success ) {
return {
name : caseName,
fail : 'table should return "https://open.login.yahooapis.com/openid/op/auth", not ' + results.success
};
}
//pass if no tests fail
return {
name : caseName,
pass : ''
};
},
function(){
var caseResults = {
name : 'valid google id'
};
var query = 'use "{tableUri}" as table; select * from table where normalizedId = "{normalizedId}"'.supplant({
'tableUri' : tableUri,
'normalizedId' : 'http://www.google.com/profiles/erikeldridge'
});
var results = y.query( query ).results;
var validEndpoint = 'https://www.google.com/accounts/o8/ud?source=profiles';
//tests
if ( results.error ) {
caseResults['fail'] = 'table should return success for valid id "http://www.google.com/profiles/erikeldridge"'
}
if ( validEndpoint != results.success ) {
caseResults['fail'] = 'table should return "'+validEndpoint+'", not ' + results.success
}
//pass if no tests fail
if ( !caseResults['fail'] ) {
caseResults['pass'] = '';
}
return caseResults;
},
function(){
var caseResults = {
name : 'valid livejournal id'
};
var query = 'use "{tableUri}" as table; select * from table where normalizedId = "{normalizedId}"'.supplant({
'tableUri' : tableUri,
'normalizedId' : 'http://erikeldridge.livejournal.com'
});
var results = y.query( query ).results;
//tests
if ( results.error ) {
caseResults['fail'] = 'table should return success for valid id "http://erikeldridge.livejournal.com"'
}
if ( 'http://www.livejournal.com/openid/server.bml' != results.success ) {
caseResults['fail'] = 'table should return "http://www.livejournal.com/openid/server.bml", not ' + results.success
}
//pass if no tests fail
if ( !caseResults['fail'] ) {
caseResults['pass'] = '';
}
return caseResults;
},
function(){
var caseResults = {
name : 'valid hyves id'
};
//setup
var normalizedId = 'http://www.hyves.nl';
var validEndpoint = 'https://openid.hyves-api.nl/';
var query = 'use "{tableUri}" as table; select * from table where normalizedId = "{normalizedId}"'.supplant({
'tableUri' : tableUri,
'normalizedId' : normalizedId
});
var results = y.query( query ).results;
//tests
if ( results.error ) {
caseResults['fail'] = 'table should return success for valid id "'+normalizedId+'"'
}
if ( validEndpoint != results.success ) {
caseResults['fail'] = 'table should return "'+validEndpoint+'", not ' + results.success
}
//pass if no tests fail
if ( !caseResults['fail'] ) {
caseResults['pass'] = '';
}
return caseResults;
},
function(){
var caseResults = {
name : 'valid blogger id'
};
//setup
var normalizedId = 'http://erikeldridge.blogspot.com';
// upgrade blogger to openid 2: http://blog.nerdbank.net/2010/03/how-to-upgrade-your-blogger-openid-to.html
var validEndpoint = 'https://www.google.com/accounts/o8/ud?source=profiles';
var query = 'use "{tableUri}" as table; select * from table where normalizedId = "{normalizedId}"'.supplant({
'tableUri' : tableUri,
'normalizedId' : normalizedId
});
var results = y.query( query ).results;
//tests
if ( results.error ) {
caseResults['fail'] = 'table should return success for valid id "'+normalizedId+'"'
}
if ( validEndpoint != results.success ) {
caseResults['fail'] = 'table should return "'+validEndpoint+'", not ' + results.success
}
//pass if no tests fail
if ( !caseResults['fail'] ) {
caseResults['pass'] = '';
}
return caseResults;
},
function(){
var caseResults = {
name : 'valid orange.fr id'
};
//setup
var normalizedId = 'http://orange.fr';
var validEndpoint = 'http://openid.orange.fr/server/';
var query = 'use "{tableUri}" as table; select * from table where normalizedId = "{normalizedId}"'.supplant({
'tableUri' : tableUri,
'normalizedId' : normalizedId
});
var results = y.query( query ).results;
//tests
if ( results.error ) {
caseResults['fail'] = 'table should return success for valid id "'+normalizedId+'"'
}
if ( validEndpoint != results.success ) {
caseResults['fail'] = 'table should return "'+validEndpoint+'", not ' + results.success
}
//pass if no tests fail
if ( !caseResults['fail'] ) {
caseResults['pass'] = '';
}
return caseResults;
}
];
//runner
var caseResults = [];
if ( run ) {
for each ( var i in run.split( ',' ) ) {
caseResults.push( testCases[i]() );
}
} else {
for each ( var testCase in testCases ) {
caseResults.push( testCase() );
}
}
//results
response.object = { "case": caseResults };
]]></execute>
</select>
</bindings>
</table>