require File.expand_path(File.dirname(__FILE__) + "/spec_helper") describe "fills_in" do before do @session = ActionController::Integration::Session.new @session.stubs(:assert_response) @session.stubs(:get_via_redirect) @session.stubs(:response).returns(@response=mock) end it "should_work_with_textareas" do @response.stubs(:body).returns(<<-EOS)
EOS @session.expects(:post_via_redirect).with("/login", "user" => {"text" => "filling text area"}) @session.fills_in "User Text", :with => "filling text area" @session.clicks_button end it "should_work_with_password_fields" do @response.stubs(:body).returns(<<-EOS)
EOS @session.expects(:post_via_redirect).with("/login", "user" => {"text" => "pass"}) @session.fills_in "user_text", :with => "pass" @session.clicks_button end it "should_fail_if_input_not_found" do @response.stubs(:body).returns(<<-EOS)
EOS lambda { @session.fills_in "Email", :with => "foo@example.com" }.should raise_error end it "should_allow_overriding_default_form_values" do @response.stubs(:body).returns(<<-EOS)
EOS @session.expects(:post_via_redirect).with("/login", "user" => {"email" => "foo@example.com"}) @session.fills_in "user[email]", :with => "foo@example.com" @session.clicks_button end it "should_choose_the_shortest_label_match" do @response.stubs(:body).returns(<<-EOS)
EOS @session.expects(:post_via_redirect).with("/login", "user" => {"mail1" => "", "mail2" => "value"}) @session.fills_in "Some", :with => "value" @session.clicks_button end it "should_choose_the_first_label_match_if_closest_is_a_tie" do @response.stubs(:body).returns(<<-EOS)
EOS @session.expects(:post_via_redirect).with("/login", "user" => {"mail1" => "value", "mail2" => ""}) @session.fills_in "Some mail", :with => "value" @session.clicks_button end it "should_anchor_label_matches_to_start_of_label" do @response.stubs(:body).returns(<<-EOS)
EOS lambda { @session.fills_in "mail", :with => "value" }.should raise_error end it "should_anchor_label_matches_to_word_boundaries" do @response.stubs(:body).returns(<<-EOS)
EOS lambda { @session.fills_in "Email", :with => "value" }.should raise_error end it "should_work_with_inputs_nested_in_labels" do @response.stubs(:body).returns(<<-EOS)
EOS @session.expects(:post_via_redirect).with("/login", "user" => {"email" => "foo@example.com"}) @session.fills_in "Email", :with => "foo@example.com" @session.clicks_button end it "should_work_with_full_input_names" do @response.stubs(:body).returns(<<-EOS)
EOS @session.expects(:post_via_redirect).with("/login", "user" => {"email" => "foo@example.com"}) @session.fills_in "user[email]", :with => "foo@example.com" @session.clicks_button end it "should_work_with_symbols" do @response.stubs(:body).returns(<<-EOS)
EOS @session.expects(:post_via_redirect).with("/login", "user" => {"email" => "foo@example.com"}) @session.fills_in :email, :with => "foo@example.com" @session.clicks_button end end