xqsr3 0.38.2 → 0.39.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +15 -6
- data/examples/count_word_frequencies.md +12 -12
- data/examples/count_word_frequencies.rb +4 -4
- data/lib/xqsr3/array_utilities/join_with_or.rb +47 -47
- data/lib/xqsr3/array_utilities.rb +2 -2
- data/lib/xqsr3/command_line_utilities/map_option_string.rb +60 -60
- data/lib/xqsr3/command_line_utilities.rb +2 -2
- data/lib/xqsr3/containers/frequency_map.rb +399 -399
- data/lib/xqsr3/containers/multi_map.rb +448 -448
- data/lib/xqsr3/containers.rb +3 -3
- data/lib/xqsr3/conversion/bool_parser.rb +51 -51
- data/lib/xqsr3/conversion/integer_parser.rb +87 -87
- data/lib/xqsr3/conversion.rb +3 -3
- data/lib/xqsr3/diagnostics/exception_utilities.rb +145 -145
- data/lib/xqsr3/diagnostics/exceptions/with_cause.rb +90 -90
- data/lib/xqsr3/diagnostics/inspect_builder.rb +80 -80
- data/lib/xqsr3/diagnostics.rb +3 -3
- data/lib/xqsr3/doc_.rb +130 -130
- data/lib/xqsr3/extensions/array/join_with_or.rb +9 -9
- data/lib/xqsr3/extensions/enumerable/collect_with_index.rb +12 -12
- data/lib/xqsr3/extensions/enumerable/detect_map.rb +35 -35
- data/lib/xqsr3/extensions/enumerable/unique.rb +29 -28
- data/lib/xqsr3/extensions/hash/deep_transform.rb +1 -1
- data/lib/xqsr3/extensions/hash/except.rb +16 -16
- data/lib/xqsr3/extensions/hash/has_match.rb +10 -10
- data/lib/xqsr3/extensions/hash/match.rb +10 -10
- data/lib/xqsr3/extensions/hash/slice.rb +11 -11
- data/lib/xqsr3/extensions/hash.rb +1 -1
- data/lib/xqsr3/extensions/integer/to_s_grp.rb +118 -0
- data/lib/xqsr3/extensions/integer.rb +3 -0
- data/lib/xqsr3/extensions/io/writelines.rb +28 -28
- data/lib/xqsr3/extensions/kernel/integer.rb +20 -20
- data/lib/xqsr3/extensions/kernel/raise_with_options.rb +8 -8
- data/lib/xqsr3/extensions/kernel.rb +1 -0
- data/lib/xqsr3/extensions/string/ends_with.rb +1 -1
- data/lib/xqsr3/extensions/string/map_option_string.rb +4 -4
- data/lib/xqsr3/extensions/string/nil_if_empty.rb +1 -1
- data/lib/xqsr3/extensions/string/nil_if_whitespace.rb +1 -1
- data/lib/xqsr3/extensions/string/quote_if.rb +1 -1
- data/lib/xqsr3/extensions/string/starts_with.rb +1 -1
- data/lib/xqsr3/extensions/string/to_bool.rb +8 -8
- data/lib/xqsr3/extensions/string/to_symbol.rb +1 -1
- data/lib/xqsr3/extensions/string/truncate.rb +1 -1
- data/lib/xqsr3/extensions/test/unit/assert_eql.rb +10 -7
- data/lib/xqsr3/extensions/test/unit/assert_false.rb +9 -6
- data/lib/xqsr3/extensions/test/unit/assert_not.rb +9 -6
- data/lib/xqsr3/extensions/test/unit/assert_not_eql.rb +10 -7
- data/lib/xqsr3/extensions/test/unit/assert_raise_with_message.rb +61 -61
- data/lib/xqsr3/extensions/test/unit/assert_subclass_of.rb +10 -7
- data/lib/xqsr3/extensions/test/unit/assert_superclass_of.rb +10 -7
- data/lib/xqsr3/extensions/test/unit/assert_true.rb +9 -6
- data/lib/xqsr3/extensions/test/unit/assert_type_has_instance_methods.rb +39 -36
- data/lib/xqsr3/extensions.rb +5 -5
- data/lib/xqsr3/hash_utilities/deep_transform.rb +65 -65
- data/lib/xqsr3/hash_utilities/key_matching.rb +77 -77
- data/lib/xqsr3/hash_utilities.rb +3 -3
- data/lib/xqsr3/internal_/test_unit_version_.rb +83 -83
- data/lib/xqsr3/io/writelines.rb +122 -120
- data/lib/xqsr3/quality/parameter_checking.rb +445 -445
- data/lib/xqsr3/quality.rb +2 -2
- data/lib/xqsr3/string_utilities/ends_with.rb +59 -59
- data/lib/xqsr3/string_utilities/nil_if_empty.rb +28 -28
- data/lib/xqsr3/string_utilities/nil_if_whitespace.rb +29 -29
- data/lib/xqsr3/string_utilities/quote_if.rb +50 -50
- data/lib/xqsr3/string_utilities/starts_with.rb +59 -59
- data/lib/xqsr3/string_utilities/to_symbol.rb +75 -75
- data/lib/xqsr3/string_utilities/truncate.rb +55 -55
- data/lib/xqsr3/string_utilities.rb +8 -8
- data/lib/xqsr3/version.rb +12 -12
- data/test/performance/frequency_map.rb +12 -12
- data/test/scratch/test_assert_raise_with_message.rb +11 -11
- data/test/unit/array_utilities/tc_join_with_or.rb +140 -140
- data/test/unit/command_line_utilities/tc_map_option_string.rb +18 -18
- data/test/unit/containers/tc_frequency_map.rb +591 -591
- data/test/unit/containers/tc_multi_map.rb +558 -558
- data/test/unit/conversion/tc_integer_parser.rb +72 -72
- data/test/unit/conversion/tc_to_bool.rb +25 -25
- data/test/unit/diagnostics/exceptions/tc_with_cause.rb +165 -165
- data/test/unit/diagnostics/tc_exception_utilities.rb +156 -156
- data/test/unit/extensions/enumerable/tc_collect_with_index.rb +14 -14
- data/test/unit/extensions/enumerable/tc_detect_map.rb +20 -20
- data/test/unit/extensions/enumerable/tc_unique.rb +34 -34
- data/test/unit/extensions/hash/tc_deep_transform.rb +22 -22
- data/test/unit/extensions/hash/tc_except.rb +28 -28
- data/test/unit/extensions/hash/tc_slice.rb +13 -13
- data/test/unit/extensions/integer/tc_to_s_grp.rb +60 -0
- data/test/unit/extensions/integer/ts_all.rb +12 -0
- data/test/unit/extensions/io/tc_writelines.rb +149 -77
- data/test/unit/extensions/kernel/tc_integer.rb +75 -75
- data/test/unit/extensions/kernel/tc_raise_with_options.rb +155 -155
- data/test/unit/extensions/object/tc_inspect.rb +50 -50
- data/test/unit/extensions/string/tc_bool.tb +24 -24
- data/test/unit/extensions/string/tc_ends_with.rb +53 -53
- data/test/unit/extensions/string/tc_map_option_string.rb +15 -15
- data/test/unit/extensions/string/tc_nil_if_empty.rb +8 -8
- data/test/unit/extensions/string/tc_nil_if_whitespace.rb +8 -8
- data/test/unit/extensions/string/tc_quote_if.rb +18 -18
- data/test/unit/extensions/string/tc_starts_with.rb +53 -53
- data/test/unit/extensions/string/tc_to_symbol.rb +26 -26
- data/test/unit/extensions/string/tc_truncate.rb +18 -18
- data/test/unit/extensions/test/unit/tc_assert_raise_with_message.rb +16 -16
- data/test/unit/extensions/test/unit/tc_assert_subclass_of.rb +9 -9
- data/test/unit/extensions/test/unit/tc_assert_superclass_of.rb +9 -9
- data/test/unit/hash_utilities/tc_has_match.rb +70 -70
- data/test/unit/hash_utilities/tc_match.rb +83 -83
- data/test/unit/io/tc_writelines.rb +166 -106
- data/test/unit/quality/tc_parameter_checking.rb +389 -389
- data/test/unit/string_utilities/tc_truncate.rb +27 -27
- data/test/unit/tc_version.rb +15 -15
- metadata +6 -2
@@ -11,188 +11,248 @@ include ::Xqsr3::IO
|
|
11
11
|
|
12
12
|
class Test_Xqsr3_IO_writelines < Test::Unit::TestCase
|
13
13
|
|
14
|
-
|
14
|
+
def test_single_string
|
15
15
|
|
16
|
-
|
16
|
+
input = 'abc'
|
17
17
|
|
18
|
-
|
18
|
+
s = StringIO.new '', 'a'
|
19
19
|
|
20
|
-
|
20
|
+
r = ::Xqsr3::IO.writelines s, input
|
21
21
|
|
22
|
-
|
23
|
-
|
24
|
-
|
22
|
+
assert_equal 1, r
|
23
|
+
assert_equal "abc\n", s.string
|
24
|
+
end
|
25
25
|
|
26
|
-
|
26
|
+
def test_single_string_in_array
|
27
27
|
|
28
|
-
|
28
|
+
input = [ 'abc' ]
|
29
29
|
|
30
|
-
|
30
|
+
s = StringIO.new '', 'a'
|
31
31
|
|
32
|
-
|
32
|
+
r = ::Xqsr3::IO.writelines s, input
|
33
33
|
|
34
|
-
|
35
|
-
|
36
|
-
|
34
|
+
assert_equal 1, r
|
35
|
+
assert_equal "abc\n", s.string
|
36
|
+
end
|
37
37
|
|
38
|
-
|
38
|
+
def test_single_string_in_hash
|
39
39
|
|
40
|
-
|
40
|
+
input = { 'abc' => '' }
|
41
41
|
|
42
|
-
|
42
|
+
s = StringIO.new '', 'a'
|
43
43
|
|
44
|
-
|
44
|
+
r = ::Xqsr3::IO.writelines s, input
|
45
45
|
|
46
|
-
|
47
|
-
|
48
|
-
|
46
|
+
assert_equal 1, r
|
47
|
+
assert_equal "abc\n", s.string
|
48
|
+
end
|
49
49
|
|
50
|
-
|
50
|
+
def test_two_strings_in_array
|
51
51
|
|
52
|
-
|
52
|
+
input = [ 'abc', 'def' ]
|
53
53
|
|
54
|
-
|
54
|
+
s = StringIO.new '', 'a'
|
55
55
|
|
56
|
-
|
56
|
+
r = ::Xqsr3::IO.writelines s, input
|
57
57
|
|
58
|
-
|
59
|
-
|
60
|
-
|
58
|
+
assert_equal 2, r
|
59
|
+
assert_equal "abc\ndef\n", s.string
|
60
|
+
end
|
61
61
|
|
62
|
-
|
62
|
+
def test_two_strings_in_array_with_suppressed_eol
|
63
63
|
|
64
|
-
|
64
|
+
input = [ 'abc', 'def' ]
|
65
65
|
|
66
|
-
|
66
|
+
s = StringIO.new '', 'a'
|
67
67
|
|
68
|
-
|
68
|
+
r = ::Xqsr3::IO.writelines s, input, line_separator: ''
|
69
69
|
|
70
|
-
|
71
|
-
|
72
|
-
|
70
|
+
assert_equal 2, r
|
71
|
+
assert_equal "abcdef", s.string
|
72
|
+
end
|
73
73
|
|
74
|
-
|
74
|
+
def test_two_strings_in_hash
|
75
75
|
|
76
|
-
|
76
|
+
input = { 'ab' => 'c', 'de' => 'f' }
|
77
77
|
|
78
|
-
|
78
|
+
s = StringIO.new '', 'a'
|
79
79
|
|
80
|
-
|
80
|
+
r = ::Xqsr3::IO.writelines s, input
|
81
81
|
|
82
|
-
|
83
|
-
|
84
|
-
|
82
|
+
assert_equal 2, r
|
83
|
+
assert_equal "abc\ndef\n", s.string
|
84
|
+
end
|
85
85
|
|
86
|
-
|
86
|
+
def test_two_strings_in_hash_nolasteol
|
87
87
|
|
88
|
-
|
88
|
+
input = { 'ab' => 'c', 'de' => 'f' }
|
89
89
|
|
90
|
-
|
90
|
+
s = StringIO.new '', 'a'
|
91
91
|
|
92
|
-
|
92
|
+
r = ::Xqsr3::IO.writelines s, input, no_last_eol: true
|
93
93
|
|
94
|
-
|
95
|
-
|
96
|
-
|
94
|
+
assert_equal 2, r
|
95
|
+
assert_equal "abc\ndef", s.string
|
96
|
+
end
|
97
97
|
|
98
|
-
|
98
|
+
def test_two_strings_in_hash_with_col_sep
|
99
99
|
|
100
|
-
|
100
|
+
input = { 'ab' => 'c', 'de' => 'f' }
|
101
101
|
|
102
|
-
|
102
|
+
s = StringIO.new '', 'a'
|
103
103
|
|
104
|
-
|
104
|
+
r = ::Xqsr3::IO.writelines s, input, column_separator: "\t"
|
105
105
|
|
106
|
-
|
107
|
-
|
108
|
-
|
106
|
+
assert_equal 2, r
|
107
|
+
assert_equal "ab\tc\nde\tf\n", s.string
|
108
|
+
end
|
109
109
|
|
110
|
-
|
110
|
+
def test_two_strings_in_hash_with_line_sep
|
111
111
|
|
112
|
-
|
112
|
+
input = { 'ab' => 'c', 'de' => 'f' }
|
113
113
|
|
114
|
-
|
114
|
+
s = StringIO.new '', 'a'
|
115
115
|
|
116
|
-
|
116
|
+
r = ::Xqsr3::IO.writelines s, input, line_separator: '+'
|
117
117
|
|
118
|
-
|
119
|
-
|
120
|
-
|
118
|
+
assert_equal 2, r
|
119
|
+
assert_equal "abc+def+", s.string
|
120
|
+
end
|
121
121
|
|
122
|
-
|
122
|
+
def test_two_strings_in_hash_with_line_sep_and_col_sep
|
123
123
|
|
124
|
-
|
124
|
+
input = { 'ab' => 'c', 'de' => 'f' }
|
125
125
|
|
126
|
-
|
126
|
+
s = StringIO.new '', 'a'
|
127
127
|
|
128
|
-
|
128
|
+
r = ::Xqsr3::IO.writelines s, input, line_separator: '+', column_separator: "\t"
|
129
129
|
|
130
|
-
|
131
|
-
|
132
|
-
|
130
|
+
assert_equal 2, r
|
131
|
+
assert_equal "ab\tc+de\tf+", s.string
|
132
|
+
end
|
133
133
|
|
134
|
-
|
134
|
+
def test_two_strings_in_hash_with_line_sep_and_col_sep_and_nolasteol
|
135
135
|
|
136
|
-
|
136
|
+
input = { 'ab' => 'c', 'de' => 'f' }
|
137
137
|
|
138
|
-
|
138
|
+
s = StringIO.new '', 'a'
|
139
139
|
|
140
|
-
|
140
|
+
r = ::Xqsr3::IO.writelines s, input, line_separator: '+', column_separator: "\t", no_last_eol: true
|
141
141
|
|
142
|
-
|
142
|
+
assert_equal 2, r
|
143
|
+
assert_equal "ab\tc+de\tf", s.string
|
144
|
+
end
|
143
145
|
|
144
|
-
|
146
|
+
def test_two_entries_in_hash_with_line_sep_and_col_sep
|
145
147
|
|
146
|
-
|
147
|
-
assert_equal "entry-0000\nentry-0001\n", s.string[0 ... 22]
|
148
|
-
end
|
148
|
+
input = { 'ab' => 'c', 'de' => 'f' }
|
149
149
|
|
150
|
-
|
150
|
+
s = StringIO.new '', 'a'
|
151
151
|
|
152
|
-
|
152
|
+
r = ::Xqsr3::IO.writelines s, input, line_separator: '+', column_separator: '-'
|
153
153
|
|
154
|
-
|
154
|
+
assert_equal 2, r
|
155
|
+
assert_equal "ab-c+de-f+", s.string
|
156
|
+
end
|
155
157
|
|
156
|
-
|
158
|
+
def test_ten_strings_in_array
|
157
159
|
|
158
|
-
|
160
|
+
input = (0...10).map { |i| i.to_s }
|
159
161
|
|
160
|
-
|
162
|
+
s = StringIO.new
|
161
163
|
|
162
|
-
|
163
|
-
assert_equal "entry-0000\nentry-0001\n", s.string[0 ... 22]
|
164
|
-
end
|
164
|
+
r = ::Xqsr3::IO.writelines s, input
|
165
165
|
|
166
|
-
|
166
|
+
assert_equal 10, r
|
167
|
+
assert_equal "0\n1\n2\n3\n4\n5\n6\n7\n8\n9\n", s.string
|
168
|
+
end
|
167
169
|
|
168
|
-
|
170
|
+
def test_strings_with_cr_in_array
|
169
171
|
|
170
|
-
|
172
|
+
input = [ "abc\n", "def\n", "ghi\n" ]
|
171
173
|
|
172
|
-
|
174
|
+
s = StringIO.new
|
173
175
|
|
174
|
-
|
176
|
+
r = ::Xqsr3::IO.writelines s, input
|
175
177
|
|
176
|
-
|
178
|
+
assert_equal 3, r
|
179
|
+
assert_equal "abc\ndef\nghi\n", s.string
|
180
|
+
end
|
177
181
|
|
178
|
-
|
179
|
-
assert_equal "entry-0000\n|entry-0001\n|", s.string[0 ... 24]
|
180
|
-
end
|
182
|
+
def test_strings_with_cr_in_array_and_line_sep
|
181
183
|
|
182
|
-
|
184
|
+
input = [ "abc\n", "def\n", "ghi\n" ]
|
183
185
|
|
184
|
-
|
186
|
+
s = StringIO.new
|
185
187
|
|
186
|
-
|
188
|
+
r = ::Xqsr3::IO.writelines s, input, line_separator: '|'
|
187
189
|
|
188
|
-
|
190
|
+
assert_equal 3, r
|
191
|
+
assert_equal "abc\n|def\n|ghi\n|", s.string
|
192
|
+
end
|
189
193
|
|
190
|
-
|
194
|
+
def test_many_strings_in_array_with_eol
|
191
195
|
|
192
|
-
|
196
|
+
input = []
|
193
197
|
|
194
|
-
|
195
|
-
|
196
|
-
|
198
|
+
(0...1000).each { |n| input << "entry-#{n.to_s().rjust(4, '0')}\n" }
|
199
|
+
|
200
|
+
assert_equal 1000, input.size
|
201
|
+
|
202
|
+
s = StringIO.new
|
203
|
+
|
204
|
+
r = ::Xqsr3::IO.writelines s, input
|
205
|
+
|
206
|
+
assert_equal 1000, r
|
207
|
+
assert_equal "entry-0000\nentry-0001\n", s.string[0 ... 22]
|
208
|
+
end
|
209
|
+
|
210
|
+
def test_many_strings_in_array_without_eol
|
211
|
+
|
212
|
+
input = []
|
213
|
+
|
214
|
+
(0...1000).each { |n| input << "entry-#{n.to_s().rjust(4, '0')}" }
|
215
|
+
|
216
|
+
assert_equal 1000, input.size
|
217
|
+
|
218
|
+
s = StringIO.new
|
219
|
+
|
220
|
+
r = ::Xqsr3::IO.writelines s, input
|
221
|
+
|
222
|
+
assert_equal 1000, r
|
223
|
+
assert_equal "entry-0000\nentry-0001\n", s.string[0 ... 22]
|
224
|
+
end
|
225
|
+
|
226
|
+
def test_many_strings_in_array_with_eol_and_line_sep
|
227
|
+
|
228
|
+
input = []
|
229
|
+
|
230
|
+
(0...1000).each { |n| input << "entry-#{n.to_s().rjust(4, '0')}\n" }
|
231
|
+
|
232
|
+
assert_equal 1000, input.size
|
233
|
+
|
234
|
+
s = StringIO.new
|
235
|
+
|
236
|
+
r = ::Xqsr3::IO.writelines s, input, line_separator: '|'
|
237
|
+
|
238
|
+
assert_equal 1000, r
|
239
|
+
assert_equal "entry-0000\n|entry-0001\n|", s.string[0 ... 24]
|
240
|
+
end
|
241
|
+
|
242
|
+
def test_many_strings_in_array_without_eol_and_line_sep
|
243
|
+
|
244
|
+
input = []
|
245
|
+
|
246
|
+
(0...1000).each { |n| input << "entry-#{n.to_s().rjust(4, '0')}" }
|
247
|
+
|
248
|
+
assert_equal 1000, input.size
|
249
|
+
|
250
|
+
s = StringIO.new
|
251
|
+
|
252
|
+
r = ::Xqsr3::IO.writelines s, input, line_separator: '|'
|
253
|
+
|
254
|
+
assert_equal 1000, r
|
255
|
+
assert_equal "entry-0000|entry-0001|", s.string[0 ... 22]
|
256
|
+
end
|
197
257
|
end
|
198
258
|
|