ghazel-erubis_rails_helper 0.9.5
Sign up to get free protection for your applications and to get access to all the features.
- data/README.rdoc +66 -0
- data/lib/erubis_rails_helper/erubis/generator.rb +100 -0
- data/lib/erubis_rails_helper/template_handlers/erubis.rb +260 -0
- data/lib/erubis_rails_helper.rb +20 -0
- data/test/abstract_unit.rb +51 -0
- data/test/controller/action_pack_assertions_test.rb +516 -0
- data/test/controller/addresses_render_test.rb +37 -0
- data/test/controller/assert_select_test.rb +734 -0
- data/test/controller/base_test.rb +217 -0
- data/test/controller/benchmark_test.rb +32 -0
- data/test/controller/caching_test.rb +690 -0
- data/test/controller/capture_test.rb +66 -0
- data/test/controller/content_type_test.rb +168 -0
- data/test/controller/controller_fixtures/app/controllers/admin/user_controller.rb +0 -0
- data/test/controller/controller_fixtures/app/controllers/user_controller.rb +0 -0
- data/test/controller/controller_fixtures/vendor/plugins/bad_plugin/lib/plugin_controller.rb +0 -0
- data/test/controller/cookie_test.rb +111 -0
- data/test/controller/deprecation/deprecated_base_methods_test.rb +32 -0
- data/test/controller/dispatcher_test.rb +103 -0
- data/test/controller/fake_controllers.rb +33 -0
- data/test/controller/fake_models.rb +19 -0
- data/test/controller/filter_params_test.rb +49 -0
- data/test/controller/filters_test.rb +885 -0
- data/test/controller/flash_test.rb +142 -0
- data/test/controller/header_test.rb +14 -0
- data/test/controller/helper_test.rb +224 -0
- data/test/controller/html-scanner/cdata_node_test.rb +15 -0
- data/test/controller/html-scanner/document_test.rb +148 -0
- data/test/controller/html-scanner/node_test.rb +89 -0
- data/test/controller/html-scanner/sanitizer_test.rb +273 -0
- data/test/controller/html-scanner/tag_node_test.rb +238 -0
- data/test/controller/html-scanner/text_node_test.rb +50 -0
- data/test/controller/html-scanner/tokenizer_test.rb +131 -0
- data/test/controller/http_basic_authentication_test.rb +88 -0
- data/test/controller/http_digest_authentication_test.rb +178 -0
- data/test/controller/integration_test.rb +417 -0
- data/test/controller/layout_test.rb +204 -0
- data/test/controller/logging_test.rb +46 -0
- data/test/controller/middleware_stack_test.rb +90 -0
- data/test/controller/mime_responds_test.rb +536 -0
- data/test/controller/mime_type_test.rb +93 -0
- data/test/controller/polymorphic_routes_test.rb +293 -0
- data/test/controller/rack_test.rb +294 -0
- data/test/controller/record_identifier_test.rb +139 -0
- data/test/controller/redirect_test.rb +282 -0
- data/test/controller/render_test.rb +1752 -0
- data/test/controller/request/json_params_parsing_test.rb +45 -0
- data/test/controller/request/multipart_params_parsing_test.rb +223 -0
- data/test/controller/request/query_string_parsing_test.rb +120 -0
- data/test/controller/request/url_encoded_params_parsing_test.rb +184 -0
- data/test/controller/request/xml_params_parsing_test.rb +88 -0
- data/test/controller/request_forgery_protection_test.rb +246 -0
- data/test/controller/request_test.rb +407 -0
- data/test/controller/rescue_test.rb +536 -0
- data/test/controller/resources_test.rb +1341 -0
- data/test/controller/routing_test.rb +2557 -0
- data/test/controller/selector_test.rb +628 -0
- data/test/controller/send_file_test.rb +161 -0
- data/test/controller/session/cookie_store_test.rb +239 -0
- data/test/controller/session/mem_cache_store_test.rb +127 -0
- data/test/controller/session/test_session_test.rb +58 -0
- data/test/controller/test_test.rb +692 -0
- data/test/controller/translation_test.rb +26 -0
- data/test/controller/url_rewriter_test.rb +359 -0
- data/test/controller/verification_test.rb +270 -0
- data/test/controller/view_paths_test.rb +141 -0
- data/test/controller/webservice_test.rb +260 -0
- data/test/fixtures/alternate_helpers/foo_helper.rb +3 -0
- data/test/fixtures/company.rb +10 -0
- data/test/fixtures/developer.rb +9 -0
- data/test/fixtures/helpers/abc_helper.rb +5 -0
- data/test/fixtures/helpers/fun/games_helper.rb +3 -0
- data/test/fixtures/helpers/fun/pdf_helper.rb +3 -0
- data/test/fixtures/mascot.rb +3 -0
- data/test/fixtures/project.rb +3 -0
- data/test/fixtures/reply.rb +7 -0
- data/test/fixtures/topic.rb +3 -0
- data/test/template/asset_tag_helper_test.rb +713 -0
- data/test/template/atom_feed_helper_test.rb +286 -0
- data/test/template/benchmark_helper_test.rb +86 -0
- data/test/template/compiled_templates_test.rb +203 -0
- data/test/template/date_helper_i18n_test.rb +120 -0
- data/test/template/date_helper_test.rb +2469 -0
- data/test/template/erb_util_test.rb +24 -0
- data/test/template/form_helper_test.rb +1176 -0
- data/test/template/form_options_helper_test.rb +751 -0
- data/test/template/form_tag_helper_test.rb +327 -0
- data/test/template/javascript_helper_test.rb +106 -0
- data/test/template/number_helper_i18n_test.rb +69 -0
- data/test/template/number_helper_test.rb +128 -0
- data/test/template/prototype_helper_test.rb +639 -0
- data/test/template/record_tag_helper_test.rb +58 -0
- data/test/template/render_test.rb +291 -0
- data/test/template/sanitize_helper_test.rb +48 -0
- data/test/template/scriptaculous_helper_test.rb +90 -0
- data/test/template/tag_helper_test.rb +97 -0
- data/test/template/test_test.rb +54 -0
- data/test/template/text_helper_test.rb +520 -0
- data/test/template/translation_helper_test.rb +32 -0
- data/test/template/url_helper_test.rb +614 -0
- data/test/test_erubis_rails_helper.rb +4 -0
- data/test/testing_sandbox.rb +15 -0
- data/test/view/test_case_test.rb +8 -0
- metadata +174 -0
@@ -0,0 +1,139 @@
|
|
1
|
+
require 'abstract_unit'
|
2
|
+
|
3
|
+
class Comment
|
4
|
+
attr_reader :id
|
5
|
+
def save; @id = 1 end
|
6
|
+
def new_record?; @id.nil? end
|
7
|
+
def name
|
8
|
+
@id.nil? ? 'new comment' : "comment ##{@id}"
|
9
|
+
end
|
10
|
+
end
|
11
|
+
|
12
|
+
class Comment::Nested < Comment; end
|
13
|
+
|
14
|
+
class Test::Unit::TestCase
|
15
|
+
protected
|
16
|
+
def comments_url
|
17
|
+
'http://www.example.com/comments'
|
18
|
+
end
|
19
|
+
|
20
|
+
def comment_url(comment)
|
21
|
+
"http://www.example.com/comments/#{comment.id}"
|
22
|
+
end
|
23
|
+
end
|
24
|
+
|
25
|
+
|
26
|
+
class RecordIdentifierTest < Test::Unit::TestCase
|
27
|
+
include ActionController::RecordIdentifier
|
28
|
+
|
29
|
+
def setup
|
30
|
+
@klass = Comment
|
31
|
+
@record = @klass.new
|
32
|
+
@singular = 'comment'
|
33
|
+
@plural = 'comments'
|
34
|
+
end
|
35
|
+
|
36
|
+
def test_dom_id_with_new_record
|
37
|
+
assert_equal "new_#{@singular}", dom_id(@record)
|
38
|
+
end
|
39
|
+
|
40
|
+
def test_dom_id_with_new_record_and_prefix
|
41
|
+
assert_equal "custom_prefix_#{@singular}", dom_id(@record, :custom_prefix)
|
42
|
+
end
|
43
|
+
|
44
|
+
def test_dom_id_with_saved_record
|
45
|
+
@record.save
|
46
|
+
assert_equal "#{@singular}_1", dom_id(@record)
|
47
|
+
end
|
48
|
+
|
49
|
+
def test_dom_id_with_prefix
|
50
|
+
@record.save
|
51
|
+
assert_equal "edit_#{@singular}_1", dom_id(@record, :edit)
|
52
|
+
end
|
53
|
+
|
54
|
+
def test_partial_path
|
55
|
+
expected = "#{@plural}/#{@singular}"
|
56
|
+
assert_equal expected, partial_path(@record)
|
57
|
+
assert_equal expected, partial_path(Comment)
|
58
|
+
end
|
59
|
+
|
60
|
+
def test_partial_path_with_namespaced_controller_path
|
61
|
+
expected = "admin/#{@plural}/#{@singular}"
|
62
|
+
assert_equal expected, partial_path(@record, "admin/posts")
|
63
|
+
assert_equal expected, partial_path(@klass, "admin/posts")
|
64
|
+
end
|
65
|
+
|
66
|
+
def test_partial_path_with_not_namespaced_controller_path
|
67
|
+
expected = "#{@plural}/#{@singular}"
|
68
|
+
assert_equal expected, partial_path(@record, "posts")
|
69
|
+
assert_equal expected, partial_path(@klass, "posts")
|
70
|
+
end
|
71
|
+
|
72
|
+
def test_dom_class
|
73
|
+
assert_equal @singular, dom_class(@record)
|
74
|
+
end
|
75
|
+
|
76
|
+
def test_dom_class_with_prefix
|
77
|
+
assert_equal "custom_prefix_#{@singular}", dom_class(@record, :custom_prefix)
|
78
|
+
end
|
79
|
+
|
80
|
+
def test_singular_class_name
|
81
|
+
assert_equal @singular, singular_class_name(@record)
|
82
|
+
end
|
83
|
+
|
84
|
+
def test_singular_class_name_for_class
|
85
|
+
assert_equal @singular, singular_class_name(@klass)
|
86
|
+
end
|
87
|
+
|
88
|
+
def test_plural_class_name
|
89
|
+
assert_equal @plural, plural_class_name(@record)
|
90
|
+
end
|
91
|
+
|
92
|
+
def test_plural_class_name_for_class
|
93
|
+
assert_equal @plural, plural_class_name(@klass)
|
94
|
+
end
|
95
|
+
|
96
|
+
private
|
97
|
+
def method_missing(method, *args)
|
98
|
+
RecordIdentifier.send(method, *args)
|
99
|
+
end
|
100
|
+
end
|
101
|
+
|
102
|
+
class NestedRecordIdentifierTest < RecordIdentifierTest
|
103
|
+
def setup
|
104
|
+
@klass = Comment::Nested
|
105
|
+
@record = @klass.new
|
106
|
+
@singular = 'comment_nested'
|
107
|
+
@plural = 'comment_nesteds'
|
108
|
+
end
|
109
|
+
|
110
|
+
def test_partial_path
|
111
|
+
expected = "comment/nesteds/nested"
|
112
|
+
assert_equal expected, partial_path(@record)
|
113
|
+
assert_equal expected, partial_path(Comment::Nested)
|
114
|
+
end
|
115
|
+
|
116
|
+
def test_partial_path_with_namespaced_controller_path
|
117
|
+
expected = "admin/comment/nesteds/nested"
|
118
|
+
assert_equal expected, partial_path(@record, "admin/posts")
|
119
|
+
assert_equal expected, partial_path(@klass, "admin/posts")
|
120
|
+
end
|
121
|
+
|
122
|
+
def test_partial_path_with_deeper_namespaced_controller_path
|
123
|
+
expected = "deeper/admin/comment/nesteds/nested"
|
124
|
+
assert_equal expected, partial_path(@record, "deeper/admin/posts")
|
125
|
+
assert_equal expected, partial_path(@klass, "deeper/admin/posts")
|
126
|
+
end
|
127
|
+
|
128
|
+
def test_partial_path_with_even_deeper_namespaced_controller_path
|
129
|
+
expected = "even/more/deeper/admin/comment/nesteds/nested"
|
130
|
+
assert_equal expected, partial_path(@record, "even/more/deeper/admin/posts")
|
131
|
+
assert_equal expected, partial_path(@klass, "even/more/deeper/admin/posts")
|
132
|
+
end
|
133
|
+
|
134
|
+
def test_partial_path_with_not_namespaced_controller_path
|
135
|
+
expected = "comment/nesteds/nested"
|
136
|
+
assert_equal expected, partial_path(@record, "posts")
|
137
|
+
assert_equal expected, partial_path(@klass, "posts")
|
138
|
+
end
|
139
|
+
end
|
@@ -0,0 +1,282 @@
|
|
1
|
+
require 'abstract_unit'
|
2
|
+
|
3
|
+
class WorkshopsController < ActionController::Base
|
4
|
+
end
|
5
|
+
|
6
|
+
class Workshop
|
7
|
+
attr_accessor :id, :new_record
|
8
|
+
|
9
|
+
def initialize(id, new_record)
|
10
|
+
@id, @new_record = id, new_record
|
11
|
+
end
|
12
|
+
|
13
|
+
def new_record?
|
14
|
+
@new_record
|
15
|
+
end
|
16
|
+
|
17
|
+
def to_s
|
18
|
+
id.to_s
|
19
|
+
end
|
20
|
+
end
|
21
|
+
|
22
|
+
class RedirectController < ActionController::Base
|
23
|
+
def simple_redirect
|
24
|
+
redirect_to :action => "hello_world"
|
25
|
+
end
|
26
|
+
|
27
|
+
def redirect_with_status
|
28
|
+
redirect_to({:action => "hello_world", :status => 301})
|
29
|
+
end
|
30
|
+
|
31
|
+
def redirect_with_status_hash
|
32
|
+
redirect_to({:action => "hello_world"}, {:status => 301})
|
33
|
+
end
|
34
|
+
|
35
|
+
def url_redirect_with_status
|
36
|
+
redirect_to("http://www.example.com", :status => :moved_permanently)
|
37
|
+
end
|
38
|
+
|
39
|
+
def url_redirect_with_status_hash
|
40
|
+
redirect_to("http://www.example.com", {:status => 301})
|
41
|
+
end
|
42
|
+
|
43
|
+
def relative_url_redirect_with_status
|
44
|
+
redirect_to("/things/stuff", :status => :found)
|
45
|
+
end
|
46
|
+
|
47
|
+
def relative_url_redirect_with_status_hash
|
48
|
+
redirect_to("/things/stuff", {:status => 301})
|
49
|
+
end
|
50
|
+
|
51
|
+
def redirect_to_back_with_status
|
52
|
+
redirect_to :back, :status => 307
|
53
|
+
end
|
54
|
+
|
55
|
+
def host_redirect
|
56
|
+
redirect_to :action => "other_host", :only_path => false, :host => 'other.test.host'
|
57
|
+
end
|
58
|
+
|
59
|
+
def module_redirect
|
60
|
+
redirect_to :controller => 'module_test/module_redirect', :action => "hello_world"
|
61
|
+
end
|
62
|
+
|
63
|
+
def redirect_with_assigns
|
64
|
+
@hello = "world"
|
65
|
+
redirect_to :action => "hello_world"
|
66
|
+
end
|
67
|
+
|
68
|
+
def redirect_to_url
|
69
|
+
redirect_to "http://www.rubyonrails.org/"
|
70
|
+
end
|
71
|
+
|
72
|
+
def redirect_to_url_with_unescaped_query_string
|
73
|
+
redirect_to "http://dev.rubyonrails.org/query?status=new"
|
74
|
+
end
|
75
|
+
|
76
|
+
def redirect_to_url_with_complex_scheme
|
77
|
+
redirect_to "x-test+scheme.complex:redirect"
|
78
|
+
end
|
79
|
+
|
80
|
+
def redirect_to_back
|
81
|
+
redirect_to :back
|
82
|
+
end
|
83
|
+
|
84
|
+
def redirect_to_existing_record
|
85
|
+
redirect_to Workshop.new(5, false)
|
86
|
+
end
|
87
|
+
|
88
|
+
def redirect_to_new_record
|
89
|
+
redirect_to Workshop.new(5, true)
|
90
|
+
end
|
91
|
+
|
92
|
+
def redirect_to_nil
|
93
|
+
redirect_to nil
|
94
|
+
end
|
95
|
+
|
96
|
+
def rescue_errors(e) raise e end
|
97
|
+
|
98
|
+
def rescue_action(e) raise end
|
99
|
+
|
100
|
+
protected
|
101
|
+
def dashbord_url(id, message)
|
102
|
+
url_for :action => "dashboard", :params => { "id" => id, "message" => message }
|
103
|
+
end
|
104
|
+
end
|
105
|
+
|
106
|
+
class RedirectTest < ActionController::TestCase
|
107
|
+
tests RedirectController
|
108
|
+
|
109
|
+
def test_simple_redirect
|
110
|
+
get :simple_redirect
|
111
|
+
assert_response :redirect
|
112
|
+
assert_equal "http://test.host/redirect/hello_world", redirect_to_url
|
113
|
+
end
|
114
|
+
|
115
|
+
def test_redirect_with_no_status
|
116
|
+
get :simple_redirect
|
117
|
+
assert_response 302
|
118
|
+
assert_equal "http://test.host/redirect/hello_world", redirect_to_url
|
119
|
+
end
|
120
|
+
|
121
|
+
def test_redirect_with_status
|
122
|
+
get :redirect_with_status
|
123
|
+
assert_response 301
|
124
|
+
assert_equal "http://test.host/redirect/hello_world", redirect_to_url
|
125
|
+
end
|
126
|
+
|
127
|
+
def test_redirect_with_status_hash
|
128
|
+
get :redirect_with_status_hash
|
129
|
+
assert_response 301
|
130
|
+
assert_equal "http://test.host/redirect/hello_world", redirect_to_url
|
131
|
+
end
|
132
|
+
|
133
|
+
def test_url_redirect_with_status
|
134
|
+
get :url_redirect_with_status
|
135
|
+
assert_response 301
|
136
|
+
assert_equal "http://www.example.com", redirect_to_url
|
137
|
+
end
|
138
|
+
|
139
|
+
def test_url_redirect_with_status_hash
|
140
|
+
get :url_redirect_with_status_hash
|
141
|
+
assert_response 301
|
142
|
+
assert_equal "http://www.example.com", redirect_to_url
|
143
|
+
end
|
144
|
+
|
145
|
+
|
146
|
+
def test_relative_url_redirect_with_status
|
147
|
+
get :relative_url_redirect_with_status
|
148
|
+
assert_response 302
|
149
|
+
assert_equal "http://test.host/things/stuff", redirect_to_url
|
150
|
+
end
|
151
|
+
|
152
|
+
def test_relative_url_redirect_with_status_hash
|
153
|
+
get :relative_url_redirect_with_status_hash
|
154
|
+
assert_response 301
|
155
|
+
assert_equal "http://test.host/things/stuff", redirect_to_url
|
156
|
+
end
|
157
|
+
|
158
|
+
def test_redirect_to_back_with_status
|
159
|
+
@request.env["HTTP_REFERER"] = "http://www.example.com/coming/from"
|
160
|
+
get :redirect_to_back_with_status
|
161
|
+
assert_response 307
|
162
|
+
assert_equal "http://www.example.com/coming/from", redirect_to_url
|
163
|
+
end
|
164
|
+
|
165
|
+
def test_simple_redirect_using_options
|
166
|
+
get :host_redirect
|
167
|
+
assert_response :redirect
|
168
|
+
assert_redirected_to :action => "other_host", :only_path => false, :host => 'other.test.host'
|
169
|
+
end
|
170
|
+
|
171
|
+
def test_module_redirect
|
172
|
+
get :module_redirect
|
173
|
+
assert_response :redirect
|
174
|
+
assert_redirected_to "http://test.host/module_test/module_redirect/hello_world"
|
175
|
+
end
|
176
|
+
|
177
|
+
def test_module_redirect_using_options
|
178
|
+
get :module_redirect
|
179
|
+
assert_response :redirect
|
180
|
+
assert_redirected_to :controller => 'module_test/module_redirect', :action => 'hello_world'
|
181
|
+
end
|
182
|
+
|
183
|
+
def test_redirect_with_assigns
|
184
|
+
get :redirect_with_assigns
|
185
|
+
assert_response :redirect
|
186
|
+
assert_equal "world", assigns["hello"]
|
187
|
+
end
|
188
|
+
|
189
|
+
def test_redirect_to_url
|
190
|
+
get :redirect_to_url
|
191
|
+
assert_response :redirect
|
192
|
+
assert_redirected_to "http://www.rubyonrails.org/"
|
193
|
+
end
|
194
|
+
|
195
|
+
def test_redirect_to_url_with_unescaped_query_string
|
196
|
+
get :redirect_to_url_with_unescaped_query_string
|
197
|
+
assert_response :redirect
|
198
|
+
assert_redirected_to "http://dev.rubyonrails.org/query?status=new"
|
199
|
+
end
|
200
|
+
|
201
|
+
def test_redirect_to_url_with_complex_scheme
|
202
|
+
get :redirect_to_url_with_complex_scheme
|
203
|
+
assert_response :redirect
|
204
|
+
assert_equal "x-test+scheme.complex:redirect", redirect_to_url
|
205
|
+
end
|
206
|
+
|
207
|
+
def test_redirect_to_back
|
208
|
+
@request.env["HTTP_REFERER"] = "http://www.example.com/coming/from"
|
209
|
+
get :redirect_to_back
|
210
|
+
assert_response :redirect
|
211
|
+
assert_equal "http://www.example.com/coming/from", redirect_to_url
|
212
|
+
end
|
213
|
+
|
214
|
+
def test_redirect_to_back_with_no_referer
|
215
|
+
assert_raise(ActionController::RedirectBackError) {
|
216
|
+
@request.env["HTTP_REFERER"] = nil
|
217
|
+
get :redirect_to_back
|
218
|
+
}
|
219
|
+
end
|
220
|
+
|
221
|
+
def test_redirect_to_record
|
222
|
+
ActionController::Routing::Routes.draw do |map|
|
223
|
+
map.resources :workshops
|
224
|
+
map.connect ':controller/:action/:id'
|
225
|
+
end
|
226
|
+
|
227
|
+
get :redirect_to_existing_record
|
228
|
+
assert_equal "http://test.host/workshops/5", redirect_to_url
|
229
|
+
assert_redirected_to Workshop.new(5, false)
|
230
|
+
|
231
|
+
get :redirect_to_new_record
|
232
|
+
assert_equal "http://test.host/workshops", redirect_to_url
|
233
|
+
assert_redirected_to Workshop.new(5, true)
|
234
|
+
end
|
235
|
+
|
236
|
+
def test_redirect_with_partial_params
|
237
|
+
get :module_redirect
|
238
|
+
assert_redirected_to :action => 'hello_world'
|
239
|
+
end
|
240
|
+
|
241
|
+
def test_redirect_to_nil
|
242
|
+
assert_raise(ActionController::ActionControllerError) do
|
243
|
+
get :redirect_to_nil
|
244
|
+
end
|
245
|
+
end
|
246
|
+
end
|
247
|
+
|
248
|
+
module ModuleTest
|
249
|
+
class ModuleRedirectController < ::RedirectController
|
250
|
+
def module_redirect
|
251
|
+
redirect_to :controller => '/redirect', :action => "hello_world"
|
252
|
+
end
|
253
|
+
end
|
254
|
+
|
255
|
+
class ModuleRedirectTest < ActionController::TestCase
|
256
|
+
tests ModuleRedirectController
|
257
|
+
|
258
|
+
def test_simple_redirect
|
259
|
+
get :simple_redirect
|
260
|
+
assert_response :redirect
|
261
|
+
assert_equal "http://test.host/module_test/module_redirect/hello_world", redirect_to_url
|
262
|
+
end
|
263
|
+
|
264
|
+
def test_simple_redirect_using_options
|
265
|
+
get :host_redirect
|
266
|
+
assert_response :redirect
|
267
|
+
assert_redirected_to :action => "other_host", :only_path => false, :host => 'other.test.host'
|
268
|
+
end
|
269
|
+
|
270
|
+
def test_module_redirect
|
271
|
+
get :module_redirect
|
272
|
+
assert_response :redirect
|
273
|
+
assert_equal "http://test.host/redirect/hello_world", redirect_to_url
|
274
|
+
end
|
275
|
+
|
276
|
+
def test_module_redirect_using_options
|
277
|
+
get :module_redirect
|
278
|
+
assert_response :redirect
|
279
|
+
assert_redirected_to :controller => '/redirect', :action => "hello_world"
|
280
|
+
end
|
281
|
+
end
|
282
|
+
end
|