72 lines
2.2 KiB
Ruby
72 lines
2.2 KiB
Ruby
require 'test_helper'
|
|
|
|
class InfoWindowControllerTest < ActionController::TestCase
|
|
include Devise::TestHelpers
|
|
setup do
|
|
@thing = things(:thing_1)
|
|
@user = users(:erik)
|
|
end
|
|
|
|
test 'should thank the user if the user the hydrant is adopted by the user' do
|
|
sign_in @user
|
|
@thing.user_id = @user.id
|
|
@thing.save!
|
|
get :index, thing_id: @thing.id
|
|
assert_not_nil assigns :thing
|
|
assert_response :success
|
|
assert_template 'users/thank_you'
|
|
assert_select 'h2', 'Thank you for adopting this hydrant!'
|
|
assert_select 'form#abandon_form' do
|
|
assert_select '[action=?]', "/things"
|
|
assert_select '[method=?]', 'post'
|
|
end
|
|
assert_select 'input[name="_method"]' do
|
|
assert_select '[type=?]', 'hidden'
|
|
assert_select '[value=?]', 'put'
|
|
end
|
|
assert_select 'input[name="commit"]' do
|
|
assert_select '[type=?]', 'submit'
|
|
assert_select '[value=?]', 'Abandon this hydrant'
|
|
end
|
|
end
|
|
|
|
test 'should show the profile if the hydrant is adopted' do
|
|
@thing.user_id = @user.id
|
|
@thing.save!
|
|
get :index, thing_id: @thing.id
|
|
assert_not_nil assigns :thing
|
|
assert_response :success
|
|
assert_template 'users/profile'
|
|
assert_select 'h2', /This hydrant has been adopted\s+by #{@user.name}\s+of #{@user.organization}/
|
|
end
|
|
|
|
test 'should show adoption form if hydrant is not adopted' do
|
|
sign_in @user
|
|
get :index, thing_id: @thing.id
|
|
assert_not_nil assigns :thing
|
|
assert_response :success
|
|
assert_template :adopt
|
|
assert_select 'h2', 'Adopt this Hydrant'
|
|
assert_select 'form#adoption_form' do
|
|
assert_select '[action=?]', "/things"
|
|
assert_select '[method=?]', 'post'
|
|
end
|
|
assert_select 'input[name="_method"]' do
|
|
assert_select '[type=?]', 'hidden'
|
|
assert_select '[value=?]', 'put'
|
|
end
|
|
assert_select 'input[name="commit"]' do
|
|
assert_select '[type=?]', 'submit'
|
|
assert_select '[value=?]', 'Adopt!'
|
|
end
|
|
end
|
|
|
|
test 'should show sign-in form if signed out' do
|
|
get :index, thing_id: @thing.id
|
|
assert_not_nil assigns :thing
|
|
assert_response :success
|
|
assert_template 'users/sign_in'
|
|
assert_select 'h2', 'Sign in to adopt this Hydrant'
|
|
end
|
|
end
|