This repository was archived by the owner on Apr 17, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathstring_spec.rb
More file actions
236 lines (175 loc) · 6.46 KB
/
string_spec.rb
File metadata and controls
236 lines (175 loc) · 6.46 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
require 'spec_helper'
require 'extlib/string'
describe String, "#to_const_string" do
it "swaps slashes with ::" do
"foo/bar".to_const_string.should == "Foo::Bar"
end
it "replaces snake_case with CamelCase" do
"foo/bar/baz_bat".to_const_string.should == "Foo::Bar::BazBat"
end
it "leaves constant string as is" do
"Merb::Test".to_const_string.should == "Merb::Test"
end
end
describe String, "#to_const_path" do
it "swaps :: with slash" do
"Foo::Bar".to_const_path.should == "foo/bar"
end
it "snake_cases string" do
"Merb::Test::ViewHelper".to_const_path.should == "merb/test/view_helper"
end
it "leaves slash-separated snake case string as is" do
"merb/test/view_helper".to_const_path.should == "merb/test/view_helper"
end
end
describe String, "#camel_case" do
it "handles lowercase without underscore" do
"merb".camel_case.should == "Merb"
end
it "handles lowercase with 1 underscore" do
"merb_core".camel_case.should == "MerbCore"
end
it "handles lowercase with more than 1 underscore" do
"so_you_want_contribute_to_merb_core".camel_case.should == "SoYouWantContributeToMerbCore"
end
it "handles lowercase with more than 1 underscore in a row" do
"__python__is__like__this".camel_case.should == "PythonIsLikeThis"
end
it "handle first capital letter with underscores" do
"Python__Is__Like__This".camel_case.should == "PythonIsLikeThis"
end
it "leaves CamelCase as is" do
"TestController".camel_case.should == "TestController"
end
it "handle when section ends in a number" do
"ec2_instance".camel_case.should == "Ec2Instance"
"ec2".camel_case.should == "Ec2"
"s3_bucket_name".camel_case.should == "S3BucketName"
end
end
describe String, "#snake_case" do
it "lowercases one word CamelCase" do
"Merb".snake_case.should == "merb"
end
it "makes one underscore snake_case two word CamelCase" do
"MerbCore".snake_case.should == "merb_core"
end
it "handles CamelCase with more than 2 words" do
"SoYouWantContributeToMerbCore".snake_case.should == "so_you_want_contribute_to_merb_core"
end
it "handles CamelCase with more than 2 capital letter in a row" do
"CNN".snake_case.should == "cnn"
"CNNNews".snake_case.should == "cnn_news"
"HeadlineCNNNews".snake_case.should == "headline_cnn_news"
"NameACRONYM".snake_case.should == "name_acronym"
"EC2".snake_case.should == "ec2"
"EC2Instance".snake_case.should == "ec2_instance"
end
it "does NOT change one word lowercase" do
"merb".snake_case.should == "merb"
end
it "leaves snake_case as is" do
"merb_core".snake_case.should == "merb_core"
end
it "detects a capital after a number" do
"Ec2Instance".snake_case.should == "ec2_instance"
"Route53".snake_case.should == "route53"
"S3BucketName".snake_case.should == "s3_bucket_name"
end
end
describe String, "#escape_regexp" do
it "escapes all * in a string" do
"*and*".escape_regexp.should == "\\*and\\*"
end
it "escapes all ? in a string" do
"?and?".escape_regexp.should == "\\?and\\?"
end
it "escapes all { in a string" do
"{and{".escape_regexp.should == "\\{and\\{"
end
it "escapes all } in a string" do
"}and}".escape_regexp.should == "\\}and\\}"
end
it "escapes all . in a string" do
".and.".escape_regexp.should == "\\.and\\."
end
it "escapes all regexp special characters used in a string" do
"*?{}.".escape_regexp.should == "\\*\\?\\{\\}\\."
end
end
describe String, "#unescape_regexp" do
it "unescapes all \\* in a string" do
"\\*and\\*".unescape_regexp.should == "*and*"
end
it "unescapes all \\? in a string" do
"\\?and\\?".unescape_regexp.should == "?and?"
end
it "unescapes all \\{ in a string" do
"\\{and\\{".unescape_regexp.should == "{and{"
end
it "unescapes all \\} in a string" do
"\\}and\\}".unescape_regexp.should == "}and}"
end
it "unescapes all \\. in a string" do
"\\.and\\.".unescape_regexp.should == ".and."
end
it "unescapes all regexp special characters used in a string" do
"\\*\\?\\{\\}\\.".unescape_regexp.should == "*?{}."
end
end
describe String, "#/" do
it "concanates operands with File::SEPARATOR" do
("merb" / "core").should == "merb#{File::SEPARATOR}core"
end
end
require 'rbconfig'
describe String, "#relative_path_from" do
it "uses other operand as base for path calculation" do
site_dir = Config::CONFIG["sitedir"]
two_levels_up = site_dir.split(File::SEPARATOR)
2.times { two_levels_up.pop } # remove two deepest directories
two_levels_up = two_levels_up.join(File::SEPARATOR)
two_levels_up.relative_path_from(site_dir).should == "../.."
end
end
describe String, ".translate" do
before(:each) do
String.stub!(:translations).and_return({ "on snakes and rubies" => "a serpenti e rubini" })
end
it 'looks up for translation in translations dictionary' do
String.translate("on snakes and rubies").should == "a serpenti e rubini"
end
it 'returns string that has no translations as it is' do
String.translate("shapes").should == "shapes"
String.translate("kalopsia").should == "kalopsia"
String.translate("holding on to nothing").should == "holding on to nothing"
end
end
describe String, ".t" do
before(:each) do
String.stub!(:translations).and_return({ '%s must not be blank' => "%s moet ingevuld worden",
'username' => 'gebruikersnaam',
'%s must be between %s and %s characters long' => '%s moet tussen %s en %s tekens lang zijn'})
end
it 'looks up for translation in translations dictionary and translates parameters as well' do
"%s must not be blank".t(:username).should == "gebruikersnaam moet ingevuld worden"
"%s must not be blank".t('username').should == "gebruikersnaam moet ingevuld worden"
"%s must be between %s and %s characters long".t(:password, 5, 9).should == "password moet tussen 5 en 9 tekens lang zijn"
end
it 'returns string that has no translations as it is' do
"password".t.should == "password"
end
it 'should not translate when freezed' do
"%s must not be blank".t('username'.freeze).should == "username moet ingevuld worden"
end
end
describe String, ".translations" do
before(:each) do
end
it 'returns empty hash by default' do
String.translations.should == {}
end
it 'returns @translations if set' do
pending "is it @translations on metaclass or @@translations? leaving it out for now"
end
end