svenfuchs / routing-filter

routing-filter wraps around the complex beast that the Rails routing system is, allowing for unseen flexibility and power in Rails URL recognition and generation.

This URL has Read+Write access

routing-filter / spec / generation_spec.rb
100644 367 lines (292 sloc) 15.551 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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
require File.dirname(__FILE__) + '/spec_helper.rb'
 
describe 'RoutingFilter', 'url generation' do
  include RoutingFilterHelpers
 
  before :each do
    setup_environment :locale, :pagination
 
    @site = Site.new
    @section = Section.new
    @article = Article.new
  end
 
  describe "named route url_helpers" do
    describe "a not nested resource" do
      it 'does not change the section_path when given page option equals 1' do
        section_path(:id => 1, :page => 1).should == '/en/sections/1'
      end
 
      it 'appends the pages segments to section_path when given page option does not equal 1' do
        section_path(:id => 1, :page => 2).should == '/en/sections/1/pages/2'
      end
 
      it 'prepends the current locale to section_path' do
        I18n.locale = :de
        section_path(:id => 1).should == '/de/sections/1'
      end
 
      it 'prepends a given locale param to section_path' do
        I18n.locale = :de
        section_path(:id => 1, :locale => :fi).should == '/fi/sections/1'
      end
 
      it 'does not prepend a locale to section_path if given locale is false' do
        section_path(:id => 1, :locale => false).should == '/sections/1'
      end
 
      it 'works on section_path with both a locale and page option' do
        section_path(:id => 1, :locale => :fi, :page => 2).should == '/fi/sections/1/pages/2'
      end
 
      it 'should not prepend an invalid locale to section_path' do
        section_path(:id => 1, :locale => :aa).should == '/sections/1'
      end
 
      it 'should prepend a longer locale to section_path' do
        section_path(:id => 1, :locale => 'en-US').should == '/en-US/sections/1'
      end
 
      it 'should not prepend the default locale when configured not to' do
        RoutingFilter::Locale.include_default_locale = false
        section_path(:id => 1, :locale => :en).should == '/sections/1'
      end
    end
 
    describe "a nested resource" do
      it 'does not change the section_article_path when given page option equals 1' do
        section_article_path(:section_id => 1, :id => 1, :page => 1).should == '/en/sections/1/articles/1'
      end
 
      it 'appends the pages segments to section_article_path when given page option does not equal 1' do
        section_article_path(:section_id => 1, :id => 1, :page => 2).should == '/en/sections/1/articles/1/pages/2'
      end
 
      it 'prepends the current locale to section_article_path' do
        I18n.locale = :de
        section_article_path(:section_id => 1, :id => 1).should == '/de/sections/1/articles/1'
      end
 
      it 'prepends a given locale param to section_article_path' do
        I18n.locale = :de
        section_article_path(:section_id => 1, :id => 1, :locale => :fi).should == '/fi/sections/1/articles/1'
      end
 
      it 'does not prepend a locale to section_article_path if given locale is false' do
        section_article_path(:section_id => 1, :id => 1, :locale => false).should == '/sections/1/articles/1'
      end
 
      it 'works on section_article_path with both a locale and page option' do
        section_article_path(:section_id => 1, :id => 1, :locale => :fi, :page => 2).should == '/fi/sections/1/articles/1/pages/2'
      end
 
      it 'should not prepend an invalid locale to section_article_path' do
        section_article_path(:section_id => 1, :id => 1, :locale => :aa).should == '/sections/1/articles/1'
      end
 
      it 'should prepend a longer locale to section_article_path' do
        section_article_path(:section_id => 1, :id => 1, :locale => 'en-US').should == '/en-US/sections/1/articles/1'
      end
 
      it 'should not prepend the default locale when configured not to' do
        RoutingFilter::Locale.include_default_locale = false
        section_article_path(:section_id => 1, :id => 1, :locale => :en).should == '/sections/1/articles/1'
      end
    end
  end
 
  describe 'when used with named route url_helper with "optimized" generation blocks' do
    describe "a not nested resource" do
      it 'does not change the section_path when given page option equals 1' do
        section_path(1, :page => 1).should == '/en/sections/1'
      end
 
      it 'appends the pages segments to section_path when given page option does not equal 1' do
        section_path(1, :page => 2).should == '/en/sections/1/pages/2'
      end
 
      it 'prepends the current locale to section_path' do
        I18n.locale = :de
        section_path(1).should == '/de/sections/1'
      end
 
      it 'prepends a given locale param to section_path' do
        I18n.locale = :de
        section_path(1, :locale => :fi).should == '/fi/sections/1'
      end
 
      it 'does not prepend a locale to section_path if given locale is false' do
        section_path(1, :locale => false).should == '/sections/1'
      end
 
      it 'works for section_path with both a locale and page option' do
        section_path(1, :locale => :fi, :page => 2).should == '/fi/sections/1/pages/2'
      end
 
      it 'should not prepend an invalid locale to section_path' do
        section_path(1, :locale => :aa).should == '/sections/1'
      end
 
      it 'should prepend a longer locale to section_path' do
        section_path(1, :locale => 'en-US').should == '/en-US/sections/1'
      end
 
      it 'should not prepend the default locale when configured not to' do
        RoutingFilter::Locale.include_default_locale = false
        section_path(1, :locale => :en).should == '/sections/1'
      end
    end
 
    describe "a nested resource" do
      it 'does not change the section_article_path when given page option equals 1' do
        section_article_path(1, 1, :page => 1).should == '/en/sections/1/articles/1'
      end
 
      it 'appends the pages segments to section_article_path when given page option does not equal 1' do
        section_article_path(1, 1, :page => 2).should == '/en/sections/1/articles/1/pages/2'
      end
 
      it 'prepends the current locale to section_article_path' do
        I18n.locale = :de
        section_article_path(1, 1).should == '/de/sections/1/articles/1'
      end
 
      it 'prepends a given locale param to section_article_path' do
        I18n.locale = :de
        section_article_path(1, 1, :locale => :fi).should == '/fi/sections/1/articles/1'
      end
 
      it 'does not prepend a locale to section_article_path if given locale is false' do
        section_article_path(1, 1, :locale => false).should == '/sections/1/articles/1'
      end
 
      it 'works for section_article_path with both a locale and page option' do
        section_article_path(1, 1, :locale => :fi, :page => 2).should == '/fi/sections/1/articles/1/pages/2'
      end
 
      it 'should not prepend an invalid locale to section_article_path' do
        section_article_path(1, 1, :locale => :aa).should == '/sections/1/articles/1'
      end
 
      it 'should prepend a longer locale to section_article_path' do
        section_article_path(1, 1, :locale => 'en-US').should == '/en-US/sections/1/articles/1'
      end
 
      it 'should not prepend the default locale when configured not to' do
        RoutingFilter::Locale.include_default_locale = false
        section_article_path(1, 1, :locale => :en).should == '/sections/1/articles/1'
      end
    end
  end
 
  describe 'when used with a polymorphic_path' do
    describe "a not nested resource" do
      it 'does not change the section_path when given page option equals 1' do
        section_path(@section, :page => 1).should == '/en/sections/1'
      end
 
      it 'appends the pages segments to section_path when given page option does not equal 1' do
        section_path(@section, :page => 2).should == '/en/sections/1/pages/2'
      end
 
      it 'prepends the current locale to section_path' do
        I18n.locale = :de
        section_path(@section).should == '/de/sections/1'
      end
 
      it 'prepends a given locale param to section_path' do
        I18n.locale = :de
        section_path(@section, :locale => :fi).should == '/fi/sections/1'
      end
 
      it 'does not prepend a locale to section_path if given locale is false' do
        section_path(@section, :locale => false).should == '/sections/1'
      end
 
      it 'works for section_path with both a locale and page option' do
        section_path(@section, :locale => :fi, :page => 2).should == '/fi/sections/1/pages/2'
      end
 
      it 'should not prepend an invalid locale to section_path' do
        section_path(@section, :locale => :aa).should == '/sections/1'
      end
 
      it 'should prepend a longer locale to section_path' do
        section_path(@section, :locale => 'en-US').should == '/en-US/sections/1'
      end
 
      it 'should not prepend the default locale when configured not to' do
        RoutingFilter::Locale.include_default_locale = false
        section_path(@section, :locale => :en).should == '/sections/1'
      end
    end
 
    describe "a nested resource" do
      it 'does not change the section_article_path when given page option equals 1' do
        section_article_path(@section, @article, :page => 1).should == '/en/sections/1/articles/1'
      end
 
      it 'appends the pages segments to section_article_path when given page option does not equal 1' do
        section_article_path(@section, @article, :page => 2).should == '/en/sections/1/articles/1/pages/2'
      end
 
      it 'prepends the current locale to section_article_path' do
        I18n.locale = :de
        section_article_path(@section, @article).should == '/de/sections/1/articles/1'
      end
 
      it 'prepends a given locale param to section_article_path' do
        I18n.locale = :de
        section_article_path(@section, @article, :locale => :fi).should == '/fi/sections/1/articles/1'
      end
 
      it 'does not prepend a locale to section_article_path if given locale is false' do
        section_article_path(@section, @article, :locale => false).should == '/sections/1/articles/1'
      end
 
      it 'works for section_article_path with both a locale and page option' do
        section_article_path(@section, @article, :locale => :fi, :page => 2).should == '/fi/sections/1/articles/1/pages/2'
      end
 
      it 'should not prepend an invalid locale to section_article_path' do
        section_article_path(@section, @article, :locale => :aa).should == '/sections/1/articles/1'
      end
 
      it 'should prepend a longer locale to section_article_path' do
        section_article_path(@section, @article, :locale => 'en-US').should == '/en-US/sections/1/articles/1'
      end
 
      it 'should not prepend the default locale when configured not to' do
        RoutingFilter::Locale.include_default_locale = false
        section_article_path(@section, @article, :locale => :en).should == '/sections/1/articles/1'
      end
    end
  end
 
  describe 'when used with url_for and an ActivRecord instance' do
    describe "a not nested resource" do
      it 'does not change the url_for result when given page option equals 1' do
        params = @section_params.update :id => @section, :page => 1
        url_for(params).should == 'http://test.host/en/sections/1'
      end
 
      it 'appends the pages segments to url_for result when given page option does not equal 1' do
        params = @section_params.update :id => @section, :page => 2
        url_for(params).should == 'http://test.host/en/sections/1/pages/2'
      end
 
      it 'prepends the current locale to url_for result' do
        I18n.locale = :de
        params = @section_params.update :id => @section
        url_for(params).should == 'http://test.host/de/sections/1'
      end
 
      it 'prepends a given locale param url_for result' do
        I18n.locale = :de
        params = @section_params.update :id => @section, :locale => :fi
        url_for(params).should == 'http://test.host/fi/sections/1'
      end
 
      it 'does not prepend a locale to url_for result if given locale is false' do
        params = @section_params.update :id => @section, :locale => false
        url_for(params).should == 'http://test.host/sections/1'
      end
 
      it 'works for url_for result with both a locale and page option' do
        params = @section_params.update :id => @section, :locale => :fi, :page => 2
        url_for(params).should == 'http://test.host/fi/sections/1/pages/2'
      end
 
      it 'should not prepend an invalid locale to section_path' do
        params = @section_params.update :id => @section, :locale => :aa
        url_for(params).should == 'http://test.host/sections/1'
      end
 
      it 'should prepend a longer locale to section_path' do
        params = @section_params.update :id => @section, :locale => 'en-US'
        url_for(params).should == 'http://test.host/en-US/sections/1'
      end
 
      it 'should not prepend the default locale when configured not to' do
        RoutingFilter::Locale.include_default_locale = false
        params = @section_params.update :id => @section, :locale => :en
        url_for(params).should == 'http://test.host/sections/1'
      end
    end
 
    describe "a nested resource" do
      it 'does not change the url_for result when given page option equals 1' do
        params = @article_params.update :section_id => @section, :id => @article, :page => 1
        url_for(params).should == 'http://test.host/en/sections/1/articles/1'
      end
 
      it 'appends the pages segments to url_for result when given page option does not equal 1' do
        params = @article_params.update :section_id => @section, :id => @article, :page => 2
        url_for(params).should == 'http://test.host/en/sections/1/articles/1/pages/2'
      end
 
      it 'prepends the current locale to url_for result' do
        I18n.locale = :de
        params = @article_params.update :section_id => @section, :id => @article
        url_for(params).should == 'http://test.host/de/sections/1/articles/1'
      end
 
      it 'prepends a given locale param to url_for result' do
        I18n.locale = :de
        params = @article_params.update :section_id => @section, :id => @article, :locale => :fi
        url_for(params).should == 'http://test.host/fi/sections/1/articles/1'
      end
 
      it 'does not prepend a locale to url_for result if given locale is false' do
        params = @article_params.update :section_id => @section, :id => @article, :locale => false
        url_for(params).should == 'http://test.host/sections/1/articles/1'
      end
 
      it 'works for url_for result with both a locale and page option' do
        params = @article_params.update :section_id => @section, :id => @article, :locale => :fi, :page => 2
        url_for(params).should == 'http://test.host/fi/sections/1/articles/1/pages/2'
      end
 
      it 'should not prepend an invalid locale to url_for result' do
        params = @article_params.update :section_id => @section, :id => @article, :locale => :aa
        url_for(params).should == 'http://test.host/sections/1/articles/1'
      end
 
      it 'should prepend a longer locale to section_article_path' do
        params = @article_params.update :section_id => @section, :id => @article, :locale => 'en-US'
        url_for(params).should == 'http://test.host/en-US/sections/1/articles/1'
      end
 
      it 'should not prepend the default locale when configured not to' do
        RoutingFilter::Locale.include_default_locale = false
        params = @article_params.update :section_id => @section, :id => @article, :locale => :en
        url_for(params).should == 'http://test.host/sections/1/articles/1'
      end
    end
  end
end