54 lines
1.6 KiB
Crystal
54 lines
1.6 KiB
Crystal
require "./spec_helper"
|
|
|
|
WebMock.stub(:get, "example.com/check_form").to_return(body:
|
|
<<-BODY
|
|
<html>
|
|
<head>
|
|
<title>page_title</title>
|
|
</head>
|
|
<body>
|
|
<form action="post_path" method="post" name="sample_form">
|
|
<!-- fields -->
|
|
<input type="text" name="name">
|
|
<input type="text" name="email">
|
|
<input type="hidden" name="userid" value="12345">
|
|
<input type="password" id="pass" name="password">
|
|
<!-- checkbox -->
|
|
<input type="checkbox" id="remember_me" name="remember_me" checked>
|
|
<!-- radiobuttons -->
|
|
<input type="radio" id="contactChoice1" name="contact" value="email">
|
|
<input type="radio" id="contactChoice2" name="contact" value="phone">
|
|
<input type="radio" id="contactChoice3" name="contact" value="mail">
|
|
<!-- buttons -->
|
|
<input type="button" value="pushit">
|
|
<input type="reset" value="no">
|
|
<input type="submit" value="submit">
|
|
<input type="image" src="images/kaeru.png" alt="gerogero">
|
|
</form>
|
|
</body>
|
|
</html>
|
|
BODY
|
|
)
|
|
|
|
describe "Mechanize Form test" do
|
|
agent = Mechanize.new
|
|
uri = "http://example.com/check_form"
|
|
page = agent.get(uri)
|
|
form = page.forms.first
|
|
|
|
it "returns form attribute" do
|
|
form.action.should eq "post_path"
|
|
form.method.should eq "POST"
|
|
form.enctype.should eq "application/x-www-form-urlencoded"
|
|
form.name.should eq "sample_form"
|
|
end
|
|
|
|
it "includes fields, radiobuttons, checkboxes, buttons" do
|
|
# fields: input type = (text,hidden, or others)
|
|
form.fields.size.should eq 4
|
|
form.checkboxes.size.should eq 1
|
|
form.radiobuttons.size.should eq 3
|
|
form.buttons.size.should eq 4
|
|
end
|
|
end
|