mitio-erubis_rails_helper 1.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (104) hide show
  1. data/README.rdoc +66 -0
  2. data/lib/erubis_rails_helper.rb +20 -0
  3. data/lib/erubis_rails_helper/erubis/generator.rb +100 -0
  4. data/lib/erubis_rails_helper/template_handlers/erubis.rb +260 -0
  5. data/test/abstract_unit.rb +51 -0
  6. data/test/controller/action_pack_assertions_test.rb +516 -0
  7. data/test/controller/addresses_render_test.rb +37 -0
  8. data/test/controller/assert_select_test.rb +734 -0
  9. data/test/controller/base_test.rb +217 -0
  10. data/test/controller/benchmark_test.rb +32 -0
  11. data/test/controller/caching_test.rb +690 -0
  12. data/test/controller/capture_test.rb +66 -0
  13. data/test/controller/content_type_test.rb +168 -0
  14. data/test/controller/controller_fixtures/app/controllers/admin/user_controller.rb +0 -0
  15. data/test/controller/controller_fixtures/app/controllers/user_controller.rb +0 -0
  16. data/test/controller/controller_fixtures/vendor/plugins/bad_plugin/lib/plugin_controller.rb +0 -0
  17. data/test/controller/cookie_test.rb +111 -0
  18. data/test/controller/deprecation/deprecated_base_methods_test.rb +32 -0
  19. data/test/controller/dispatcher_test.rb +103 -0
  20. data/test/controller/fake_controllers.rb +33 -0
  21. data/test/controller/fake_models.rb +19 -0
  22. data/test/controller/filter_params_test.rb +49 -0
  23. data/test/controller/filters_test.rb +885 -0
  24. data/test/controller/flash_test.rb +142 -0
  25. data/test/controller/header_test.rb +14 -0
  26. data/test/controller/helper_test.rb +224 -0
  27. data/test/controller/html-scanner/cdata_node_test.rb +15 -0
  28. data/test/controller/html-scanner/document_test.rb +148 -0
  29. data/test/controller/html-scanner/node_test.rb +89 -0
  30. data/test/controller/html-scanner/sanitizer_test.rb +273 -0
  31. data/test/controller/html-scanner/tag_node_test.rb +238 -0
  32. data/test/controller/html-scanner/text_node_test.rb +50 -0
  33. data/test/controller/html-scanner/tokenizer_test.rb +131 -0
  34. data/test/controller/http_basic_authentication_test.rb +88 -0
  35. data/test/controller/http_digest_authentication_test.rb +178 -0
  36. data/test/controller/integration_test.rb +417 -0
  37. data/test/controller/layout_test.rb +204 -0
  38. data/test/controller/logging_test.rb +46 -0
  39. data/test/controller/middleware_stack_test.rb +90 -0
  40. data/test/controller/mime_responds_test.rb +536 -0
  41. data/test/controller/mime_type_test.rb +93 -0
  42. data/test/controller/polymorphic_routes_test.rb +293 -0
  43. data/test/controller/rack_test.rb +294 -0
  44. data/test/controller/record_identifier_test.rb +139 -0
  45. data/test/controller/redirect_test.rb +282 -0
  46. data/test/controller/render_test.rb +1752 -0
  47. data/test/controller/request/json_params_parsing_test.rb +45 -0
  48. data/test/controller/request/multipart_params_parsing_test.rb +223 -0
  49. data/test/controller/request/query_string_parsing_test.rb +120 -0
  50. data/test/controller/request/url_encoded_params_parsing_test.rb +184 -0
  51. data/test/controller/request/xml_params_parsing_test.rb +88 -0
  52. data/test/controller/request_forgery_protection_test.rb +246 -0
  53. data/test/controller/request_test.rb +407 -0
  54. data/test/controller/rescue_test.rb +536 -0
  55. data/test/controller/resources_test.rb +1341 -0
  56. data/test/controller/routing_test.rb +2557 -0
  57. data/test/controller/selector_test.rb +628 -0
  58. data/test/controller/send_file_test.rb +161 -0
  59. data/test/controller/session/cookie_store_test.rb +239 -0
  60. data/test/controller/session/mem_cache_store_test.rb +127 -0
  61. data/test/controller/session/test_session_test.rb +58 -0
  62. data/test/controller/test_test.rb +692 -0
  63. data/test/controller/translation_test.rb +26 -0
  64. data/test/controller/url_rewriter_test.rb +359 -0
  65. data/test/controller/verification_test.rb +270 -0
  66. data/test/controller/view_paths_test.rb +141 -0
  67. data/test/controller/webservice_test.rb +260 -0
  68. data/test/fixtures/alternate_helpers/foo_helper.rb +3 -0
  69. data/test/fixtures/company.rb +10 -0
  70. data/test/fixtures/developer.rb +9 -0
  71. data/test/fixtures/helpers/abc_helper.rb +5 -0
  72. data/test/fixtures/helpers/fun/games_helper.rb +3 -0
  73. data/test/fixtures/helpers/fun/pdf_helper.rb +3 -0
  74. data/test/fixtures/mascot.rb +3 -0
  75. data/test/fixtures/project.rb +3 -0
  76. data/test/fixtures/reply.rb +7 -0
  77. data/test/fixtures/topic.rb +3 -0
  78. data/test/template/asset_tag_helper_test.rb +713 -0
  79. data/test/template/atom_feed_helper_test.rb +286 -0
  80. data/test/template/benchmark_helper_test.rb +86 -0
  81. data/test/template/compiled_templates_test.rb +203 -0
  82. data/test/template/date_helper_i18n_test.rb +120 -0
  83. data/test/template/date_helper_test.rb +2469 -0
  84. data/test/template/erb_util_test.rb +24 -0
  85. data/test/template/form_helper_test.rb +1176 -0
  86. data/test/template/form_options_helper_test.rb +751 -0
  87. data/test/template/form_tag_helper_test.rb +327 -0
  88. data/test/template/javascript_helper_test.rb +106 -0
  89. data/test/template/number_helper_i18n_test.rb +69 -0
  90. data/test/template/number_helper_test.rb +128 -0
  91. data/test/template/prototype_helper_test.rb +639 -0
  92. data/test/template/record_tag_helper_test.rb +58 -0
  93. data/test/template/render_test.rb +291 -0
  94. data/test/template/sanitize_helper_test.rb +48 -0
  95. data/test/template/scriptaculous_helper_test.rb +90 -0
  96. data/test/template/tag_helper_test.rb +97 -0
  97. data/test/template/test_test.rb +54 -0
  98. data/test/template/text_helper_test.rb +520 -0
  99. data/test/template/translation_helper_test.rb +32 -0
  100. data/test/template/url_helper_test.rb +614 -0
  101. data/test/test_erubis_rails_helper.rb +4 -0
  102. data/test/testing_sandbox.rb +15 -0
  103. data/test/view/test_case_test.rb +8 -0
  104. metadata +298 -0
