mechanize-ntlm 0.9.1
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGELOG.rdoc +480 -0
- data/EXAMPLES.rdoc +171 -0
- data/FAQ.rdoc +11 -0
- data/GUIDE.rdoc +122 -0
- data/LICENSE.rdoc +340 -0
- data/Manifest.txt +169 -0
- data/README.rdoc +60 -0
- data/Rakefile +44 -0
- data/examples/flickr_upload.rb +23 -0
- data/examples/mech-dump.rb +7 -0
- data/examples/proxy_req.rb +9 -0
- data/examples/rubyforge.rb +21 -0
- data/examples/spider.rb +11 -0
- data/lib/mechanize-ntlm.rb +7 -0
- data/lib/www/mechanize.rb +582 -0
- data/lib/www/mechanize/chain.rb +34 -0
- data/lib/www/mechanize/chain/auth_headers.rb +82 -0
- data/lib/www/mechanize/chain/body_decoding_handler.rb +43 -0
- data/lib/www/mechanize/chain/connection_resolver.rb +78 -0
- data/lib/www/mechanize/chain/custom_headers.rb +23 -0
- data/lib/www/mechanize/chain/handler.rb +9 -0
- data/lib/www/mechanize/chain/header_resolver.rb +48 -0
- data/lib/www/mechanize/chain/parameter_resolver.rb +23 -0
- data/lib/www/mechanize/chain/post_connect_hook.rb +0 -0
- data/lib/www/mechanize/chain/pre_connect_hook.rb +22 -0
- data/lib/www/mechanize/chain/request_resolver.rb +32 -0
- data/lib/www/mechanize/chain/response_body_parser.rb +40 -0
- data/lib/www/mechanize/chain/response_header_handler.rb +51 -0
- data/lib/www/mechanize/chain/response_reader.rb +41 -0
- data/lib/www/mechanize/chain/ssl_resolver.rb +36 -0
- data/lib/www/mechanize/chain/uri_resolver.rb +73 -0
- data/lib/www/mechanize/content_type_error.rb +16 -0
- data/lib/www/mechanize/cookie.rb +72 -0
- data/lib/www/mechanize/cookie_jar.rb +191 -0
- data/lib/www/mechanize/file.rb +73 -0
- data/lib/www/mechanize/file_response.rb +62 -0
- data/lib/www/mechanize/file_saver.rb +39 -0
- data/lib/www/mechanize/form.rb +359 -0
- data/lib/www/mechanize/form/button.rb +8 -0
- data/lib/www/mechanize/form/check_box.rb +13 -0
- data/lib/www/mechanize/form/field.rb +28 -0
- data/lib/www/mechanize/form/file_upload.rb +24 -0
- data/lib/www/mechanize/form/image_button.rb +23 -0
- data/lib/www/mechanize/form/multi_select_list.rb +69 -0
- data/lib/www/mechanize/form/option.rb +51 -0
- data/lib/www/mechanize/form/radio_button.rb +38 -0
- data/lib/www/mechanize/form/select_list.rb +45 -0
- data/lib/www/mechanize/headers.rb +12 -0
- data/lib/www/mechanize/history.rb +67 -0
- data/lib/www/mechanize/inspect.rb +90 -0
- data/lib/www/mechanize/monkey_patch.rb +37 -0
- data/lib/www/mechanize/page.rb +145 -0
- data/lib/www/mechanize/page/base.rb +10 -0
- data/lib/www/mechanize/page/frame.rb +22 -0
- data/lib/www/mechanize/page/link.rb +50 -0
- data/lib/www/mechanize/page/meta.rb +10 -0
- data/lib/www/mechanize/pluggable_parsers.rb +103 -0
- data/lib/www/mechanize/redirect_limit_reached_error.rb +18 -0
- data/lib/www/mechanize/redirect_not_get_or_head_error.rb +20 -0
- data/lib/www/mechanize/response_code_error.rb +25 -0
- data/lib/www/mechanize/unsupported_scheme_error.rb +10 -0
- data/lib/www/mechanize/util.rb +76 -0
- data/lib/www/ntlm-http/lib/net/ntlm_http.rb +854 -0
- data/mechanize.gemspec +24 -0
- data/test/chain/test_argument_validator.rb +14 -0
- data/test/chain/test_custom_headers.rb +18 -0
- data/test/chain/test_parameter_resolver.rb +35 -0
- data/test/chain/test_request_resolver.rb +29 -0
- data/test/chain/test_response_reader.rb +24 -0
- data/test/data/htpasswd +1 -0
- data/test/data/server.crt +16 -0
- data/test/data/server.csr +12 -0
- data/test/data/server.key +15 -0
- data/test/data/server.pem +15 -0
- data/test/helper.rb +127 -0
- data/test/htdocs/alt_text.html +10 -0
- data/test/htdocs/bad_form_test.html +9 -0
- data/test/htdocs/button.jpg +0 -0
- data/test/htdocs/empty_form.html +6 -0
- data/test/htdocs/file_upload.html +26 -0
- data/test/htdocs/find_link.html +41 -0
- data/test/htdocs/form_multi_select.html +16 -0
- data/test/htdocs/form_multival.html +37 -0
- data/test/htdocs/form_no_action.html +18 -0
- data/test/htdocs/form_no_input_name.html +16 -0
- data/test/htdocs/form_select.html +16 -0
- data/test/htdocs/form_select_all.html +16 -0
- data/test/htdocs/form_select_none.html +17 -0
- data/test/htdocs/form_select_noopts.html +10 -0
- data/test/htdocs/form_set_fields.html +14 -0
- data/test/htdocs/form_test.html +188 -0
- data/test/htdocs/frame_test.html +30 -0
- data/test/htdocs/google.html +13 -0
- data/test/htdocs/iframe_test.html +16 -0
- data/test/htdocs/index.html +6 -0
- data/test/htdocs/link with space.html +5 -0
- data/test/htdocs/meta_cookie.html +11 -0
- data/test/htdocs/no_title_test.html +6 -0
- data/test/htdocs/relative/tc_relative_links.html +21 -0
- data/test/htdocs/tc_bad_links.html +5 -0
- data/test/htdocs/tc_base_link.html +8 -0
- data/test/htdocs/tc_blank_form.html +11 -0
- data/test/htdocs/tc_checkboxes.html +19 -0
- data/test/htdocs/tc_encoded_links.html +5 -0
- data/test/htdocs/tc_follow_meta.html +8 -0
- data/test/htdocs/tc_form_action.html +48 -0
- data/test/htdocs/tc_links.html +18 -0
- data/test/htdocs/tc_no_attributes.html +16 -0
- data/test/htdocs/tc_pretty_print.html +17 -0
- data/test/htdocs/tc_radiobuttons.html +17 -0
- data/test/htdocs/tc_referer.html +10 -0
- data/test/htdocs/tc_relative_links.html +19 -0
- data/test/htdocs/tc_textarea.html +23 -0
- data/test/htdocs/unusual______.html +5 -0
- data/test/servlets.rb +339 -0
- data/test/ssl_server.rb +48 -0
- data/test/test_authenticate.rb +71 -0
- data/test/test_bad_links.rb +25 -0
- data/test/test_blank_form.rb +16 -0
- data/test/test_checkboxes.rb +61 -0
- data/test/test_content_type.rb +13 -0
- data/test/test_cookie_class.rb +338 -0
- data/test/test_cookie_jar.rb +343 -0
- data/test/test_cookies.rb +123 -0
- data/test/test_encoded_links.rb +20 -0
- data/test/test_errors.rb +49 -0
- data/test/test_follow_meta.rb +69 -0
- data/test/test_form_action.rb +44 -0
- data/test/test_form_as_hash.rb +61 -0
- data/test/test_form_button.rb +38 -0
- data/test/test_form_no_inputname.rb +15 -0
- data/test/test_forms.rb +575 -0
- data/test/test_frames.rb +25 -0
- data/test/test_get_headers.rb +52 -0
- data/test/test_gzipping.rb +22 -0
- data/test/test_hash_api.rb +45 -0
- data/test/test_history.rb +142 -0
- data/test/test_history_added.rb +16 -0
- data/test/test_html_unscape_forms.rb +39 -0
- data/test/test_if_modified_since.rb +20 -0
- data/test/test_keep_alive.rb +31 -0
- data/test/test_links.rb +120 -0
- data/test/test_mech.rb +259 -0
- data/test/test_mechanize_file.rb +47 -0
- data/test/test_multi_select.rb +106 -0
- data/test/test_no_attributes.rb +13 -0
- data/test/test_option.rb +18 -0
- data/test/test_page.rb +67 -0
- data/test/test_pluggable_parser.rb +145 -0
- data/test/test_post_form.rb +34 -0
- data/test/test_pretty_print.rb +22 -0
- data/test/test_radiobutton.rb +75 -0
- data/test/test_redirect_limit_reached.rb +41 -0
- data/test/test_redirect_verb_handling.rb +45 -0
- data/test/test_referer.rb +39 -0
- data/test/test_relative_links.rb +40 -0
- data/test/test_request.rb +13 -0
- data/test/test_response_code.rb +52 -0
- data/test/test_save_file.rb +48 -0
- data/test/test_scheme.rb +48 -0
- data/test/test_select.rb +106 -0
- data/test/test_select_all.rb +15 -0
- data/test/test_select_none.rb +15 -0
- data/test/test_select_noopts.rb +16 -0
- data/test/test_set_fields.rb +44 -0
- data/test/test_ssl_server.rb +20 -0
- data/test/test_subclass.rb +14 -0
- data/test/test_textarea.rb +45 -0
- data/test/test_upload.rb +109 -0
- data/test/test_verbs.rb +25 -0
- metadata +284 -0
data/test/test_mech.rb
ADDED
@@ -0,0 +1,259 @@
|
|
1
|
+
require File.expand_path(File.join(File.dirname(__FILE__), "helper"))
|
2
|
+
|
3
|
+
class TestMechMethods < Test::Unit::TestCase
|
4
|
+
def setup
|
5
|
+
@agent = WWW::Mechanize.new
|
6
|
+
end
|
7
|
+
|
8
|
+
def test_get_with_tilde
|
9
|
+
page = @agent.get('http://localhost/?foo=~2')
|
10
|
+
assert_equal('http://localhost/?foo=~2', page.uri.to_s)
|
11
|
+
end
|
12
|
+
|
13
|
+
def test_submit_takes_arbirary_headers
|
14
|
+
page = @agent.get('http://localhost:2000/form_no_action.html')
|
15
|
+
assert form = page.forms.first
|
16
|
+
form.action = '/http_headers'
|
17
|
+
page = @agent.submit(form, nil, { 'foo' => 'bar' })
|
18
|
+
headers = Hash[*(
|
19
|
+
page.body.split("\n").map { |x| x.split('|') }.flatten
|
20
|
+
)]
|
21
|
+
assert_equal 'bar', headers['foo']
|
22
|
+
end
|
23
|
+
|
24
|
+
def test_get_with_params
|
25
|
+
page = @agent.get('http://localhost/', { :q => 'hello' })
|
26
|
+
assert_equal('http://localhost/?q=hello', page.uri.to_s)
|
27
|
+
end
|
28
|
+
|
29
|
+
def test_get_with_upper_http
|
30
|
+
page = @agent.get('HTTP://localhost/', { :q => 'hello' })
|
31
|
+
assert_equal('HTTP://localhost/?q=hello', page.uri.to_s)
|
32
|
+
end
|
33
|
+
|
34
|
+
def test_get_no_referer
|
35
|
+
requests = []
|
36
|
+
@agent.pre_connect_hooks << lambda { |params|
|
37
|
+
requests << params[:request]
|
38
|
+
}
|
39
|
+
|
40
|
+
@agent.get('http://localhost/')
|
41
|
+
@agent.get('http://localhost/')
|
42
|
+
assert_equal(2, requests.length)
|
43
|
+
requests.each do |request|
|
44
|
+
assert_nil request['referer']
|
45
|
+
end
|
46
|
+
end
|
47
|
+
|
48
|
+
def test_with_anchor
|
49
|
+
page = @agent.get('http://localhost/?foo=bar"')
|
50
|
+
assert_equal('http://localhost/?foo=bar%22', page.uri.to_s)
|
51
|
+
end
|
52
|
+
|
53
|
+
def test_post_connect_hook_gets_called
|
54
|
+
response = nil
|
55
|
+
@agent.post_connect_hooks << lambda { |params|
|
56
|
+
response = params[:response]
|
57
|
+
}
|
58
|
+
|
59
|
+
@agent.get('http://localhost/')
|
60
|
+
assert(response)
|
61
|
+
end
|
62
|
+
|
63
|
+
def test_get_with_referer
|
64
|
+
request = nil
|
65
|
+
@agent.pre_connect_hooks << lambda { |params|
|
66
|
+
request = params[:request]
|
67
|
+
}
|
68
|
+
|
69
|
+
@agent.get('http://localhost/', URI.parse('http://google.com/'))
|
70
|
+
assert_equal 'http://google.com/', request['Referer']
|
71
|
+
|
72
|
+
@agent.get('http://localhost/', [], 'http://tenderlovemaking.com/')
|
73
|
+
assert_equal 'http://tenderlovemaking.com/', request['Referer']
|
74
|
+
end
|
75
|
+
|
76
|
+
def test_get_with_file_referer
|
77
|
+
assert_nothing_raised do
|
78
|
+
@agent.get('http://localhost', [], WWW::Mechanize::File.new(URI.parse('http://tenderlovemaking.com/crossdomain.xml')))
|
79
|
+
end
|
80
|
+
end
|
81
|
+
|
82
|
+
def test_weird_url
|
83
|
+
assert_nothing_raised {
|
84
|
+
@agent.get('http://localhost/?action=bing&bang=boom=1|a=|b=|c=')
|
85
|
+
}
|
86
|
+
assert_nothing_raised {
|
87
|
+
@agent.get('http://localhost/?a=b&b=c&c=d')
|
88
|
+
}
|
89
|
+
assert_nothing_raised {
|
90
|
+
@agent.get("http://localhost/?a=#{[0xd6].pack('U')}")
|
91
|
+
}
|
92
|
+
end
|
93
|
+
|
94
|
+
def test_kcode_url
|
95
|
+
$KCODE = 'u'
|
96
|
+
page = @agent.get("http://localhost/?a=#{[0xd6].pack('U')}")
|
97
|
+
assert_not_nil(page)
|
98
|
+
assert_equal('http://localhost/?a=%D6', page.uri.to_s)
|
99
|
+
$KCODE = 'NONE'
|
100
|
+
end
|
101
|
+
|
102
|
+
def test_history
|
103
|
+
0.upto(25) do |i|
|
104
|
+
assert_equal(i, @agent.history.size)
|
105
|
+
page = @agent.get("http://localhost/")
|
106
|
+
end
|
107
|
+
page = @agent.get("http://localhost/form_test.html")
|
108
|
+
|
109
|
+
assert_equal("http://localhost/form_test.html",
|
110
|
+
@agent.history.last.uri.to_s)
|
111
|
+
assert_equal("http://localhost/",
|
112
|
+
@agent.history[-2].uri.to_s)
|
113
|
+
assert_equal("http://localhost/",
|
114
|
+
@agent.history[-2].uri.to_s)
|
115
|
+
|
116
|
+
assert_equal(true, @agent.visited?("http://localhost/"))
|
117
|
+
assert_equal(true, @agent.visited?("/form_test.html"))
|
118
|
+
assert_equal(false, @agent.visited?("http://google.com/"))
|
119
|
+
assert_equal(true, @agent.visited?(page.links.first))
|
120
|
+
|
121
|
+
end
|
122
|
+
|
123
|
+
def test_visited
|
124
|
+
@agent.get("http://localhost/content_type_test?ct=application/pdf")
|
125
|
+
assert_equal(true,
|
126
|
+
@agent.visited?("http://localhost/content_type_test?ct=application/pdf"))
|
127
|
+
assert_equal(false,
|
128
|
+
@agent.visited?("http://localhost/content_type_test"))
|
129
|
+
assert_equal(false,
|
130
|
+
@agent.visited?("http://localhost/content_type_test?ct=text/html"))
|
131
|
+
end
|
132
|
+
|
133
|
+
def test_visited_after_redirect
|
134
|
+
@agent.get("http://localhost/response_code?code=302")
|
135
|
+
assert_equal("http://localhost/index.html",
|
136
|
+
@agent.current_page.uri.to_s)
|
137
|
+
assert_equal(true,
|
138
|
+
@agent.visited?('http://localhost/response_code?code=302'))
|
139
|
+
end
|
140
|
+
|
141
|
+
def test_max_history
|
142
|
+
@agent.max_history = 10
|
143
|
+
0.upto(10) do |i|
|
144
|
+
assert_equal(i, @agent.history.size)
|
145
|
+
page = @agent.get("http://localhost/")
|
146
|
+
end
|
147
|
+
|
148
|
+
0.upto(10) do |i|
|
149
|
+
assert_equal(10, @agent.history.size)
|
150
|
+
page = @agent.get("http://localhost/")
|
151
|
+
end
|
152
|
+
end
|
153
|
+
|
154
|
+
def test_max_history_order
|
155
|
+
@agent.max_history = 2
|
156
|
+
assert_equal(0, @agent.history.length)
|
157
|
+
|
158
|
+
@agent.get('http://localhost/form_test.html')
|
159
|
+
assert_equal(1, @agent.history.length)
|
160
|
+
|
161
|
+
@agent.get('http://localhost/empty_form.html')
|
162
|
+
assert_equal(2, @agent.history.length)
|
163
|
+
|
164
|
+
@agent.get('http://localhost/tc_checkboxes.html')
|
165
|
+
assert_equal(2, @agent.history.length)
|
166
|
+
assert_equal('http://localhost/empty_form.html', @agent.history[0].uri.to_s)
|
167
|
+
assert_equal('http://localhost/tc_checkboxes.html',
|
168
|
+
@agent.history[1].uri.to_s)
|
169
|
+
end
|
170
|
+
|
171
|
+
def test_back_button
|
172
|
+
0.upto(5) do |i|
|
173
|
+
assert_equal(i, @agent.history.size)
|
174
|
+
page = @agent.get("http://localhost/")
|
175
|
+
end
|
176
|
+
page = @agent.get("http://localhost/form_test.html")
|
177
|
+
|
178
|
+
assert_equal("http://localhost/form_test.html",
|
179
|
+
@agent.history.last.uri.to_s)
|
180
|
+
assert_equal("http://localhost/",
|
181
|
+
@agent.history[-2].uri.to_s)
|
182
|
+
|
183
|
+
assert_equal(7, @agent.history.size)
|
184
|
+
@agent.back
|
185
|
+
assert_equal(6, @agent.history.size)
|
186
|
+
assert_equal("http://localhost/",
|
187
|
+
@agent.history.last.uri.to_s)
|
188
|
+
end
|
189
|
+
|
190
|
+
def test_google
|
191
|
+
page = @agent.get("http://localhost/google.html")
|
192
|
+
search = page.forms.find { |f| f.name == "f" }
|
193
|
+
assert_not_nil(search)
|
194
|
+
assert_not_nil(search.field_with(:name => 'q'))
|
195
|
+
assert_not_nil(search.field_with(:name => 'hl'))
|
196
|
+
assert_not_nil(search.fields.find { |f| f.name == 'ie' })
|
197
|
+
end
|
198
|
+
|
199
|
+
def test_click
|
200
|
+
@agent.user_agent_alias = 'Mac Safari'
|
201
|
+
page = @agent.get("http://localhost/frame_test.html")
|
202
|
+
link = page.link_with(:text => "Form Test")
|
203
|
+
assert_not_nil(link)
|
204
|
+
page = @agent.click(link)
|
205
|
+
assert_equal("http://localhost/form_test.html",
|
206
|
+
@agent.history.last.uri.to_s)
|
207
|
+
end
|
208
|
+
|
209
|
+
def test_click_hpricot
|
210
|
+
page = @agent.get("http://localhost/frame_test.html")
|
211
|
+
|
212
|
+
link = (page/"//a[@class='bar']").first
|
213
|
+
assert_not_nil(link)
|
214
|
+
page = @agent.click(link)
|
215
|
+
assert_equal("http://localhost/form_test.html",
|
216
|
+
@agent.history.last.uri.to_s)
|
217
|
+
end
|
218
|
+
|
219
|
+
def test_click_hpricot_frame
|
220
|
+
page = @agent.get("http://localhost/frame_test.html")
|
221
|
+
|
222
|
+
link = (page/"//frame[@name='frame2']").first
|
223
|
+
assert_not_nil(link)
|
224
|
+
page = @agent.click(link)
|
225
|
+
assert_equal("http://localhost/form_test.html",
|
226
|
+
@agent.history.last.uri.to_s)
|
227
|
+
end
|
228
|
+
|
229
|
+
def test_new_find
|
230
|
+
page = @agent.get("http://localhost/frame_test.html")
|
231
|
+
assert_equal(3, page.frames.size)
|
232
|
+
|
233
|
+
find_orig = page.frames.find_all { |f| f.name == 'frame1' }
|
234
|
+
find1 = page.frames_with(:name => 'frame1')
|
235
|
+
|
236
|
+
find_orig.zip(find1).each { |a,b|
|
237
|
+
assert_equal(a, b)
|
238
|
+
}
|
239
|
+
end
|
240
|
+
|
241
|
+
def test_get_file
|
242
|
+
page = @agent.get("http://localhost/frame_test.html")
|
243
|
+
content_length = page.header['Content-Length']
|
244
|
+
page_as_string = @agent.get_file("http://localhost/frame_test.html")
|
245
|
+
assert_equal(content_length.to_i, page_as_string.length.to_i)
|
246
|
+
end
|
247
|
+
|
248
|
+
def test_transact
|
249
|
+
page = @agent.get("http://localhost/frame_test.html")
|
250
|
+
assert_equal(1, @agent.history.length)
|
251
|
+
@agent.transact { |a|
|
252
|
+
5.times {
|
253
|
+
@agent.get("http://localhost/frame_test.html")
|
254
|
+
}
|
255
|
+
assert_equal(6, @agent.history.length)
|
256
|
+
}
|
257
|
+
assert_equal(1, @agent.history.length)
|
258
|
+
end
|
259
|
+
end
|
@@ -0,0 +1,47 @@
|
|
1
|
+
require File.expand_path(File.join(File.dirname(__FILE__), "helper"))
|
2
|
+
|
3
|
+
class MechanizeFileTest < Test::Unit::TestCase
|
4
|
+
def test_content_disposition
|
5
|
+
file = WWW::Mechanize::File.new(
|
6
|
+
URI.parse('http://localhost/foo'),
|
7
|
+
{ 'content-disposition' => 'attachment; filename=genome.jpeg; modification-date="Wed, 12 Feb 1997 16:29:51 -0500"', }
|
8
|
+
)
|
9
|
+
assert_equal('genome.jpeg', file.filename)
|
10
|
+
|
11
|
+
file = WWW::Mechanize::File.new(
|
12
|
+
URI.parse('http://localhost/foo'),
|
13
|
+
{ 'content-disposition' => 'filename=genome.jpeg; modification-date="Wed, 12 Feb 1997 16:29:51 -0500"', }
|
14
|
+
)
|
15
|
+
assert_equal('genome.jpeg', file.filename)
|
16
|
+
|
17
|
+
file = WWW::Mechanize::File.new(
|
18
|
+
URI.parse('http://localhost/foo'),
|
19
|
+
{ 'content-disposition' => 'filename=genome.jpeg', }
|
20
|
+
)
|
21
|
+
assert_equal('genome.jpeg', file.filename)
|
22
|
+
end
|
23
|
+
|
24
|
+
def test_from_uri
|
25
|
+
file = WWW::Mechanize::File.new(
|
26
|
+
URI.parse('http://localhost/foo'),
|
27
|
+
{}
|
28
|
+
)
|
29
|
+
assert_equal('foo.html', file.filename)
|
30
|
+
|
31
|
+
file = WWW::Mechanize::File.new(
|
32
|
+
URI.parse('http://localhost/foo.jpg'),
|
33
|
+
{}
|
34
|
+
)
|
35
|
+
assert_equal('foo.jpg', file.filename)
|
36
|
+
|
37
|
+
file = WWW::Mechanize::File.new(
|
38
|
+
URI.parse('http://localhost/foo.jpg')
|
39
|
+
)
|
40
|
+
assert_equal('foo.jpg', file.filename)
|
41
|
+
end
|
42
|
+
|
43
|
+
def test_no_uri
|
44
|
+
file = WWW::Mechanize::File.new()
|
45
|
+
assert_equal('index.html', file.filename)
|
46
|
+
end
|
47
|
+
end
|
@@ -0,0 +1,106 @@
|
|
1
|
+
require File.expand_path(File.join(File.dirname(__FILE__), "helper"))
|
2
|
+
|
3
|
+
class MultiSelectTest < Test::Unit::TestCase
|
4
|
+
def setup
|
5
|
+
@agent = WWW::Mechanize.new
|
6
|
+
end
|
7
|
+
|
8
|
+
def test_select_none
|
9
|
+
page = @agent.get("http://localhost/form_multi_select.html")
|
10
|
+
form = page.forms.first
|
11
|
+
form.field_with(:name => 'list').select_none
|
12
|
+
page = @agent.submit(form)
|
13
|
+
assert_equal(0, page.links.length)
|
14
|
+
end
|
15
|
+
|
16
|
+
def test_select_all
|
17
|
+
page = @agent.get("http://localhost/form_multi_select.html")
|
18
|
+
form = page.forms.first
|
19
|
+
form.field_with(:name => 'list').select_all
|
20
|
+
page = @agent.submit(form)
|
21
|
+
assert_equal(6, page.links.length)
|
22
|
+
assert_equal(1, page.links_with(:text => 'list:1').length)
|
23
|
+
assert_equal(1, page.links_with(:text => 'list:2').length)
|
24
|
+
assert_equal(1, page.links_with(:text => 'list:3').length)
|
25
|
+
assert_equal(1, page.links_with(:text => 'list:4').length)
|
26
|
+
assert_equal(1, page.links_with(:text => 'list:5').length)
|
27
|
+
assert_equal(1, page.links_with(:text => 'list:6').length)
|
28
|
+
end
|
29
|
+
|
30
|
+
def test_click_all
|
31
|
+
page = @agent.get("http://localhost/form_multi_select.html")
|
32
|
+
form = page.forms.first
|
33
|
+
form.field_with(:name => 'list').options.each { |o| o.click }
|
34
|
+
page = @agent.submit(form)
|
35
|
+
assert_equal(5, page.links.length)
|
36
|
+
assert_equal(1, page.links_with(:text => 'list:1').length)
|
37
|
+
assert_equal(1, page.links_with(:text => 'list:3').length)
|
38
|
+
assert_equal(1, page.links_with(:text => 'list:4').length)
|
39
|
+
assert_equal(1, page.links_with(:text => 'list:5').length)
|
40
|
+
assert_equal(1, page.links_with(:text => 'list:6').length)
|
41
|
+
end
|
42
|
+
|
43
|
+
def test_select_default
|
44
|
+
page = @agent.get("http://localhost/form_multi_select.html")
|
45
|
+
form = page.forms.first
|
46
|
+
page = @agent.submit(form)
|
47
|
+
assert_equal(1, page.links.length)
|
48
|
+
assert_equal(1, page.links_with(:text => 'list:2').length)
|
49
|
+
end
|
50
|
+
|
51
|
+
def test_select_one
|
52
|
+
page = @agent.get("http://localhost/form_multi_select.html")
|
53
|
+
form = page.forms.first
|
54
|
+
form.list = 'Aaron'
|
55
|
+
assert_equal(['Aaron'], form.list)
|
56
|
+
page = @agent.submit(form)
|
57
|
+
assert_equal(1, page.links.length)
|
58
|
+
assert_equal('list:Aaron', page.links.first.text)
|
59
|
+
end
|
60
|
+
|
61
|
+
def test_select_two
|
62
|
+
page = @agent.get("http://localhost/form_multi_select.html")
|
63
|
+
form = page.forms.first
|
64
|
+
form.list = ['1', 'Aaron']
|
65
|
+
page = @agent.submit(form)
|
66
|
+
assert_equal(2, page.links.length)
|
67
|
+
assert_equal(1, page.links_with(:text => 'list:1').length)
|
68
|
+
assert_equal(1, page.links_with(:text => 'list:Aaron').length)
|
69
|
+
end
|
70
|
+
|
71
|
+
def test_select_three
|
72
|
+
page = @agent.get("http://localhost/form_multi_select.html")
|
73
|
+
form = page.forms.first
|
74
|
+
form.list = ['1', '2', '3']
|
75
|
+
page = @agent.submit(form)
|
76
|
+
assert_equal(3, page.links.length)
|
77
|
+
assert_equal(1, page.links_with(:text => 'list:1').length)
|
78
|
+
assert_equal(1, page.links_with(:text => 'list:2').length)
|
79
|
+
assert_equal(1, page.links_with(:text => 'list:3').length)
|
80
|
+
end
|
81
|
+
|
82
|
+
def test_select_three_twice
|
83
|
+
page = @agent.get("http://localhost/form_multi_select.html")
|
84
|
+
form = page.forms.first
|
85
|
+
form.list = ['1', '2', '3']
|
86
|
+
form.list = ['1', '2', '3']
|
87
|
+
page = @agent.submit(form)
|
88
|
+
assert_equal(3, page.links.length)
|
89
|
+
assert_equal(1, page.links_with(:text => 'list:1').length)
|
90
|
+
assert_equal(1, page.links_with(:text => 'list:2').length)
|
91
|
+
assert_equal(1, page.links_with(:text => 'list:3').length)
|
92
|
+
end
|
93
|
+
|
94
|
+
def test_select_with_click
|
95
|
+
page = @agent.get("http://localhost/form_multi_select.html")
|
96
|
+
form = page.forms.first
|
97
|
+
form.list = ['1', 'Aaron']
|
98
|
+
form.field_with(:name => 'list').options[3].tick
|
99
|
+
assert_equal(['1', 'Aaron', '4'].sort, form.list.sort)
|
100
|
+
page = @agent.submit(form)
|
101
|
+
assert_equal(3, page.links.length)
|
102
|
+
assert_equal(1, page.links_with(:text => 'list:1').length)
|
103
|
+
assert_equal(1, page.links_with(:text => 'list:Aaron').length)
|
104
|
+
assert_equal(1, page.links_with(:text => 'list:4').length)
|
105
|
+
end
|
106
|
+
end
|
@@ -0,0 +1,13 @@
|
|
1
|
+
require File.expand_path(File.join(File.dirname(__FILE__), "helper"))
|
2
|
+
|
3
|
+
class TestNoAttributes < Test::Unit::TestCase
|
4
|
+
def setup
|
5
|
+
@agent = WWW::Mechanize.new
|
6
|
+
end
|
7
|
+
|
8
|
+
def test_parse_no_attributes
|
9
|
+
assert_nothing_raised do
|
10
|
+
page = @agent.get('http://localhost/tc_no_attributes.html')
|
11
|
+
end
|
12
|
+
end
|
13
|
+
end
|
data/test/test_option.rb
ADDED
@@ -0,0 +1,18 @@
|
|
1
|
+
require File.expand_path(File.join(File.dirname(__FILE__), "helper"))
|
2
|
+
|
3
|
+
class OptionTest < Test::Unit::TestCase
|
4
|
+
class FakeAttribute < Hash
|
5
|
+
attr_reader :inner_text
|
6
|
+
def initialize(inner_text)
|
7
|
+
@inner_text = inner_text
|
8
|
+
end
|
9
|
+
alias :has_attribute? :has_key?
|
10
|
+
alias :attributes :keys
|
11
|
+
end
|
12
|
+
|
13
|
+
def test_option_missing_value
|
14
|
+
attribute = FakeAttribute.new('blah')
|
15
|
+
option = WWW::Mechanize::Form::Option.new(attribute, nil)
|
16
|
+
assert_equal('blah', option.value)
|
17
|
+
end
|
18
|
+
end
|
data/test/test_page.rb
ADDED
@@ -0,0 +1,67 @@
|
|
1
|
+
require File.expand_path(File.join(File.dirname(__FILE__), "helper"))
|
2
|
+
|
3
|
+
require 'cgi'
|
4
|
+
|
5
|
+
class TestPage < Test::Unit::TestCase
|
6
|
+
def setup
|
7
|
+
@agent = WWW::Mechanize.new
|
8
|
+
end
|
9
|
+
|
10
|
+
def test_broken_charset
|
11
|
+
page = @agent.get("http://localhost/http_headers?content-type=#{CGI.escape('text/html; charset=akldsjfhaldjfksh')}")
|
12
|
+
assert page.parser
|
13
|
+
end
|
14
|
+
|
15
|
+
def test_upper_case_content_type
|
16
|
+
page = @agent.get("http://localhost/http_headers?content-type=#{CGI.escape('text/HTML')}")
|
17
|
+
assert_instance_of WWW::Mechanize::Page, page
|
18
|
+
assert_equal 'text/HTML', page.content_type
|
19
|
+
end
|
20
|
+
|
21
|
+
def test_page_gets_charset_sent_by_server
|
22
|
+
page = @agent.get("http://localhost/http_headers?content-type=#{CGI.escape('text/html; charset=UTF-8')}")
|
23
|
+
assert_equal 'UTF-8', page.encoding
|
24
|
+
end
|
25
|
+
|
26
|
+
def test_set_encoding
|
27
|
+
page = @agent.get("http://localhost/file_upload.html")
|
28
|
+
page.encoding = 'UTF-8'
|
29
|
+
assert_equal 'UTF-8', page.parser.encoding
|
30
|
+
end
|
31
|
+
|
32
|
+
def test_page_gets_yielded
|
33
|
+
pages = nil
|
34
|
+
@agent.get("http://localhost/file_upload.html") { |page|
|
35
|
+
pages = page
|
36
|
+
}
|
37
|
+
assert pages
|
38
|
+
assert_equal('File Upload Form', pages.title)
|
39
|
+
end
|
40
|
+
|
41
|
+
def test_title
|
42
|
+
page = @agent.get("http://localhost/file_upload.html")
|
43
|
+
assert_equal('File Upload Form', page.title)
|
44
|
+
end
|
45
|
+
|
46
|
+
def test_no_title
|
47
|
+
page = @agent.get("http://localhost/no_title_test.html")
|
48
|
+
assert_equal(nil, page.title)
|
49
|
+
end
|
50
|
+
|
51
|
+
def test_find_form_with_hash
|
52
|
+
page = @agent.get("http://localhost/tc_form_action.html")
|
53
|
+
form = page.form(:name => 'post_form1')
|
54
|
+
assert form
|
55
|
+
yielded = false
|
56
|
+
form = page.form(:name => 'post_form1') { |f|
|
57
|
+
yielded = true
|
58
|
+
assert f
|
59
|
+
assert_equal(form, f)
|
60
|
+
}
|
61
|
+
assert yielded
|
62
|
+
|
63
|
+
form_by_action = page.form(:action => '/form_post?a=b&b=c')
|
64
|
+
assert form_by_action
|
65
|
+
assert_equal(form, form_by_action)
|
66
|
+
end
|
67
|
+
end
|