nov-ruby-openid 2.1.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (203) hide show
  1. data/CHANGELOG +215 -0
  2. data/CHANGES-2.1.0 +36 -0
  3. data/INSTALL +47 -0
  4. data/LICENSE +210 -0
  5. data/NOTICE +2 -0
  6. data/README +81 -0
  7. data/Rakefile +98 -0
  8. data/UPGRADE +127 -0
  9. data/VERSION +1 -0
  10. data/contrib/google/ruby-openid-apps-discovery-1.0.gem +0 -0
  11. data/contrib/google/ruby-openid-apps-discovery-1.01.gem +0 -0
  12. data/examples/README +32 -0
  13. data/examples/active_record_openid_store/README +58 -0
  14. data/examples/active_record_openid_store/XXX_add_open_id_store_to_db.rb +24 -0
  15. data/examples/active_record_openid_store/XXX_upgrade_open_id_store.rb +26 -0
  16. data/examples/active_record_openid_store/init.rb +8 -0
  17. data/examples/active_record_openid_store/lib/association.rb +10 -0
  18. data/examples/active_record_openid_store/lib/nonce.rb +3 -0
  19. data/examples/active_record_openid_store/lib/open_id_setting.rb +4 -0
  20. data/examples/active_record_openid_store/lib/openid_ar_store.rb +57 -0
  21. data/examples/active_record_openid_store/test/store_test.rb +212 -0
  22. data/examples/discover +49 -0
  23. data/examples/rails_openid/README +153 -0
  24. data/examples/rails_openid/Rakefile +10 -0
  25. data/examples/rails_openid/app/controllers/application.rb +4 -0
  26. data/examples/rails_openid/app/controllers/consumer_controller.rb +122 -0
  27. data/examples/rails_openid/app/controllers/login_controller.rb +45 -0
  28. data/examples/rails_openid/app/controllers/server_controller.rb +265 -0
  29. data/examples/rails_openid/app/helpers/application_helper.rb +3 -0
  30. data/examples/rails_openid/app/helpers/login_helper.rb +2 -0
  31. data/examples/rails_openid/app/helpers/server_helper.rb +9 -0
  32. data/examples/rails_openid/app/views/consumer/index.rhtml +81 -0
  33. data/examples/rails_openid/app/views/layouts/server.rhtml +68 -0
  34. data/examples/rails_openid/app/views/login/index.rhtml +56 -0
  35. data/examples/rails_openid/app/views/server/decide.rhtml +26 -0
  36. data/examples/rails_openid/config/boot.rb +19 -0
  37. data/examples/rails_openid/config/database.yml +74 -0
  38. data/examples/rails_openid/config/environment.rb +54 -0
  39. data/examples/rails_openid/config/environments/development.rb +19 -0
  40. data/examples/rails_openid/config/environments/production.rb +19 -0
  41. data/examples/rails_openid/config/environments/test.rb +19 -0
  42. data/examples/rails_openid/config/routes.rb +24 -0
  43. data/examples/rails_openid/doc/README_FOR_APP +2 -0
  44. data/examples/rails_openid/public/.htaccess +40 -0
  45. data/examples/rails_openid/public/404.html +8 -0
  46. data/examples/rails_openid/public/500.html +8 -0
  47. data/examples/rails_openid/public/dispatch.cgi +12 -0
  48. data/examples/rails_openid/public/dispatch.fcgi +26 -0
  49. data/examples/rails_openid/public/dispatch.rb +12 -0
  50. data/examples/rails_openid/public/favicon.ico +0 -0
  51. data/examples/rails_openid/public/images/openid_login_bg.gif +0 -0
  52. data/examples/rails_openid/public/javascripts/controls.js +750 -0
  53. data/examples/rails_openid/public/javascripts/dragdrop.js +584 -0
  54. data/examples/rails_openid/public/javascripts/effects.js +854 -0
  55. data/examples/rails_openid/public/javascripts/prototype.js +1785 -0
  56. data/examples/rails_openid/public/robots.txt +1 -0
  57. data/examples/rails_openid/script/about +3 -0
  58. data/examples/rails_openid/script/breakpointer +3 -0
  59. data/examples/rails_openid/script/console +3 -0
  60. data/examples/rails_openid/script/destroy +3 -0
  61. data/examples/rails_openid/script/generate +3 -0
  62. data/examples/rails_openid/script/performance/benchmarker +3 -0
  63. data/examples/rails_openid/script/performance/profiler +3 -0
  64. data/examples/rails_openid/script/plugin +3 -0
  65. data/examples/rails_openid/script/process/reaper +3 -0
  66. data/examples/rails_openid/script/process/spawner +3 -0
  67. data/examples/rails_openid/script/process/spinner +3 -0
  68. data/examples/rails_openid/script/runner +3 -0
  69. data/examples/rails_openid/script/server +3 -0
  70. data/examples/rails_openid/test/functional/login_controller_test.rb +18 -0
  71. data/examples/rails_openid/test/functional/server_controller_test.rb +18 -0
  72. data/examples/rails_openid/test/test_helper.rb +28 -0
  73. data/lib/hmac/hmac.rb +112 -0
  74. data/lib/hmac/sha1.rb +11 -0
  75. data/lib/hmac/sha2.rb +25 -0
  76. data/lib/openid.rb +20 -0
  77. data/lib/openid/association.rb +249 -0
  78. data/lib/openid/consumer.rb +395 -0
  79. data/lib/openid/consumer/associationmanager.rb +344 -0
  80. data/lib/openid/consumer/checkid_request.rb +186 -0
  81. data/lib/openid/consumer/discovery.rb +497 -0
  82. data/lib/openid/consumer/discovery_manager.rb +123 -0
  83. data/lib/openid/consumer/html_parse.rb +134 -0
  84. data/lib/openid/consumer/idres.rb +523 -0
  85. data/lib/openid/consumer/responses.rb +148 -0
  86. data/lib/openid/cryptutil.rb +115 -0
  87. data/lib/openid/dh.rb +89 -0
  88. data/lib/openid/extension.rb +39 -0
  89. data/lib/openid/extensions/ax.rb +539 -0
  90. data/lib/openid/extensions/oauth.rb +91 -0
  91. data/lib/openid/extensions/pape.rb +179 -0
  92. data/lib/openid/extensions/sreg.rb +277 -0
  93. data/lib/openid/extensions/ui.rb +53 -0
  94. data/lib/openid/extras.rb +11 -0
  95. data/lib/openid/fetchers.rb +258 -0
  96. data/lib/openid/kvform.rb +136 -0
  97. data/lib/openid/kvpost.rb +58 -0
  98. data/lib/openid/message.rb +553 -0
  99. data/lib/openid/protocolerror.rb +8 -0
  100. data/lib/openid/server.rb +1544 -0
  101. data/lib/openid/store/filesystem.rb +271 -0
  102. data/lib/openid/store/interface.rb +75 -0
  103. data/lib/openid/store/memcache.rb +107 -0
  104. data/lib/openid/store/memory.rb +84 -0
  105. data/lib/openid/store/nonce.rb +68 -0
  106. data/lib/openid/trustroot.rb +349 -0
  107. data/lib/openid/urinorm.rb +75 -0
  108. data/lib/openid/util.rb +110 -0
  109. data/lib/openid/yadis/accept.rb +148 -0
  110. data/lib/openid/yadis/constants.rb +21 -0
  111. data/lib/openid/yadis/discovery.rb +153 -0
  112. data/lib/openid/yadis/filters.rb +205 -0
  113. data/lib/openid/yadis/htmltokenizer.rb +305 -0
  114. data/lib/openid/yadis/parsehtml.rb +45 -0
  115. data/lib/openid/yadis/services.rb +42 -0
  116. data/lib/openid/yadis/xrds.rb +155 -0
  117. data/lib/openid/yadis/xri.rb +90 -0
  118. data/lib/openid/yadis/xrires.rb +99 -0
  119. data/setup.rb +1551 -0
  120. data/test/data/accept.txt +124 -0
  121. data/test/data/dh.txt +29 -0
  122. data/test/data/example-xrds.xml +14 -0
  123. data/test/data/linkparse.txt +587 -0
  124. data/test/data/n2b64 +650 -0
  125. data/test/data/test1-discover.txt +137 -0
  126. data/test/data/test1-parsehtml.txt +152 -0
  127. data/test/data/test_discover/malformed_meta_tag.html +19 -0
  128. data/test/data/test_discover/openid.html +11 -0
  129. data/test/data/test_discover/openid2.html +11 -0
  130. data/test/data/test_discover/openid2_xrds.xml +12 -0
  131. data/test/data/test_discover/openid2_xrds_no_local_id.xml +11 -0
  132. data/test/data/test_discover/openid_1_and_2.html +11 -0
  133. data/test/data/test_discover/openid_1_and_2_xrds.xml +16 -0
  134. data/test/data/test_discover/openid_1_and_2_xrds_bad_delegate.xml +17 -0
  135. data/test/data/test_discover/openid_and_yadis.html +12 -0
  136. data/test/data/test_discover/openid_no_delegate.html +10 -0
  137. data/test/data/test_discover/openid_utf8.html +11 -0
  138. data/test/data/test_discover/yadis_0entries.xml +12 -0
  139. data/test/data/test_discover/yadis_2_bad_local_id.xml +15 -0
  140. data/test/data/test_discover/yadis_2entries_delegate.xml +22 -0
  141. data/test/data/test_discover/yadis_2entries_idp.xml +21 -0
  142. data/test/data/test_discover/yadis_another_delegate.xml +14 -0
  143. data/test/data/test_discover/yadis_idp.xml +12 -0
  144. data/test/data/test_discover/yadis_idp_delegate.xml +13 -0
  145. data/test/data/test_discover/yadis_no_delegate.xml +11 -0
  146. data/test/data/test_xrds/=j3h.2007.11.14.xrds +25 -0
  147. data/test/data/test_xrds/README +12 -0
  148. data/test/data/test_xrds/delegated-20060809-r1.xrds +34 -0
  149. data/test/data/test_xrds/delegated-20060809-r2.xrds +34 -0
  150. data/test/data/test_xrds/delegated-20060809.xrds +34 -0
  151. data/test/data/test_xrds/no-xrd.xml +7 -0
  152. data/test/data/test_xrds/not-xrds.xml +2 -0
  153. data/test/data/test_xrds/prefixsometimes.xrds +34 -0
  154. data/test/data/test_xrds/ref.xrds +109 -0
  155. data/test/data/test_xrds/sometimesprefix.xrds +34 -0
  156. data/test/data/test_xrds/spoof1.xrds +25 -0
  157. data/test/data/test_xrds/spoof2.xrds +25 -0
  158. data/test/data/test_xrds/spoof3.xrds +37 -0
  159. data/test/data/test_xrds/status222.xrds +9 -0
  160. data/test/data/test_xrds/subsegments.xrds +58 -0
  161. data/test/data/test_xrds/valid-populated-xrds.xml +39 -0
  162. data/test/data/trustroot.txt +153 -0
  163. data/test/data/urinorm.txt +79 -0
  164. data/test/discoverdata.rb +131 -0
  165. data/test/test_accept.rb +170 -0
  166. data/test/test_association.rb +266 -0
  167. data/test/test_associationmanager.rb +917 -0
  168. data/test/test_ax.rb +690 -0
  169. data/test/test_checkid_request.rb +294 -0
  170. data/test/test_consumer.rb +257 -0
  171. data/test/test_cryptutil.rb +119 -0
  172. data/test/test_dh.rb +86 -0
  173. data/test/test_discover.rb +852 -0
  174. data/test/test_discovery_manager.rb +262 -0
  175. data/test/test_extension.rb +46 -0
  176. data/test/test_extras.rb +35 -0
  177. data/test/test_fetchers.rb +565 -0
  178. data/test/test_filters.rb +270 -0
  179. data/test/test_idres.rb +963 -0
  180. data/test/test_kvform.rb +165 -0
  181. data/test/test_kvpost.rb +65 -0
  182. data/test/test_linkparse.rb +101 -0
  183. data/test/test_message.rb +1116 -0
  184. data/test/test_nonce.rb +89 -0
  185. data/test/test_oauth.rb +175 -0
  186. data/test/test_openid_yadis.rb +178 -0
  187. data/test/test_pape.rb +247 -0
  188. data/test/test_parsehtml.rb +80 -0
  189. data/test/test_responses.rb +63 -0
  190. data/test/test_server.rb +2457 -0
  191. data/test/test_sreg.rb +479 -0
  192. data/test/test_stores.rb +298 -0
  193. data/test/test_trustroot.rb +113 -0
  194. data/test/test_ui.rb +93 -0
  195. data/test/test_urinorm.rb +35 -0
  196. data/test/test_util.rb +145 -0
  197. data/test/test_xrds.rb +169 -0
  198. data/test/test_xri.rb +48 -0
  199. data/test/test_xrires.rb +63 -0
  200. data/test/test_yadis_discovery.rb +220 -0
  201. data/test/testutil.rb +127 -0
  202. data/test/util.rb +53 -0
  203. metadata +336 -0
