Compare commits
2 Commits
rails_atta
...
master
Author | SHA1 | Date |
---|---|---|
John Bintz | 5e4ffeae9f | |
John Bintz | 0856d8d405 |
|
@ -1,18 +1,18 @@
|
|||
coverage
|
||||
.DS_Store
|
||||
pkg
|
||||
doc
|
||||
ri
|
||||
email.txt
|
||||
.svn
|
||||
log
|
||||
.project
|
||||
.loadpath
|
||||
*.swp
|
||||
results
|
||||
test_apps
|
||||
*.tmproj
|
||||
*.log
|
||||
*.pid
|
||||
*.swp
|
||||
*.tmproj
|
||||
.DS_Store
|
||||
.loadpath
|
||||
.project
|
||||
bin
|
||||
coverage
|
||||
doc
|
||||
email.txt
|
||||
log
|
||||
pkg
|
||||
results
|
||||
ri
|
||||
test_apps
|
||||
tmp
|
||||
vendor/gems
|
||||
|
|
|
@ -110,7 +110,7 @@ module Webrat
|
|||
when :rack, :sinatra
|
||||
Rack::Utils.parse_nested_query(query_string)
|
||||
else
|
||||
query_string.split('&').map {|query| { query.split('=').first => query.split('=').last }}
|
||||
Hash[query_string.split('&').map {|query| [ query.split('=').first, query.split('=').last ]}]
|
||||
end
|
||||
end
|
||||
|
||||
|
|
|
@ -43,16 +43,4 @@ class WebratController < ApplicationController
|
|||
def within
|
||||
end
|
||||
|
||||
def file
|
||||
@album = Album.new
|
||||
|
||||
3.times { @album.photos.build }
|
||||
end
|
||||
|
||||
def post_file
|
||||
album = Album.new(params[:album])
|
||||
|
||||
render :text => "#{album.photos.size} photos."
|
||||
end
|
||||
|
||||
end
|
||||
|
|
|
@ -1,4 +0,0 @@
|
|||
class Album < ActiveRecord::Base
|
||||
has_many :photos
|
||||
accepts_nested_attributes_for :photos
|
||||
end
|
|
@ -1,3 +0,0 @@
|
|||
class Photo < ActiveRecord::Base
|
||||
belongs_to :album
|
||||
end
|
|
@ -1,14 +0,0 @@
|
|||
<%- count = 0 %>
|
||||
|
||||
<% form_for(@album, :url => post_file_path, :html => {:multipart => true}) do |f| %>
|
||||
<p>
|
||||
<% f.fields_for :photos do |uf| %>
|
||||
<%= uf.label :image, "Photo #{count += 1}" %>
|
||||
<%= uf.file_field :image %><br/>
|
||||
<% end %>
|
||||
</p>
|
||||
|
||||
<p>
|
||||
<%= f.submit 'Create' %>
|
||||
</p>
|
||||
<% end %>
|
|
@ -1,7 +0,0 @@
|
|||
development:
|
||||
adapter: sqlite3
|
||||
database: "tmp/development.sqlite3"
|
||||
|
||||
test:
|
||||
adapter: sqlite3
|
||||
database: "tmp/test.sqlite3"
|
|
@ -3,7 +3,7 @@
|
|||
require File.join(File.dirname(__FILE__), 'boot')
|
||||
|
||||
Rails::Initializer.run do |config|
|
||||
# config.frameworks -= [ :active_record, :active_resource, :action_mailer ]
|
||||
config.frameworks -= [ :active_record, :active_resource, :action_mailer ]
|
||||
config.time_zone = 'UTC'
|
||||
config.action_controller.session = {
|
||||
:session_key => '_rails_app_session',
|
||||
|
|
|
@ -13,8 +13,6 @@ ActionController::Routing::Routes.draw do |map|
|
|||
webrat.redirect_to_show_params "/redirect_to_show_params", :action => "redirect_to_show_params"
|
||||
webrat.show_params "/show_params", :action => "show_params"
|
||||
webrat.within "/within", :action => "within"
|
||||
webrat.file "/file", :action => "file"
|
||||
webrat.post_file "/post_file", :action => "post_file"
|
||||
|
||||
webrat.root :action => "form"
|
||||
end
|
||||
|
|
|
@ -1,10 +0,0 @@
|
|||
ActiveRecord::Schema.define(:version => 0) do
|
||||
create_table :albums, :force => true do |t|
|
||||
t.string :name
|
||||
end
|
||||
|
||||
create_table :photos, :force => true do |t|
|
||||
t.string :image
|
||||
t.integer :album_id
|
||||
end
|
||||
end
|
Binary file not shown.
Before Width: | Height: | Size: 3.4 KiB |
|
@ -107,18 +107,6 @@ class WebratTest < ActionController::IntegrationTest
|
|||
end
|
||||
end
|
||||
|
||||
test "post nested params for files" do
|
||||
visit "/file"
|
||||
|
||||
attach_file "Photo 1", "test/fixtures/image.jpg", "image/jpeg"
|
||||
attach_file "Photo 2", "test/fixtures/image.jpg", "image/jpeg"
|
||||
attach_file "Photo 3", "test/fixtures/image.jpg", "image/jpeg"
|
||||
|
||||
click_button "Create"
|
||||
|
||||
assert_contain "3 photos."
|
||||
end
|
||||
|
||||
# Firefox detects and prevents infinite redirects under Selenium
|
||||
unless ENV['WEBRAT_INTEGRATION_MODE'] == 'selenium'
|
||||
test "should detect infinite redirects" do
|
||||
|
|
|
@ -1,6 +1,5 @@
|
|||
ENV["RAILS_ENV"] = "test"
|
||||
require File.expand_path(File.dirname(__FILE__) + "/../config/environment")
|
||||
load File.expand_path(File.dirname(__FILE__) + "/../db/schema.rb")
|
||||
require 'test_help'
|
||||
|
||||
# begin
|
||||
|
|
|
@ -48,4 +48,22 @@ describe "Multiple nested params" do
|
|||
webrat_session.should_receive(:post).with("/family", params)
|
||||
click_button
|
||||
end
|
||||
|
||||
it "should correctly construct a query string" do
|
||||
Webrat.configuration.mode = :mechanize
|
||||
|
||||
with_html <<-HTML
|
||||
<html>
|
||||
<form method="get" action="/search">
|
||||
<input type="text" name="query" value="my-query" />
|
||||
<input type="submit" />
|
||||
</form>
|
||||
</html>
|
||||
HTML
|
||||
|
||||
params = { "query" => "my-query" }
|
||||
|
||||
webrat_session.should_receive(:get).with("/search", params)
|
||||
click_button
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Reference in New Issue