@@ -0,0 +1,97 @@
1
+ require 'abstract_unit'
2
+
3
+ class TagHelperTest < ActionView::TestCase
4
+ tests ActionView::Helpers::TagHelper
5
+
6
+ def test_tag
7
+ assert_equal "<br />", tag("br")
8
+ assert_equal "<br clear=\"left\" />", tag(:br, :clear => "left")
9
+ assert_equal "<br>", tag("br", nil, true)
10
+ end
11
+
12
+ def test_tag_options
13
+ str = tag("p", "class" => "show", :class => "elsewhere")
14
+ assert_match /class="show"/, str
15
+ assert_match /class="elsewhere"/, str
16
+ end
17
+
18
+ def test_tag_options_rejects_nil_option
19
+ assert_equal "<p />", tag("p", :ignored => nil)
20
+ end
21
+
22
+ def test_tag_options_accepts_false_option
23
+ assert_equal "<p value=\"false\" />", tag("p", :value => false)
24
+ end
25
+
26
+ def test_tag_options_accepts_blank_option
27
+ assert_equal "<p included=\"\" />", tag("p", :included => '')
28
+ end
29
+
30
+ def test_tag_options_converts_boolean_option
31
+ assert_equal '<p disabled="disabled" multiple="multiple" readonly="readonly" />',
32
+ tag("p", :disabled => true, :multiple => true, :readonly => true)
33
+ end
34
+
35
+ def test_content_tag
36
+ assert_equal "<a href=\"create\">Create</a>", content_tag("a", "Create", "href" => "create")
37
+ assert_equal content_tag("a", "Create", "href" => "create"),
38
+ content_tag("a", "Create", :href => "create")
39
+ end
40
+
41
+ def test_content_tag_with_block_in_erb
42
+ __in_erb_template = ''
43
+ content_tag(:div) { concat "Hello world!" }
44
+ assert_dom_equal "<div>Hello world!</div>", output_buffer
45
+ end
46
+
47
+ def test_content_tag_with_block_and_options_in_erb
48
+ __in_erb_template = ''
49
+ content_tag(:div, :class => "green") { concat "Hello world!" }
50
+ assert_dom_equal %(<div class="green">Hello world!</div>), output_buffer
51
+ end
52
+
53
+ def test_content_tag_with_block_and_options_out_of_erb
54
+ assert_dom_equal %(<div class="green">Hello world!</div>), content_tag(:div, :class => "green") { "Hello world!" }
55
+ end
56
+
57
+ def test_content_tag_with_block_and_options_outside_out_of_erb
58
+ assert_equal content_tag("a", "Create", :href => "create"),
59
+ content_tag("a", "href" => "create") { "Create" }
60
+ end
61
+
62
+ def test_content_tag_nested_in_content_tag_out_of_erb
63
+ assert_equal content_tag("p", content_tag("b", "Hello")),
64
+ content_tag("p") { content_tag("b", "Hello") },
65
+ output_buffer
66
+ end
67
+
68
+ def test_content_tag_nested_in_content_tag_in_erb
69
+ __in_erb_template = true
70
+ content_tag("p") { concat content_tag("b", "Hello") }
71
+ assert_equal '<p><b>Hello</b></p>', output_buffer
72
+ end
73
+
74
+ def test_cdata_section
75
+ assert_equal "<![CDATA[<hello world>]]>", cdata_section("<hello world>")
76
+ end
77
+
78
+ def test_escape_once
79
+ assert_equal '1 &lt; 2 &amp; 3', escape_once('1 < 2 &amp; 3')
80
+ end
81
+
82
+ def test_double_escaping_attributes
83
+ ['1&amp;2', '1 &lt; 2', '&#8220;test&#8220;'].each do |escaped|
84
+ assert_equal %(<a href="#{escaped}" />), tag('a', :href => escaped)
85
+ end
86
+ end
87
+
88
+ def test_skip_invalid_escaped_attributes
89
+ ['&1;', '&#1dfa3;', '& #123;'].each do |escaped|
90
+ assert_equal %(<a href="#{escaped.gsub /&/, '&amp;'}" />), tag('a', :href => escaped)
91
+ end
92
+ end
93
+
94
+ def test_disable_escaping
95
+ assert_equal '<a href="&amp;" />', tag('a', { :href => '&amp;' }, false, false)
96
+ end
97
+ end
@@ -0,0 +1,54 @@
1
+ require 'abstract_unit'
2
+
3
+ module PeopleHelper
4
+ def title(text)
5
+ content_tag(:h1, text)
6
+ end
7
+
8
+ def homepage_path
9
+ people_path
10
+ end
11
+
12
+ def homepage_url
13
+ people_url
14
+ end
15
+
16
+ def link_to_person(person)
17
+ link_to person.name, person
18
+ end
19
+ end
20
+
21
+ class PeopleHelperTest < ActionView::TestCase
22
+ def setup
23
+ ActionController::Routing::Routes.draw do |map|
24
+ map.people 'people', :controller => 'people', :action => 'index'
25
+ map.connect ':controller/:action/:id'
26
+ end
27
+ end
28
+
29
+ def test_title
30
+ assert_equal "<h1>Ruby on Rails</h1>", title("Ruby on Rails")
31
+ end
32
+
33
+ def test_homepage_path
34
+ assert_equal "/people", homepage_path
35
+ end
36
+
37
+ def test_homepage_url
38
+ assert_equal "http://test.host/people", homepage_url
39
+ end
40
+
41
+ def test_link_to_person
42
+ person = mock(:name => "David")
43
+ expects(:mocha_mock_path).with(person).returns("/people/1")
44
+ assert_equal '<a href="/people/1">David</a>', link_to_person(person)
45
+ end
46
+ end
47
+
48
+ class CrazyHelperTest < ActionView::TestCase
49
+ tests PeopleHelper
50
+
51
+ def test_helper_class_can_be_set_manually_not_just_inferred
52
+ assert_equal PeopleHelper, self.class.helper_class
53
+ end
54
+ end
@@ -0,0 +1,520 @@
1
+ require 'abstract_unit'
2
+ require 'testing_sandbox'
3
+
4
+ class TextHelperTest < ActionView::TestCase
5
+ tests ActionView::Helpers::TextHelper
6
+ include TestingSandbox
7
+
8
+ def setup
9
+ # This simulates the fact that instance variables are reset every time
10
+ # a view is rendered. The cycle helper depends on this behavior.
11
+ @_cycles = nil if (defined? @_cycles)
12
+ end
13
+
14
+ def test_concat
15
+ self.output_buffer = 'foo'
16
+ assert_equal 'foobar', concat('bar')
17
+ assert_equal 'foobar', output_buffer
18
+ end
19
+
20
+ def test_simple_format
21
+ assert_equal "<p></p>", simple_format(nil)
22
+
23
+ assert_equal "<p>crazy\n<br /> cross\n<br /> platform linebreaks</p>", simple_format("crazy\r\n cross\r platform linebreaks")
24
+ assert_equal "<p>A paragraph</p>\n\n<p>and another one!</p>", simple_format("A paragraph\n\nand another one!")
25
+ assert_equal "<p>A paragraph\n<br /> With a newline</p>", simple_format("A paragraph\n With a newline")
26
+
27
+ text = "A\nB\nC\nD".freeze
28
+ assert_equal "<p>A\n<br />B\n<br />C\n<br />D</p>", simple_format(text)
29
+
30
+ text = "A\r\n \nB\n\n\r\n\t\nC\nD".freeze
31
+ assert_equal "<p>A\n<br /> \n<br />B</p>\n\n<p>\t\n<br />C\n<br />D</p>", simple_format(text)
32
+
33
+ assert_equal %q(<p class="test">This is a classy test</p>), simple_format("This is a classy test", :class => 'test')
34
+ assert_equal %Q(<p class="test">para 1</p>\n\n<p class="test">para 2</p>), simple_format("para 1\n\npara 2", :class => 'test')
35
+ end
36
+
37
+ def test_truncate
38
+ assert_equal "Hello World!", truncate("Hello World!", :length => 12)
39
+ assert_equal "Hello Wor...", truncate("Hello World!!", :length => 12)
40
+ end
41
+
42
+ def test_truncate_should_use_default_length_of_30
43
+ str = "This is a string that will go longer then the default truncate length of 30"
44
+ assert_equal str[0...27] + "...", truncate(str)
45
+ end
46
+
47
+ def test_truncate_with_options_hash
48
+ assert_equal "This is a string that wil[...]", truncate("This is a string that will go longer then the default truncate length of 30", :omission => "[...]")
49
+ assert_equal "Hello W...", truncate("Hello World!", :length => 10)
50
+ assert_equal "Hello[...]", truncate("Hello World!", :omission => "[...]", :length => 10)
51
+ end
52
+
53
+ if RUBY_VERSION < '1.9.0'
54
+ def test_truncate_multibyte
55
+ with_kcode 'none' do
56
+ assert_equal "\354\225\210\353\205\225\355...", truncate("\354\225\210\353\205\225\355\225\230\354\204\270\354\232\224", :length => 10)
57
+ end
58
+ with_kcode 'u' do
59
+ assert_equal "\354\225\204\353\246\254\353\236\221 \354\225\204\353\246\254 ...",
60
+ truncate("\354\225\204\353\246\254\353\236\221 \354\225\204\353\246\254 \354\225\204\353\235\274\353\246\254\354\230\244", :length => 10)
61
+ end
62
+ end
63
+ else
64
+ def test_truncate_multibyte
65
+ assert_equal "\354\225\210\353\205\225\355...",
66
+ truncate("\354\225\210\353\205\225\355\225\230\354\204\270\354\232\224", :length => 10)
67
+
68
+ assert_equal "\354\225\204\353\246\254\353\236\221 \354\225\204\353\246\254 ...".force_encoding('UTF-8'),
69
+ truncate("\354\225\204\353\246\254\353\236\221 \354\225\204\353\246\254 \354\225\204\353\235\274\353\246\254\354\230\244".force_encoding('UTF-8'), :length => 10)
70
+ end
71
+ end
72
+
73
+ def test_highlighter
74
+ assert_equal(
75
+ "This is a <strong class=\"highlight\">beautiful</strong> morning",
76
+ highlight("This is a beautiful morning", "beautiful")
77
+ )
78
+
79
+ assert_equal(
80
+ "This is a <strong class=\"highlight\">beautiful</strong> morning, but also a <strong class=\"highlight\">beautiful</strong> day",
81
+ highlight("This is a beautiful morning, but also a beautiful day", "beautiful")
82
+ )
83
+
84
+ assert_equal(
85
+ "This is a <b>beautiful</b> morning, but also a <b>beautiful</b> day",
86
+ highlight("This is a beautiful morning, but also a beautiful day", "beautiful", '<b>\1</b>')
87
+ )
88
+
89
+ assert_equal(
90
+ "This text is not changed because we supplied an empty phrase",
91
+ highlight("This text is not changed because we supplied an empty phrase", nil)
92
+ )
93
+
94
+ assert_equal ' ', highlight(' ', 'blank text is returned verbatim')
95
+ end
96
+
97
+ def test_highlight_with_regexp
98
+ assert_equal(
99
+ "This is a <strong class=\"highlight\">beautiful!</strong> morning",
100
+ highlight("This is a beautiful! morning", "beautiful!")
101
+ )
102
+
103
+ assert_equal(
104
+ "This is a <strong class=\"highlight\">beautiful! morning</strong>",
105
+ highlight("This is a beautiful! morning", "beautiful! morning")
106
+ )
107
+
108
+ assert_equal(
109
+ "This is a <strong class=\"highlight\">beautiful? morning</strong>",
110
+ highlight("This is a beautiful? morning", "beautiful? morning")
111
+ )
112
+ end
113
+
114
+ def test_highlight_with_multiple_phrases_in_one_pass
115
+ assert_equal %(<em>wow</em> <em>em</em>), highlight('wow em', %w(wow em), '<em>\1</em>')
116
+ end
117
+
118
+ def test_highlight_with_options_hash
119
+ assert_equal(
120
+ "This is a <b>beautiful</b> morning, but also a <b>beautiful</b> day",
121
+ highlight("This is a beautiful morning, but also a beautiful day", "beautiful", :highlighter => '<b>\1</b>')
122
+ )
123
+ end
124
+
125
+ def test_highlight_with_html
126
+ assert_equal(
127
+ "<p>This is a <strong class=\"highlight\">beautiful</strong> morning, but also a <strong class=\"highlight\">beautiful</strong> day</p>",
128
+ highlight("<p>This is a beautiful morning, but also a beautiful day</p>", "beautiful")
129
+ )
130
+ assert_equal(
131
+ "<p>This is a <em><strong class=\"highlight\">beautiful</strong></em> morning, but also a <strong class=\"highlight\">beautiful</strong> day</p>",
132
+ highlight("<p>This is a <em>beautiful</em> morning, but also a beautiful day</p>", "beautiful")
133
+ )
134
+ assert_equal(
135
+ "<p>This is a <em class=\"error\"><strong class=\"highlight\">beautiful</strong></em> morning, but also a <strong class=\"highlight\">beautiful</strong> <span class=\"last\">day</span></p>",
136
+ highlight("<p>This is a <em class=\"error\">beautiful</em> morning, but also a beautiful <span class=\"last\">day</span></p>", "beautiful")
137
+ )
138
+ assert_equal(
139
+ "<p class=\"beautiful\">This is a <strong class=\"highlight\">beautiful</strong> morning, but also a <strong class=\"highlight\">beautiful</strong> day</p>",
140
+ highlight("<p class=\"beautiful\">This is a beautiful morning, but also a beautiful day</p>", "beautiful")
141
+ )
142
+ assert_equal(
143
+ "<p>This is a <strong class=\"highlight\">beautiful</strong> <a href=\"http://example.com/beautiful\#top?what=beautiful%20morning&when=now+then\">morning</a>, but also a <strong class=\"highlight\">beautiful</strong> day</p>",
144
+ highlight("<p>This is a beautiful <a href=\"http://example.com/beautiful\#top?what=beautiful%20morning&when=now+then\">morning</a>, but also a beautiful day</p>", "beautiful")
145
+ )
146
+ end
147
+
148
+ def test_excerpt
149
+ assert_equal("...is a beautiful morn...", excerpt("This is a beautiful morning", "beautiful", 5))
150
+ assert_equal("This is a...", excerpt("This is a beautiful morning", "this", 5))
151
+ assert_equal("...iful morning", excerpt("This is a beautiful morning", "morning", 5))
152
+ assert_nil excerpt("This is a beautiful morning", "day")
153
+ end
154
+
155
+ def test_excerpt_in_borderline_cases
156
+ assert_equal("", excerpt("", "", 0))
157
+ assert_equal("a", excerpt("a", "a", 0))
158
+ assert_equal("...b...", excerpt("abc", "b", 0))
159
+ assert_equal("abc", excerpt("abc", "b", 1))
160
+ assert_equal("abc...", excerpt("abcd", "b", 1))
161
+ assert_equal("...abc", excerpt("zabc", "b", 1))
162
+ assert_equal("...abc...", excerpt("zabcd", "b", 1))
163
+ assert_equal("zabcd", excerpt("zabcd", "b", 2))
164
+
165
+ # excerpt strips the resulting string before ap-/prepending excerpt_string.
166
+ # whether this behavior is meaningful when excerpt_string is not to be
167
+ # appended is questionable.
168
+ assert_equal("zabcd", excerpt(" zabcd ", "b", 4))
169
+ assert_equal("...abc...", excerpt("z abc d", "b", 1))
170
+ end
171
+
172
+ def test_excerpt_with_regex
173
+ assert_equal('...is a beautiful! mor...', excerpt('This is a beautiful! morning', 'beautiful', 5))
174
+ assert_equal('...is a beautiful? mor...', excerpt('This is a beautiful? morning', 'beautiful', 5))
175
+ end
176
+
177
+ def test_excerpt_with_options_hash
178
+ assert_equal("...is a beautiful morn...", excerpt("This is a beautiful morning", "beautiful", :radius => 5))
179
+ assert_equal("[...]is a beautiful morn[...]", excerpt("This is a beautiful morning", "beautiful", :omission => "[...]",:radius => 5))
180
+ assert_equal(
181
+ "This is the ultimate supercalifragilisticexpialidoceous very looooooooooooooooooong looooooooooooong beautiful morning with amazing sunshine and awesome tempera[...]",
182
+ excerpt("This is the ultimate supercalifragilisticexpialidoceous very looooooooooooooooooong looooooooooooong beautiful morning with amazing sunshine and awesome temperatures. So what are you gonna do about it?", "very",
183
+ :omission => "[...]")
184
+ )
185
+ end
186
+
187
+ if RUBY_VERSION < '1.9'
188
+ def test_excerpt_with_utf8
189
+ with_kcode('u') do
190
+ assert_equal("...\357\254\203ciency could not be...", excerpt("That's why e\357\254\203ciency could not be helped", 'could', 8))
191
+ end
192
+ with_kcode('none') do
193
+ assert_equal("...\203ciency could not be...", excerpt("That's why e\357\254\203ciency could not be helped", 'could', 8))
194
+ end
195
+ end
196
+ else
197
+ def test_excerpt_with_utf8
198
+ assert_equal("...\357\254\203ciency could not be...".force_encoding('UTF-8'), excerpt("That's why e\357\254\203ciency could not be helped".force_encoding('UTF-8'), 'could', 8))
199
+ assert_equal("...\203ciency could not be...", excerpt("That's why e\357\254\203ciency could not be helped", 'could', 8))
200
+ end
201
+ end
202
+
203
+ def test_word_wrap
204
+ assert_equal("my very very\nvery long\nstring", word_wrap("my very very very long string", 15))
205
+ end
206
+
207
+ def test_word_wrap_with_extra_newlines
208
+ assert_equal("my very very\nvery long\nstring\n\nwith another\nline", word_wrap("my very very very long string\n\nwith another line", 15))
209
+ end
210
+
211
+ def test_word_wrap_with_options_hash
212
+ assert_equal("my very very\nvery long\nstring", word_wrap("my very very very long string", :line_width => 15))
213
+ end
214
+
215
+ def test_pluralization
216
+ assert_equal("1 count", pluralize(1, "count"))
217
+ assert_equal("2 counts", pluralize(2, "count"))
218
+ assert_equal("1 count", pluralize('1', "count"))
219
+ assert_equal("2 counts", pluralize('2', "count"))
220
+ assert_equal("1,066 counts", pluralize('1,066', "count"))
221
+ assert_equal("1.25 counts", pluralize('1.25', "count"))
222
+ assert_equal("2 counters", pluralize(2, "count", "counters"))
223
+ assert_equal("0 counters", pluralize(nil, "count", "counters"))
224
+ assert_equal("2 people", pluralize(2, "person"))
225
+ assert_equal("10 buffaloes", pluralize(10, "buffalo"))
226
+ assert_equal("1 berry", pluralize(1, "berry"))
227
+ assert_equal("12 berries", pluralize(12, "berry"))
228
+ end
229
+
230
+ def test_auto_link_parsing
231
+ urls = %w(
232
+ http://www.rubyonrails.com
233
+ http://www.rubyonrails.com:80
234
+ http://www.rubyonrails.com/~minam
235
+ https://www.rubyonrails.com/~minam
236
+ http://www.rubyonrails.com/~minam/url%20with%20spaces
237
+ http://www.rubyonrails.com/foo.cgi?something=here
238
+ http://www.rubyonrails.com/foo.cgi?something=here&and=here
239
+ http://www.rubyonrails.com/contact;new
240
+ http://www.rubyonrails.com/contact;new%20with%20spaces
241
+ http://www.rubyonrails.com/contact;new?with=query&string=params
242
+ http://www.rubyonrails.com/~minam/contact;new?with=query&string=params
243
+ http://en.wikipedia.org/wiki/Wikipedia:Today%27s_featured_picture_%28animation%29/January_20%2C_2007
244
+ http://www.mail-archive.com/rails@lists.rubyonrails.org/
245
+ http://www.amazon.com/Testing-Equal-Sign-In-Path/ref=pd_bbs_sr_1?ie=UTF8&s=books&qid=1198861734&sr=8-1
246
+ http://en.wikipedia.org/wiki/Texas_hold'em
247
+ https://www.google.com/doku.php?id=gps:resource:scs:start
248
+ http://connect.oraclecorp.com/search?search[q]=green+france&search[type]=Group
249
+ http://of.openfoundry.org/projects/492/download#4th.Release.3
250
+ http://maps.google.co.uk/maps?f=q&q=the+london+eye&ie=UTF8&ll=51.503373,-0.11939&spn=0.007052,0.012767&z=16&iwloc=A
251
+ )
252
+
253
+ urls.each do |url|
254
+ assert_equal generate_result(url), auto_link(url)
255
+ end
256
+ end
257
+
258
+ def generate_result(link_text, href = nil)
259
+ href ||= link_text
260
+ %{<a href="#{CGI::escapeHTML href}">#{CGI::escapeHTML link_text}</a>}
261
+ end
262
+
263
+ def test_auto_linking
264
+ email_raw = 'david@loudthinking.com'
265
+ email_result = %{<a href="mailto:#{email_raw}">#{email_raw}</a>}
266
+ link_raw = 'http://www.rubyonrails.com'
267
+ link_result = generate_result(link_raw)
268
+ link_result_with_options = %{<a href="#{link_raw}" target="_blank">#{link_raw}</a>}
269
+
270
+ assert_equal '', auto_link(nil)
271
+ assert_equal '', auto_link('')
272
+ assert_equal "#{link_result} #{link_result} #{link_result}", auto_link("#{link_raw} #{link_raw} #{link_raw}")
273
+
274
+ assert_equal %(hello #{email_result}), auto_link("hello #{email_raw}", :email_addresses)
275
+ assert_equal %(Go to #{link_result}), auto_link("Go to #{link_raw}", :urls)
276
+ assert_equal %(Go to #{link_raw}), auto_link("Go to #{link_raw}", :email_addresses)
277
+ assert_equal %(Go to #{link_result} and say hello to #{email_result}), auto_link("Go to #{link_raw} and say hello to #{email_raw}")
278
+ assert_equal %(<p>Link #{link_result}</p>), auto_link("<p>Link #{link_raw}</p>")
279
+ assert_equal %(<p>#{link_result} Link</p>), auto_link("<p>#{link_raw} Link</p>")
280
+ assert_equal %(<p>Link #{link_result_with_options}</p>), auto_link("<p>Link #{link_raw}</p>", :all, {:target => "_blank"})
281
+ assert_equal %(Go to #{link_result}.), auto_link(%(Go to #{link_raw}.))
282
+ assert_equal %(<p>Go to #{link_result}, then say hello to #{email_result}.</p>), auto_link(%(<p>Go to #{link_raw}, then say hello to #{email_raw}.</p>))
283
+
284
+ email2_raw = '+david@loudthinking.com'
285
+ email2_result = %{<a href="mailto:#{email2_raw}">#{email2_raw}</a>}
286
+ assert_equal email2_result, auto_link(email2_raw)
287
+
288
+ email3_raw = '+david@loudthinking.com'
289
+ email3_result = %{<a href="&#109;&#97;&#105;&#108;&#116;&#111;&#58;+%64%61%76%69%64@%6c%6f%75%64%74%68%69%6e%6b%69%6e%67.%63%6f%6d">#{email3_raw}</a>}
290
+ assert_equal email3_result, auto_link(email3_raw, :all, :encode => :hex)
291
+ assert_equal email3_result, auto_link(email3_raw, :email_addresses, :encode => :hex)
292
+
293
+ link2_raw = 'www.rubyonrails.com'
294
+ link2_result = generate_result(link2_raw, "http://#{link2_raw}")
295
+ assert_equal %(Go to #{link2_result}), auto_link("Go to #{link2_raw}", :urls)
296
+ assert_equal %(Go to #{link2_raw}), auto_link("Go to #{link2_raw}", :email_addresses)
297
+ assert_equal %(<p>Link #{link2_result}</p>), auto_link("<p>Link #{link2_raw}</p>")
298
+ assert_equal %(<p>#{link2_result} Link</p>), auto_link("<p>#{link2_raw} Link</p>")
299
+ assert_equal %(Go to #{link2_result}.), auto_link(%(Go to #{link2_raw}.))
300
+ assert_equal %(<p>Say hello to #{email_result}, then go to #{link2_result}.</p>), auto_link(%(<p>Say hello to #{email_raw}, then go to #{link2_raw}.</p>))
301
+
302
+ link3_raw = 'http://manuals.ruby-on-rails.com/read/chapter.need_a-period/103#page281'
303
+ link3_result = generate_result(link3_raw)
304
+ assert_equal %(Go to #{link3_result}), auto_link("Go to #{link3_raw}", :urls)
305
+ assert_equal %(Go to #{link3_raw}), auto_link("Go to #{link3_raw}", :email_addresses)
306
+ assert_equal %(<p>Link #{link3_result}</p>), auto_link("<p>Link #{link3_raw}</p>")
307
+ assert_equal %(<p>#{link3_result} Link</p>), auto_link("<p>#{link3_raw} Link</p>")
308
+ assert_equal %(Go to #{link3_result}.), auto_link(%(Go to #{link3_raw}.))
309
+ assert_equal %(<p>Go to #{link3_result}. Seriously, #{link3_result}? I think I'll say hello to #{email_result}. Instead.</p>),
310
+ auto_link(%(<p>Go to #{link3_raw}. Seriously, #{link3_raw}? I think I'll say hello to #{email_raw}. Instead.</p>))
311
+
312
+ link4_raw = 'http://foo.example.com/controller/action?parm=value&p2=v2#anchor123'
313
+ link4_result = generate_result(link4_raw)
314
+ assert_equal %(<p>Link #{link4_result}</p>), auto_link("<p>Link #{link4_raw}</p>")
315
+ assert_equal %(<p>#{link4_result} Link</p>), auto_link("<p>#{link4_raw} Link</p>")
316
+
317
+ link5_raw = 'http://foo.example.com:3000/controller/action'
318
+ link5_result = generate_result(link5_raw)
319
+ assert_equal %(<p>#{link5_result} Link</p>), auto_link("<p>#{link5_raw} Link</p>")
320
+
321
+ link6_raw = 'http://foo.example.com:3000/controller/action+pack'
322
+ link6_result = generate_result(link6_raw)
323
+ assert_equal %(<p>#{link6_result} Link</p>), auto_link("<p>#{link6_raw} Link</p>")
324
+
325
+ link7_raw = 'http://foo.example.com/controller/action?parm=value&p2=v2#anchor-123'
326
+ link7_result = generate_result(link7_raw)
327
+ assert_equal %(<p>#{link7_result} Link</p>), auto_link("<p>#{link7_raw} Link</p>")
328
+
329
+ link8_raw = 'http://foo.example.com:3000/controller/action.html'
330
+ link8_result = generate_result(link8_raw)
331
+ assert_equal %(Go to #{link8_result}), auto_link("Go to #{link8_raw}", :urls)
332
+ assert_equal %(Go to #{link8_raw}), auto_link("Go to #{link8_raw}", :email_addresses)
333
+ assert_equal %(<p>Link #{link8_result}</p>), auto_link("<p>Link #{link8_raw}</p>")
334
+ assert_equal %(<p>#{link8_result} Link</p>), auto_link("<p>#{link8_raw} Link</p>")
335
+ assert_equal %(Go to #{link8_result}.), auto_link(%(Go to #{link8_raw}.))
336
+ assert_equal %(<p>Go to #{link8_result}. Seriously, #{link8_result}? I think I'll say hello to #{email_result}. Instead.</p>),
337
+ auto_link(%(<p>Go to #{link8_raw}. Seriously, #{link8_raw}? I think I'll say hello to #{email_raw}. Instead.</p>))
338
+
339
+ link9_raw = 'http://business.timesonline.co.uk/article/0,,9065-2473189,00.html'
340
+ link9_result = generate_result(link9_raw)
341
+ assert_equal %(Go to #{link9_result}), auto_link("Go to #{link9_raw}", :urls)
342
+ assert_equal %(Go to #{link9_raw}), auto_link("Go to #{link9_raw}", :email_addresses)
343
+ assert_equal %(<p>Link #{link9_result}</p>), auto_link("<p>Link #{link9_raw}</p>")
344
+ assert_equal %(<p>#{link9_result} Link</p>), auto_link("<p>#{link9_raw} Link</p>")
345
+ assert_equal %(Go to #{link9_result}.), auto_link(%(Go to #{link9_raw}.))
346
+ assert_equal %(<p>Go to #{link9_result}. Seriously, #{link9_result}? I think I'll say hello to #{email_result}. Instead.</p>),
347
+ auto_link(%(<p>Go to #{link9_raw}. Seriously, #{link9_raw}? I think I'll say hello to #{email_raw}. Instead.</p>))
348
+
349
+ link10_raw = 'http://www.mail-archive.com/ruby-talk@ruby-lang.org/'
350
+ link10_result = generate_result(link10_raw)
351
+ assert_equal %(<p>#{link10_result} Link</p>), auto_link("<p>#{link10_raw} Link</p>")
352
+ end
353
+
354
+ def test_auto_link_already_linked
355
+ linked1 = generate_result('Ruby On Rails', 'http://www.rubyonrails.com')
356
+ linked2 = generate_result('www.rubyonrails.com', 'http://www.rubyonrails.com')
357
+ assert_equal linked1, auto_link(linked1)
358
+ assert_equal linked2, auto_link(linked2)
359
+ end
360
+
361
+ def test_auto_link_with_brackets
362
+ link1_raw = 'http://en.wikipedia.org/wiki/Sprite_(computer_graphics)'
363
+ link1_result = generate_result(link1_raw)
364
+ assert_equal link1_result, auto_link(link1_raw)
365
+ assert_equal "(link: #{link1_result})", auto_link("(link: #{link1_raw})")
366
+
367
+ link2_raw = 'http://en.wikipedia.org/wiki/Sprite_[computer_graphics]'
368
+ link2_result = generate_result(link2_raw)
369
+ assert_equal link2_result, auto_link(link2_raw)
370
+ assert_equal "[link: #{link2_result}]", auto_link("[link: #{link2_raw}]")
371
+
372
+ link3_raw = 'http://en.wikipedia.org/wiki/Sprite_{computer_graphics}'
373
+ link3_result = generate_result(link3_raw)
374
+ assert_equal link3_result, auto_link(link3_raw)
375
+ assert_equal "{link: #{link3_result}}", auto_link("{link: #{link3_raw}}")
376
+ end
377
+
378
+ def test_auto_link_in_tags
379
+ link_raw = 'http://www.rubyonrails.org/images/rails.png'
380
+ link_result = %Q(<img src="#{link_raw}" />)
381
+ assert_equal link_result, auto_link(link_result)
382
+ end
383
+
384
+ def test_auto_link_at_eol
385
+ url1 = "http://api.rubyonrails.com/Foo.html"
386
+ url2 = "http://www.ruby-doc.org/core/Bar.html"
387
+
388
+ assert_equal %(<p><a href="#{url1}">#{url1}</a><br /><a href="#{url2}">#{url2}</a><br /></p>), auto_link("<p>#{url1}<br />#{url2}<br /></p>")
389
+ end
390
+
391
+ def test_auto_link_with_block
392
+ url = "http://api.rubyonrails.com/Foo.html"
393
+ email = "fantabulous@shiznadel.ic"
394
+
395
+ assert_equal %(<p><a href="#{url}">#{url[0...7]}...</a><br /><a href="mailto:#{email}">#{email[0...7]}...</a><br /></p>), auto_link("<p>#{url}<br />#{email}<br /></p>") { |url| truncate(url, :length => 10) }
396
+ end
397
+
398
+ def test_auto_link_with_options_hash
399
+ assert_dom_equal 'Welcome to my new blog at <a href="http://www.myblog.com/" class="menu" target="_blank">http://www.myblog.com/</a>. Please e-mail me at <a href="mailto:me@email.com" class="menu" target="_blank">me@email.com</a>.',
400
+ auto_link("Welcome to my new blog at http://www.myblog.com/. Please e-mail me at me@email.com.",
401
+ :link => :all, :html => { :class => "menu", :target => "_blank" })
402
+ end
403
+
404
+ def test_cycle_class
405
+ value = Cycle.new("one", 2, "3")
406
+ assert_equal("one", value.to_s)
407
+ assert_equal("2", value.to_s)
408
+ assert_equal("3", value.to_s)
409
+ assert_equal("one", value.to_s)
410
+ value.reset
411
+ assert_equal("one", value.to_s)
412
+ assert_equal("2", value.to_s)
413
+ assert_equal("3", value.to_s)
414
+ end
415
+
416
+ def test_cycle_class_with_no_arguments
417
+ assert_raise(ArgumentError) { value = Cycle.new() }
418
+ end
419
+
420
+ def test_cycle
421
+ assert_equal("one", cycle("one", 2, "3"))
422
+ assert_equal("2", cycle("one", 2, "3"))
423
+ assert_equal("3", cycle("one", 2, "3"))
424
+ assert_equal("one", cycle("one", 2, "3"))
425
+ assert_equal("2", cycle("one", 2, "3"))
426
+ assert_equal("3", cycle("one", 2, "3"))
427
+ end
428
+
429
+ def test_cycle_with_no_arguments
430
+ assert_raise(ArgumentError) { value = cycle() }
431
+ end
432
+
433
+ def test_cycle_resets_with_new_values
434
+ assert_equal("even", cycle("even", "odd"))
435
+ assert_equal("odd", cycle("even", "odd"))
436
+ assert_equal("even", cycle("even", "odd"))
437
+ assert_equal("1", cycle(1, 2, 3))
438
+ assert_equal("2", cycle(1, 2, 3))
439
+ assert_equal("3", cycle(1, 2, 3))
440
+ assert_equal("1", cycle(1, 2, 3))
441
+ end
442
+
443
+ def test_named_cycles
444
+ assert_equal("1", cycle(1, 2, 3, :name => "numbers"))
445
+ assert_equal("red", cycle("red", "blue", :name => "colors"))
446
+ assert_equal("2", cycle(1, 2, 3, :name => "numbers"))
447
+ assert_equal("blue", cycle("red", "blue", :name => "colors"))
448
+ assert_equal("3", cycle(1, 2, 3, :name => "numbers"))
449
+ assert_equal("red", cycle("red", "blue", :name => "colors"))
450
+ end
451
+
452
+ def test_current_cycle_with_default_name
453
+ cycle("even","odd")
454
+ assert_equal "even", current_cycle
455
+ cycle("even","odd")
456
+ assert_equal "odd", current_cycle
457
+ cycle("even","odd")
458
+ assert_equal "even", current_cycle
459
+ end
460
+
461
+ def test_current_cycle_with_named_cycles
462
+ cycle("red", "blue", :name => "colors")
463
+ assert_equal "red", current_cycle("colors")
464
+ cycle("red", "blue", :name => "colors")
465
+ assert_equal "blue", current_cycle("colors")
466
+ cycle("red", "blue", :name => "colors")
467
+ assert_equal "red", current_cycle("colors")
468
+ end
469
+
470
+ def test_current_cycle_safe_call
471
+ assert_nothing_raised { current_cycle }
472
+ assert_nothing_raised { current_cycle("colors") }
473
+ end
474
+
475
+ def test_current_cycle_with_more_than_two_names
476
+ cycle(1,2,3)
477
+ assert_equal "1", current_cycle
478
+ cycle(1,2,3)
479
+ assert_equal "2", current_cycle
480
+ cycle(1,2,3)
481
+ assert_equal "3", current_cycle
482
+ cycle(1,2,3)
483
+ assert_equal "1", current_cycle
484
+ end
485
+
486
+ def test_default_named_cycle
487
+ assert_equal("1", cycle(1, 2, 3))
488
+ assert_equal("2", cycle(1, 2, 3, :name => "default"))
489
+ assert_equal("3", cycle(1, 2, 3))
490
+ end
491
+
492
+ def test_reset_cycle
493
+ assert_equal("1", cycle(1, 2, 3))
494
+ assert_equal("2", cycle(1, 2, 3))
495
+ reset_cycle
496
+ assert_equal("1", cycle(1, 2, 3))
497
+ end
498
+
499
+ def test_reset_unknown_cycle
500
+ reset_cycle("colors")
501
+ end
502
+
503
+ def test_recet_named_cycle
504
+ assert_equal("1", cycle(1, 2, 3, :name => "numbers"))
505
+ assert_equal("red", cycle("red", "blue", :name => "colors"))
506
+ reset_cycle("numbers")
507
+ assert_equal("1", cycle(1, 2, 3, :name => "numbers"))
508
+ assert_equal("blue", cycle("red", "blue", :name => "colors"))
509
+ assert_equal("2", cycle(1, 2, 3, :name => "numbers"))
510
+ assert_equal("red", cycle("red", "blue", :name => "colors"))
511
+ end
512
+
513
+ def test_cycle_no_instance_variable_clashes
514
+ @cycles = %w{Specialized Fuji Giant}
515
+ assert_equal("red", cycle("red", "blue"))
516
+ assert_equal("blue", cycle("red", "blue"))
517
+ assert_equal("red", cycle("red", "blue"))
518
+ assert_equal(%w{Specialized Fuji Giant}, @cycles)
519
+ end
520
+ end