@@ -0,0 +1,25 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <XRDS ref="xri://=keturn*isDrummond" xmlns="xri://$xrds">
3
+ <XRD xmlns="xri://$xrd*($v*2.0)">
4
+ <Query>*keturn</Query>
5
+ <ProviderID>xri://=</ProviderID>
6
+ <LocalID>!E4</LocalID>
7
+ <CanonicalID>=!E4</CanonicalID>
8
+
9
+ <Service>
10
+ <Type>xri://$res*auth*($v*2.0)</Type>
11
+ <URI>http://keturn.example.com/resolve/</URI>
12
+ <ProviderID>=!E4</ProviderID>
13
+ </Service>
14
+ </XRD>
15
+ <XRD xmlns="xri://$xrd*($v*2.0)">
16
+ <Query>*isDrummond</Query>
17
+ <ProviderID>=!E4</ProviderID>
18
+ <LocalID>!D2</LocalID>
19
+ <CanonicalID>=!D2</CanonicalID>
20
+ <Service>
21
+ <Type>http://openid.net/signon/1.0</Type>
22
+ <URI>http://keturn.example.com/openid</URI>
23
+ </Service>
24
+ </XRD>
25
+ </XRDS>
@@ -0,0 +1,25 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <XRDS ref="xri://=keturn*isDrummond" xmlns="xri://$xrds">
3
+ <XRD xmlns="xri://$xrd*($v*2.0)">
4
+ <Query>*keturn</Query>
5
+ <ProviderID>xri://=</ProviderID>
6
+ <LocalID>!E4</LocalID>
7
+ <CanonicalID>=!E4</CanonicalID>
8
+
9
+ <Service>
10
+ <Type>xri://$res*auth*($v*2.0)</Type>
11
+ <URI>http://keturn.example.com/resolve/</URI>
12
+ <ProviderID>xri://=</ProviderID>
13
+ </Service>
14
+ </XRD>
15
+ <XRD xmlns="xri://$xrd*($v*2.0)">
16
+ <Query>*isDrummond</Query>
17
+ <ProviderID>xri://=</ProviderID>
18
+ <LocalID>!D2</LocalID>
19
+ <CanonicalID>=!D2</CanonicalID>
20
+ <Service>
21
+ <Type>http://openid.net/signon/1.0</Type>
22
+ <URI>http://keturn.example.com/openid</URI>
23
+ </Service>
24
+ </XRD>
25
+ </XRDS>
@@ -0,0 +1,37 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <XRDS ref="xri://=keturn*isDrummond" xmlns="xri://$xrds">
3
+ <XRD xmlns="xri://$xrd*($v*2.0)">
4
+ <Query>*keturn</Query>
5
+ <ProviderID>xri://@</ProviderID>
6
+ <LocalID>@E4</LocalID>
7
+ <CanonicalID>@!E4</CanonicalID>
8
+
9
+ <Service>
10
+ <Type>xri://$res*auth*($v*2.0)</Type>
11
+ <URI>http://keturn.example.com/resolve/</URI>
12
+ <ProviderID>@!E4</ProviderID>
13
+ </Service>
14
+ </XRD>
15
+ <XRD xmlns="xri://$xrd*($v*2.0)">
16
+ <Query>*is</Query>
17
+ <ProviderID>@!E4</ProviderID>
18
+ <LocalID>!D2</LocalID>
19
+ <CanonicalID>=!C0</CanonicalID>
20
+ <CanonicalID>=!E4!01</CanonicalID>
21
+ <Service>
22
+ <Type>xri://$res*auth*($v*2.0)</Type>
23
+ <URI>http://keturn.example.com/resolve/</URI>
24
+ <ProviderID>@!C0</ProviderID>
25
+ </Service>
26
+ </XRD>
27
+ <XRD xmlns="xri://$xrd*($v*2.0)">
28
+ <Query>*drummond</Query>
29
+ <ProviderID>@!C0</ProviderID>
30
+ <LocalID>!D2</LocalID>
31
+ <CanonicalID>@!C0!D2</CanonicalID>
32
+ <Service>
33
+ <Type>http://openid.net/signon/1.0</Type>
34
+ <URI>http://keturn.example.com/openid</URI>
35
+ </Service>
36
+ </XRD>
37
+ </XRDS>
@@ -0,0 +1,9 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <XRDS ref="xri://=x" xmlns="xri://$xrds">
3
+ <XRD xmlns="xri://$xrd*($v*2.0)">
4
+ <Query>*x</Query>
5
+ <Status code="222">The subsegment does not exist</Status>
6
+ <Expires>2006-08-18T00:02:35.000Z</Expires>
7
+ <ProviderID>xri://=</ProviderID>
8
+ </XRD>
9
+ </XRDS>
@@ -0,0 +1,58 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <XRDS ref="xri://=nishitani*masaki" xmlns="xri://$xrds">
3
+ <XRD xmlns="xri://$xrd*($v*2.0)">
4
+ <Query>*nishitani</Query>
5
+ <Status code="100"/>
6
+ <Expires>2007-12-25T11:33:39.000Z</Expires>
7
+ <ProviderID>xri://=</ProviderID>
8
+ <LocalID priority="10">!E117.EF2F.454B.C707</LocalID>
9
+ <CanonicalID priority="10">=!E117.EF2F.454B.C707</CanonicalID>
10
+ <Service priority="10">
11
+ <Type select="true">http://openid.net/signon/1.0</Type>
12
+ <ProviderID>xri://!!1003!103</ProviderID>
13
+ <URI append="none" priority="1">https://linksafe.ezibroker.net/server/</URI>
14
+ </Service>
15
+ <Service priority="10">
16
+ <Type select="true">xri://$res*auth*($v*2.0)</Type>
17
+ <ProviderID>xri://!!1003!103</ProviderID>
18
+ <MediaType>application/xrds+xml;trust=none</MediaType>
19
+ <URI priority="10">http://resolve.ezibroker.net/resolve/=nishitani/</URI>
20
+ </Service>
21
+ <Service priority="1">
22
+ <Type match="content" select="true">xri://+i-service*(+forwarding)*($v*1.0)</Type>
23
+ <Type match="null" select="false"/>
24
+ <ProviderID>xri://!!1003!103</ProviderID>
25
+ <Path match="content">(+index)</Path>
26
+ <Path match="default"/>
27
+ <URI append="qxri" priority="1">http://linksafe-forward.ezibroker.net/forwarding/</URI>
28
+ </Service>
29
+ </XRD>
30
+ <XRD xmlns="xri://$xrd*($v*2.0)">
31
+ <Query>*masaki</Query>
32
+ <Status code="100">SUCCESS</Status>
33
+ <ProviderID>xri://!!1003</ProviderID>
34
+ <LocalID>!0000.0000.3B9A.CA01</LocalID>
35
+ <CanonicalID>=!E117.EF2F.454B.C707!0000.0000.3B9A.CA01</CanonicalID>
36
+ <Service>
37
+ <Type select="true">http://openid.net/signon/1.0</Type>
38
+ <ProviderID>xri://!!1003!103</ProviderID>
39
+ <URI append="none" priority="1">https://linksafe.ezibroker.net/server/</URI>
40
+ </Service>
41
+ <Service>
42
+ <Type select="true">xri://+i-service*(+contact)*($v*1.0)</Type>
43
+ <Type match="null"/>
44
+ <ProviderID>xri://!!1003!103</ProviderID>
45
+ <Path select="true">(+contact)</Path>
46
+ <Path match="null"/>
47
+ <URI append="authority" priority="1">http://linksafe-contact.ezibroker.net/contact/</URI>
48
+ </Service>
49
+ <Service priority="1">
50
+ <Type match="content" select="true">xri://+i-service*(+forwarding)*($v*1.0)</Type>
51
+ <Type match="null" select="false"/>
52
+ <ProviderID>xri://!!1003!103</ProviderID>
53
+ <Path match="content">(+index)</Path>
54
+ <Path match="default"/>
55
+ <URI append="qxri" priority="1">http://linksafe-forward.ezibroker.net/forwarding/</URI>
56
+ </Service>
57
+ </XRD>
58
+ </XRDS>
@@ -0,0 +1,39 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <xrds:XRDS
3
+ xmlns:xrds="xri://$xrds"
4
+ xmlns:openid="http://openid.net/xmlns/1.0"
5
+ xmlns:typekey="http://typekey.com/xmlns/1.0"
6
+ xmlns="xri://$xrd*($v*2.0)">
7
+ <XRD>
8
+
9
+ <Service priority="0">
10
+ <Type>http://openid.net/signon/1.0</Type>
11
+ <URI>http://www.myopenid.com/server</URI>
12
+ <openid:Delegate>http://josh.myopenid.com/</openid:Delegate>
13
+ </Service>
14
+
15
+ <Service priority="20">
16
+ <Type>http://lid.netmesh.org/sso/2.0b5</Type>
17
+ <Type>http://lid.netmesh.org/2.0b5</Type>
18
+ <URI>http://mylid.net/josh</URI>
19
+ </Service>
20
+
21
+ <Service priority="10">
22
+ <Type>http://openid.net/signon/1.0</Type>
23
+ <URI>http://www.livejournal.com/openid/server.bml</URI>
24
+ <openid:Delegate>http://www.livejournal.com/users/nedthealpaca/</openid:Delegate>
25
+ </Service>
26
+
27
+ <Service priority="15">
28
+ <Type>http://typekey.com/services/1.0</Type>
29
+ <typekey:MemberName>joshhoyt</typekey:MemberName>
30
+ </Service>
31
+
32
+ <Service priority="5">
33
+ <Type>http://openid.net/signon/1.0</Type>
34
+ <URI>http://www.schtuff.com/openid</URI>
35
+ <openid:Delegate>http://users.schtuff.com/josh</openid:Delegate>
36
+ </Service>
37
+
38
+ </XRD>
39
+ </xrds:XRDS>
@@ -0,0 +1,153 @@
1
+ ========================================
2
+ Trust root parsing checking
3
+ ========================================
4
+
5
+ ----------------------------------------
6
+ 23: Does not parse
7
+ ----------------------------------------
8
+ baz.org
9
+ *.foo.com
10
+ http://*.schtuff.*/
11
+ ftp://foo.com
12
+ ftp://*.foo.com
13
+ http://*.foo.com:80:90/
14
+ foo.*.com
15
+ http://foo.*.com
16
+ http://www.*
17
+ http://*foo.com/
18
+ http://foo.com/invalid#fragment
19
+ http://..it/
20
+ http://.it/
21
+ http://*:8081/
22
+ http://*:80
23
+ http://localhost:1900foo/
24
+ http://foo.com\/
25
+ http://π.pi.com/
26
+ http://lambda.com/Λ
27
+
28
+
29
+
30
+ 5
31
+
32
+ ----------------------------------------
33
+ 14: Insane
34
+ ----------------------------------------
35
+ http:///
36
+ http://*/
37
+ https://*/
38
+ http://*.com
39
+ http://*.com/
40
+ https://*.com/
41
+ http://*.com.au/
42
+ http://*.co.uk/
43
+ http://*.foo.notatld/
44
+ https://*.foo.notatld/
45
+ http://*.museum/
46
+ https://*.museum/
47
+ http://www.schtuffcom/
48
+ http://it/
49
+
50
+ ----------------------------------------
51
+ 18: Sane
52
+ ----------------------------------------
53
+ http://*.schtuff.com./
54
+ http://*.schtuff.com/
55
+ http://*.foo.schtuff.com/
56
+ http://*.schtuff.com
57
+ http://www.schtuff.com/
58
+ http://www.schtuff.com./
59
+ http://www.schutff.com
60
+ http://*.this.that.schtuff.com/
61
+ http://*.foo.com/path
62
+ http://*.foo.com/path?action=foo2
63
+ http://x.foo.com/path?action=foo2
64
+ http://x.foo.com/path?action=%3D
65
+ http://localhost:8081/
66
+ http://localhost:8082/?action=openid
67
+ https://foo.com/
68
+ http://kink.fm/should/be/sane
69
+ http://beta.lingu.no/
70
+ http://goathack.livejournal.org:8020/openid/login.bml
71
+
72
+ ========================================
73
+ return_to matching
74
+ ========================================
75
+
76
+ ----------------------------------------
77
+ 46: matches
78
+ ----------------------------------------
79
+ http://*/ http://cnn.com/
80
+ http://*/ http://livejournal.com/
81
+ http://*/ http://met.museum/
82
+ http://localhost:8081/x?action=openid http://localhost:8081/x?action=openid
83
+ http://*.foo.com http://b.foo.com
84
+ http://*.foo.com http://b.foo.com/
85
+ http://*.foo.com/ http://b.foo.com
86
+ http://b.foo.com http://b.foo.com
87
+ http://b.foo.com http://b.foo.com/
88
+ http://b.foo.com/ http://b.foo.com
89
+ http://*.b.foo.com http://b.foo.com
90
+ http://*.b.foo.com http://b.foo.com/
91
+ http://*.b.foo.com/ http://b.foo.com
92
+ http://*.b.foo.com http://x.b.foo.com
93
+ http://*.b.foo.com http://w.x.b.foo.com
94
+ http://*.bar.co.uk http://www.bar.co.uk
95
+ http://*.uoregon.edu http://x.cs.uoregon.edu
96
+ http://x.com/abc http://x.com/abc
97
+ http://x.com/abc http://x.com/abc/def
98
+ http://10.0.0.1/abc http://10.0.0.1/abc
99
+ http://*.x.com http://x.com/gallery
100
+ http://*.x.com http://foo.x.com/gallery
101
+ http://foo.x.com http://foo.x.com/gallery/xxx
102
+ http://*.x.com/gallery http://foo.x.com/gallery
103
+ http://localhost:8082/?action=openid http://localhost:8082/?action=openid
104
+ http://goathack.livejournal.org:8020/ http://goathack.livejournal.org:8020/openid/login.bml
105
+ https://foo.com https://foo.com
106
+ http://Foo.com http://foo.com
107
+ http://foo.com http://Foo.com
108
+ http://foo.com:80/ http://foo.com/
109
+ http://foo.com/?x=y http://foo.com/?x=y&a=b
110
+ http://foo.com/x http://foo.com/x?y
111
+ http://mylid.net/j3h. http://mylid.net/j3h.?x=y
112
+ http://j3h.us http://j3h.us?ride=unicycle
113
+ https://www.filmclans.com:443/mattmartin/FilmClans https://www.filmclans.com/mattmartin/FilmClans/Logon.aspx?nonce=BVjqSOee
114
+ http://foo.com:80 http://foo.com
115
+ http://foo.com http://foo.com:80
116
+ http://foo.com http://foo.com/
117
+ http://foo.com/ http://foo.com
118
+ http://foo.com/ http://foo.com:80
119
+ http://foo.com:80/ http://foo.com:80/stuff
120
+ http://foo.com:80/ http://foo.com/stuff
121
+ http://foo.com/path http://foo.com/path/extra
122
+ http://foo.com/path2 http://foo.com/path2?extra=query
123
+ http://foo.com/path2 http://foo.com/path2/?extra=query
124
+ http://foo.com/ HTTP://foo.com/
125
+
126
+ ----------------------------------------
127
+ 25: does not match
128
+ ----------------------------------------
129
+ http://*/ ftp://foo.com/
130
+ http://*/ xxx
131
+ http://foo.com/ http://oo.com/
132
+ http://*.x.com/abc http://foo.x.com
133
+ http://*.x.com/abc http://*.x.com
134
+ http://*.com/ http://*.com/
135
+ http://x.com/abc http://x.com/
136
+ http://x.com/abc http://x.com/a
137
+ http://x.com/abc http://x.com/ab
138
+ http://x.com/abc http://x.com/abcd
139
+ http://*.cs.uoregon.edu http://x.uoregon.edu
140
+ http://*.foo.com http://bar.com
141
+ http://*.foo.com http://www.bar.com
142
+ http://*.bar.co.uk http://xxx.co.uk
143
+ https://foo.com http://foo.com
144
+ http://foo.com https://foo.com
145
+ http://foo.com:81 http://foo.com:80
146
+ http://foo.com/?a=b http://foo.com/?x=y
147
+ http://foo.com/?a=b http://foo.com/?x=y&a=b
148
+ http://foo.com/?a=b http://foo.com/
149
+ http://*.oo.com/ http://foo.com/
150
+ http://foo.com/* http://foo.com/anything
151
+ http://foo.com http://foo.com:443
152
+ https://foo.com https://foo.com:80
153
+ http://foo.com/path/xev http://foo.com/path?extra=more
@@ -0,0 +1,79 @@
1
+ Already normal form
2
+ http://example.com/
3
+ http://example.com/
4
+
5
+ Add a trailing slash
6
+ http://example.com
7
+ http://example.com/
8
+
9
+ Remove an empty port segment
10
+ http://example.com:/
11
+ http://example.com/
12
+
13
+ Remove a default port segment
14
+ http://example.com:80/
15
+ http://example.com/
16
+
17
+ Capitalization in host names
18
+ http://wWw.exaMPLE.COm/
19
+ http://www.example.com/
20
+
21
+ Capitalization in scheme names
22
+ htTP://example.com/
23
+ http://example.com/
24
+
25
+ Capitalization in percent-escaped reserved characters
26
+ http://example.com/foo%2cbar
27
+ http://example.com/foo%2Cbar
28
+
29
+ Unescape percent-encoded unreserved characters
30
+ http://example.com/foo%2Dbar%2dbaz
31
+ http://example.com/foo-bar-baz
32
+
33
+ remove_dot_segments example 1
34
+ http://example.com/a/b/c/./../../g
35
+ http://example.com/a/g
36
+
37
+ remove_dot_segments example 2
38
+ http://example.com/mid/content=5/../6
39
+ http://example.com/mid/6
40
+
41
+ remove_dot_segments: single-dot
42
+ http://example.com/a/./b
43
+ http://example.com/a/b
44
+
45
+ remove_dot_segments: double-dot
46
+ http://example.com/a/../b
47
+ http://example.com/b
48
+
49
+ remove_dot_segments: leading double-dot
50
+ http://example.com/../b
51
+ http://example.com/b
52
+
53
+ remove_dot_segments: trailing single-dot
54
+ http://example.com/a/.
55
+ http://example.com/a/
56
+
57
+ remove_dot_segments: trailing double-dot
58
+ http://example.com/a/..
59
+ http://example.com/
60
+
61
+ remove_dot_segments: trailing single-dot-slash
62
+ http://example.com/a/./
63
+ http://example.com/a/
64
+
65
+ remove_dot_segments: trailing double-dot-slash
66
+ http://example.com/a/../
67
+ http://example.com/
68
+
69
+ Test of all kinds of syntax-based normalization
70
+ hTTPS://a/./b/../b/%63/%7bfoo%7d
71
+ https://a/b/c/%7Bfoo%7D
72
+
73
+ Unsupported scheme
74
+ ftp://example.com/
75
+ fail
76
+
77
+ Non-absolute URI
78
+ http:/foo
79
+ fail
@@ -0,0 +1,131 @@
1
+
2
+ require 'uri'
3
+ require 'openid/yadis/constants'
4
+ require 'openid/yadis/discovery'
5
+ require 'openid/extras'
6
+ require 'openid/util'
7
+
8
+ module OpenID
9
+
10
+ module DiscoverData
11
+
12
+ include TestDataMixin
13
+ include Util
14
+
15
+ TESTLIST = [
16
+ # success, input_name, id_name, result_name
17
+ [true, "equiv", "equiv", "xrds"],
18
+ [true, "header", "header", "xrds"],
19
+ [true, "lowercase_header", "lowercase_header", "xrds"],
20
+ [true, "xrds", "xrds", "xrds"],
21
+ [true, "xrds_ctparam", "xrds_ctparam", "xrds_ctparam"],
22
+ [true, "xrds_ctcase", "xrds_ctcase", "xrds_ctcase"],
23
+ [false, "xrds_html", "xrds_html", "xrds_html"],
24
+ [true, "redir_equiv", "equiv", "xrds"],
25
+ [true, "redir_header", "header", "xrds"],
26
+ [true, "redir_xrds", "xrds", "xrds"],
27
+ [false, "redir_xrds_html", "xrds_html", "xrds_html"],
28
+ [true, "redir_redir_equiv", "equiv", "xrds"],
29
+ [false, "404_server_response", nil, nil],
30
+ [false, "404_with_header", nil, nil],
31
+ [false, "404_with_meta", nil, nil],
32
+ [false, "201_server_response", nil, nil],
33
+ [false, "500_server_response", nil, nil],
34
+ ]
35
+
36
+ @@example_xrds_file = 'example-xrds.xml'
37
+ @@default_test_file = 'test1-discover.txt'
38
+ @@discover_tests = {}
39
+
40
+ def readTests(filename)
41
+ data = read_data_file(filename, false)
42
+ tests = {}
43
+ data.split("\f\n", -1).each { |case_|
44
+ name, content = case_.split("\n", 2)
45
+ tests[name] = content
46
+ }
47
+
48
+ return tests
49
+ end
50
+
51
+ def getData(filename, name)
52
+ if !@@discover_tests.member?(filename)
53
+ @@discover_tests[filename] = readTests(filename)
54
+ end
55
+
56
+ file_tests = @@discover_tests[filename]
57
+ return file_tests[name]
58
+ end
59
+
60
+ def fillTemplate(test_name, template, base_url, example_xrds)
61
+ mapping = [
62
+ ['URL_BASE/', base_url],
63
+ ['<XRDS Content>', example_xrds],
64
+ ['YADIS_HEADER', Yadis::YADIS_HEADER_NAME],
65
+ ['NAME', test_name],
66
+ ]
67
+
68
+ mapping.each { |k, v|
69
+ template = template.gsub(/#{k}/, v)
70
+ }
71
+
72
+ return template
73
+ end
74
+
75
+ def generateSample(test_name, base_url,
76
+ example_xrds=nil,
77
+ filename=@@default_test_file)
78
+ if example_xrds.nil?
79
+ example_xrds = read_data_file(@@example_xrds_file, false)
80
+ end
81
+
82
+ begin
83
+ template = getData(filename, test_name)
84
+ rescue Errno::ENOENT
85
+ raise ArgumentError(filename)
86
+ end
87
+
88
+ return fillTemplate(test_name, template, base_url, example_xrds)
89
+ end
90
+
91
+ def generateResult(base_url, input_name, id_name, result_name, success)
92
+ uri = URI::parse(base_url)
93
+
94
+ input_url = (uri + input_name).to_s
95
+
96
+ # If the name is None then we expect the protocol to fail, which
97
+ # we represent by None
98
+ if id_name.nil?
99
+ Util.assert(result_name.nil?)
100
+ return input_url, DiscoveryFailure
101
+ end
102
+
103
+ result = generateSample(result_name, base_url)
104
+ headers, content = result.split("\n\n", 2)
105
+ header_lines = headers.split("\n")
106
+
107
+ ctype = nil
108
+ header_lines.each { |header_line|
109
+ if header_line.starts_with?('Content-Type:')
110
+ _, ctype = header_line.split(':', 2)
111
+ ctype = ctype.strip()
112
+ break
113
+ else
114
+ ctype = nil
115
+ end
116
+ }
117
+
118
+ id_url = (uri + id_name).to_s
119
+ result = Yadis::DiscoveryResult.new(input_url)
120
+ result.normalized_uri = id_url
121
+
122
+ if success
123
+ result.xrds_uri = (uri + result_name).to_s
124
+ end
125
+
126
+ result.content_type = ctype
127
+ result.response_text = content
128
+ return [input_url, result]
129
+ end
130
+ end
131
+ end