require File.expand_path(File.dirname(__FILE__) + "/spec_helper") describe "attaches_file" do before do @session = ActionController::Integration::Session.new @session.stubs(:assert_response) @session.stubs(:get_via_redirect) @session.stubs(:response).returns(@response=mock) @filename = __FILE__ @uploaded_file = mock ActionController::TestUploadedFile.stubs(:new).returns(@uploaded_file) end it "should fail if no file field found" do @response.stubs(:body).returns(<<-EOS)
EOS lambda { @session.attaches_file("Doc", "/some/path") }.should raise_error end it "should submit empty strings for blank file fields" do @response.stubs(:body).returns(<<-EOS)
EOS @session.expects(:post_via_redirect).with("/widgets", { "widget" => { "file" => "" } }) @session.clicks_button end it "should submit the attached file" do @response.stubs(:body).returns(<<-EOS)
EOS @session.expects(:post_via_redirect).with("/widgets", { "widget" => { "file" => @uploaded_file } }) @session.attaches_file "Document", @filename @session.clicks_button end it "should support collections" do @response.stubs(:body).returns(<<-EOS)
EOS @session.expects(:post_via_redirect).with("/widgets", { "widget" => { "files" => [@uploaded_file, @uploaded_file] } }) @session.attaches_file "Document", @filename @session.attaches_file "Spreadsheet", @filename @session.clicks_button end end