application_controller_test.rb
2.62 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
require File.dirname(__FILE__) + '/../test_helper'
require 'test_controller'
# Re-raise errors caught by the controller.
class TestController; def rescue_action(e) raise e end; end
class ApplicationControllerTest < Test::Unit::TestCase
fixtures :profiles, :virtual_communities, :domains, :design_boxes
def setup
@controller = TestController.new
@request = ActionController::TestRequest.new
@response = ActionController::TestResponse.new
end
def test_exist_virtual_community_variable_to_helper_virtual_community_identification
get :index
assert_not_nil assigns(:virtual_community)
end
def test_get_against_post_only
get :post_only
assert_redirected_to :action => 'index'
end
def test_post_against_post_only
post :post_only
assert_response :success
assert_tag :tag => 'span', :content => 'post_only'
end
def test_should_generate_help_box_when_passing_string
get :help_with_string
assert_tag({
:tag => 'div',
:attributes => { :class => 'help_box'},
:descendant => {
:tag => 'div',
:content => /my_help_message/,
:attributes => { :class => 'help_message', :style => /display:\s+none/}
}
})
end
def test_should_generate_help_box_when_passing_block
get :help_with_block
assert_tag({
:tag => 'div',
:attributes => { :class => 'help_box'},
:descendant => {
:tag => 'div',
:content => /my_help_message/,
:attributes => { :class => 'help_message', :style => /display:\s+none/}
}
})
end
def test_should_generate_help_box_expanding_textile_markup_when_passing_string
get :help_textile_with_string
assert_tag({
:tag => 'div',
:attributes => { :class => 'help_box'},
:descendant => {
:tag => 'div',
:attributes => { :class => 'help_message', :style => /display:\s+none/},
:descendant => {
:tag => 'strong',
:content => /my_bold_help_message/
}
}
})
end
def test_should_generate_help_box_expanding_textile_markup_when_passing_block
get :help_textile_with_block
assert_tag({
:tag => 'div',
:attributes => { :class => 'help_box'},
:descendant => {
:tag => 'div',
:attributes => { :class => 'help_message', :style => /display:\s+none/},
:descendant => {
:tag => 'strong',
:content => /my_bold_help_message/
}
}
})
end
def test_shouldnt_generate_help_box_markup_when_no_block_is_passed
get :help_without_block
assert_no_tag({
:tag => 'div',
:attributes => { :class => 'help_box'},
})
end
end