contact_controller_test.rb
5.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
require File.dirname(__FILE__) + '/../test_helper'
require 'contact_controller'
# Re-raise errors caught by the controller.
class ContactController; def rescue_action(e) raise e end; end
class ContactControllerTest < Test::Unit::TestCase
all_fixtures
def setup
@controller = ContactController.new
@request = ActionController::TestRequest.new
@response = ActionController::TestResponse.new
@profile = create_user('contact_test_user').person
@enterprise = Enterprise.create!(:identifier => 'contact_test_enterprise', :name => 'Test contact enteprise')
login_as('contact_test_user')
end
attr_reader :profile, :enterprise
should 'respond to new' do
get :new, :profile => enterprise.identifier
assert_response :success
end
should 'display destinatary name in title' do
get :new, :profile => enterprise.identifier
assert_tag :tag => 'h1', :content => "Contact #{enterprise.name}"
end
should 'add form to create contact via post' do
get :new, :profile => enterprise.identifier
assert_tag :tag => 'form', :attributes => { :action => "/contact/#{enterprise.identifier}/new", :method => 'post' }
end
should 'display input for destinatary email' do
get :new, :profile => enterprise.identifier
assert_tag :tag => 'input', :attributes => { :name => 'contact[email]', :type => 'text' }
end
should 'display input for message' do
get :new, :profile => enterprise.identifier
assert_tag :tag => 'textarea', :attributes => { :name => 'contact[message]' }
end
should 'redirect back to contact page after send contact' do
post :new, :profile => enterprise.identifier, :contact => {:name => 'john', :subject => 'Hi', :email => 'visitor@mail.invalid', :message => 'Hi, all'}
assert_response :redirect
assert_redirected_to :action => 'new'
end
should 'fill email if user logged in' do
get :new, :profile => enterprise.identifier
assert_tag :tag => 'input', :attributes => {:name => 'contact[email]', :value => profile.email}
end
should 'fill name if user logged in' do
get :new, :profile => enterprise.identifier
assert_tag :tag => 'input', :attributes => {:name => 'contact[name]', :value => profile.name}
end
should 'define city and state' do
City.stubs(:exists?).returns(true)
City.stubs(:find).returns(City.new(:name => 'Camaçari'))
State.stubs(:exists?).returns(true)
State.stubs(:find).returns(State.new(:name => 'Bahia'))
post :new, :profile => enterprise.identifier, :contact => {:name => 'john', :subject => 'Hi', :email => 'visitor@mail.invalid', :message => 'Hi, all'}, :state => '1', :city => '1'
assert_equal 'Camaçari', assigns(:contact).city
assert_equal 'Bahia', assigns(:contact).state
end
should 'display checkbox for receive copy of email' do
get :new, :profile => enterprise.identifier
assert_tag :tag => 'input', :attributes => {:name => 'contact[receive_a_copy]'}
end
should 'not deliver contact if mandatory field is blank' do
post :new, :profile => enterprise.identifier, :contact => {:subject => 'Hi', :message => 'Hi, all'}
assert_response :success
assert_template 'new'
end
should 'not throws exception when city and state is blank' do
State.expects(:exists?).with('').never
City.expects(:exists?).with('').never
assert_nothing_raised do
post :new, :profile => enterprise.identifier, :contact => {:name => 'john', :subject => 'Hi', :email => 'visitor@mail.invalid', :message => 'Hi, all', :state => '', :city => ''}
end
end
should 'not display select/city select when disable it in environment' do
get :new, :profile => profile.identifier
assert_tag :tag => 'select', :attributes => {:name => 'state'}
env = Environment.default
env.enable('disable_select_city_for_contact')
env.save!
get :new, :profile => profile.identifier
assert_no_tag :tag => 'select', :attributes => {:name => 'state'}
end
should 'be able to post contact while inverse captcha field filled' do
post :new, :profile => enterprise.identifier, :contact => {:name => 'john', :subject => 'Hi', :email => 'visitor@mail.invalid', :message => 'Hi, all', :state => '', :city => ''}
assert_response :redirect
assert_redirected_to :action => 'new'
end
should 'not be able to post contact while inverse captcha field filled' do
post :new, :profile => enterprise.identifier, @controller.icaptcha_field => 'filled', :contact => {:name => 'john', :subject => 'Hi', :email => 'visitor@mail.invalid', :message => 'Hi, all', :state => '', :city => ''}
assert_response :success
assert_template 'new'
end
should 'not allow if not logged' do
logout
get :new, :profile => profile.identifier
assert_response :redirect
assert_redirected_to :controller => 'account', :action => 'login'
end
should 'identify sender' do
post :new, :profile => enterprise.identifier, :contact => {:name => 'john', :subject => 'Hi', :email => 'visitor@mail.invalid', :message => 'Hi, all', :state => '', :city => ''}
assert_equal Person['contact_test_user'], assigns(:contact).sender
end
end