rroonga 1.0.1 → 1.0.2
Sign up to get free protection for your applications and to get access to all the features.
- data/NEWS.ja.rdoc +46 -0
- data/NEWS.rdoc +46 -0
- data/README.ja.rdoc +2 -2
- data/README.rdoc +2 -3
- data/Rakefile +148 -11
- data/example/bookmark.rb +94 -91
- data/ext/groonga/extconf.rb +25 -25
- data/ext/groonga/groonga.def +2 -0
- data/ext/groonga/mkmf.log +7 -7
- data/ext/groonga/rb-grn-column.c +66 -0
- data/ext/groonga/rb-grn-context.c +92 -5
- data/ext/groonga/rb-grn-database.c +24 -1
- data/ext/groonga/rb-grn-exception.c +15 -0
- data/ext/groonga/rb-grn-hash.c +2 -2
- data/ext/groonga/rb-grn-index-column.c +8 -4
- data/ext/groonga/rb-grn-object.c +4 -2
- data/ext/groonga/rb-grn-patricia-trie.c +2 -2
- data/ext/groonga/rb-grn-snippet.c +1 -0
- data/ext/groonga/rb-grn-table-key-support.c +22 -19
- data/ext/groonga/rb-grn-table.c +63 -5
- data/ext/groonga/rb-grn.h +1 -1
- data/ext/groonga/rb-groonga.c +1 -0
- data/extconf.rb +1 -1
- data/html/developer.html +8 -2
- data/html/favicon.ico +0 -0
- data/html/favicon.svg +591 -0
- data/html/index.html +71 -8
- data/html/logo.svg +612 -0
- data/html/ranguba.css +92 -7
- data/html/readme.svg +256 -0
- data/lib/groonga/expression-builder.rb +8 -4
- data/lib/groonga/record.rb +77 -7
- data/lib/groonga/schema.rb +429 -100
- data/rroonga-build.rb +1 -1
- data/test/run-test.rb +1 -1
- data/test/test-array.rb +4 -0
- data/test/test-context.rb +8 -0
- data/test/test-database.rb +8 -1
- data/test/test-expression-builder.rb +14 -0
- data/test/test-fix-size-column.rb +4 -0
- data/test/test-hash.rb +10 -4
- data/test/test-index-column.rb +11 -0
- data/test/test-patricia-trie.rb +7 -1
- data/test/test-record.rb +14 -0
- data/test/test-remote.rb +3 -2
- data/test/test-schema-create-table.rb +32 -2
- data/test/test-schema.rb +108 -11
- data/test/test-table-select-normalize.rb +7 -3
- data/test/test-table-select.rb +12 -0
- data/test/test-table.rb +7 -0
- data/test/test-variable-size-column.rb +4 -0
- data/test-unit/Rakefile +40 -0
- data/test-unit/TODO +5 -0
- data/test-unit/bin/testrb +5 -0
- data/test-unit/html/classic.html +15 -0
- data/test-unit/html/index.html +25 -0
- data/test-unit/html/index.html.ja +27 -0
- data/test-unit/lib/test/unit/assertionfailederror.rb +25 -0
- data/test-unit/lib/test/unit/assertions.rb +1230 -0
- data/test-unit/lib/test/unit/attribute.rb +125 -0
- data/test-unit/lib/test/unit/autorunner.rb +360 -0
- data/test-unit/lib/test/unit/collector/descendant.rb +23 -0
- data/test-unit/lib/test/unit/collector/dir.rb +108 -0
- data/test-unit/lib/test/unit/collector/load.rb +144 -0
- data/test-unit/lib/test/unit/collector/objectspace.rb +34 -0
- data/test-unit/lib/test/unit/collector.rb +36 -0
- data/test-unit/lib/test/unit/color-scheme.rb +102 -0
- data/test-unit/lib/test/unit/color.rb +96 -0
- data/test-unit/lib/test/unit/diff.rb +724 -0
- data/test-unit/lib/test/unit/error.rb +130 -0
- data/test-unit/lib/test/unit/exceptionhandler.rb +39 -0
- data/test-unit/lib/test/unit/failure.rb +136 -0
- data/test-unit/lib/test/unit/fixture.rb +176 -0
- data/test-unit/lib/test/unit/notification.rb +129 -0
- data/test-unit/lib/test/unit/omission.rb +191 -0
- data/test-unit/lib/test/unit/pending.rb +150 -0
- data/test-unit/lib/test/unit/priority.rb +180 -0
- data/test-unit/lib/test/unit/runner/console.rb +52 -0
- data/test-unit/lib/test/unit/runner/emacs.rb +8 -0
- data/test-unit/lib/test/unit/runner/tap.rb +8 -0
- data/test-unit/lib/test/unit/testcase.rb +476 -0
- data/test-unit/lib/test/unit/testresult.rb +89 -0
- data/test-unit/lib/test/unit/testsuite.rb +110 -0
- data/test-unit/lib/test/unit/ui/console/outputlevel.rb +14 -0
- data/test-unit/lib/test/unit/ui/console/testrunner.rb +466 -0
- data/test-unit/lib/test/unit/ui/emacs/testrunner.rb +63 -0
- data/test-unit/lib/test/unit/ui/tap/testrunner.rb +92 -0
- data/test-unit/lib/test/unit/ui/testrunner.rb +28 -0
- data/test-unit/lib/test/unit/ui/testrunnermediator.rb +77 -0
- data/test-unit/lib/test/unit/ui/testrunnerutilities.rb +41 -0
- data/test-unit/lib/test/unit/util/backtracefilter.rb +41 -0
- data/test-unit/lib/test/unit/util/method-owner-finder.rb +28 -0
- data/test-unit/lib/test/unit/util/observable.rb +90 -0
- data/test-unit/lib/test/unit/util/procwrapper.rb +48 -0
- data/test-unit/lib/test/unit/version.rb +7 -0
- data/test-unit/lib/test/unit.rb +323 -0
- data/test-unit/sample/adder.rb +13 -0
- data/test-unit/sample/subtracter.rb +12 -0
- data/test-unit/sample/test_adder.rb +20 -0
- data/test-unit/sample/test_subtracter.rb +20 -0
- data/test-unit/sample/test_user.rb +23 -0
- data/test-unit/test/collector/test-descendant.rb +133 -0
- data/test-unit/test/collector/test-load.rb +442 -0
- data/test-unit/test/collector/test_dir.rb +406 -0
- data/test-unit/test/collector/test_objectspace.rb +100 -0
- data/test-unit/test/run-test.rb +15 -0
- data/test-unit/test/test-attribute.rb +86 -0
- data/test-unit/test/test-color-scheme.rb +67 -0
- data/test-unit/test/test-color.rb +47 -0
- data/test-unit/test/test-diff.rb +518 -0
- data/test-unit/test/test-emacs-runner.rb +60 -0
- data/test-unit/test/test-fixture.rb +287 -0
- data/test-unit/test/test-notification.rb +33 -0
- data/test-unit/test/test-omission.rb +81 -0
- data/test-unit/test/test-pending.rb +70 -0
- data/test-unit/test/test-priority.rb +119 -0
- data/test-unit/test/test-testcase.rb +544 -0
- data/test-unit/test/test_assertions.rb +1151 -0
- data/test-unit/test/test_error.rb +26 -0
- data/test-unit/test/test_failure.rb +33 -0
- data/test-unit/test/test_testresult.rb +113 -0
- data/test-unit/test/test_testsuite.rb +129 -0
- data/test-unit/test/testunit-test-util.rb +14 -0
- data/test-unit/test/ui/test_testrunmediator.rb +20 -0
- data/test-unit/test/util/test-method-owner-finder.rb +38 -0
- data/test-unit/test/util/test_backtracefilter.rb +41 -0
- data/test-unit/test/util/test_observable.rb +102 -0
- data/test-unit/test/util/test_procwrapper.rb +36 -0
- data/text/{TUTORIAL.ja.rdoc → tutorial.ja.rdoc} +165 -126
- metadata +106 -16
- data/html/favicon.xcf +0 -0
- data/html/logo.xcf +0 -0
- data/license/GPL +0 -340
- data/license/RUBY +0 -59
- data/pkg-config.rb +0 -333
@@ -0,0 +1,406 @@
|
|
1
|
+
require 'test/unit'
|
2
|
+
require 'test/unit/collector/dir'
|
3
|
+
require 'pp'
|
4
|
+
|
5
|
+
module Test
|
6
|
+
module Unit
|
7
|
+
module Collector
|
8
|
+
class TestDir < TestCase
|
9
|
+
class FileSystem
|
10
|
+
class Directory
|
11
|
+
def initialize(name, fs, parent=self, &block)
|
12
|
+
@name = name
|
13
|
+
@fs = fs
|
14
|
+
@parent = parent
|
15
|
+
@contents = {'.' => self, '..' => parent}
|
16
|
+
instance_eval(&block) if(block)
|
17
|
+
end
|
18
|
+
|
19
|
+
def file(name, contents)
|
20
|
+
@contents[name] = contents
|
21
|
+
end
|
22
|
+
|
23
|
+
def dir(name, &block)
|
24
|
+
@contents[name] = self.class.new(name, @fs, self, &block)
|
25
|
+
end
|
26
|
+
|
27
|
+
def entries
|
28
|
+
@contents.keys
|
29
|
+
end
|
30
|
+
|
31
|
+
def directory?(name)
|
32
|
+
return true if(name.nil? || name.empty?)
|
33
|
+
return false unless(@contents.include?(name))
|
34
|
+
@contents[name].kind_of?(self.class)
|
35
|
+
end
|
36
|
+
|
37
|
+
def file?(name)
|
38
|
+
return false unless(@contents.include?(name))
|
39
|
+
!directory?(name)
|
40
|
+
end
|
41
|
+
|
42
|
+
def exist?(name)
|
43
|
+
@contents.include?(name)
|
44
|
+
end
|
45
|
+
|
46
|
+
def [](name)
|
47
|
+
raise Errno::ENOENT, name unless(@contents.include?(name))
|
48
|
+
@contents[name]
|
49
|
+
end
|
50
|
+
|
51
|
+
def path_to(name=nil)
|
52
|
+
if(!name)
|
53
|
+
@parent.path_to(@name)
|
54
|
+
elsif(@parent == self)
|
55
|
+
@fs.join('/', name)
|
56
|
+
else
|
57
|
+
@fs.join(@parent.path_to(@name), name)
|
58
|
+
end
|
59
|
+
end
|
60
|
+
end
|
61
|
+
|
62
|
+
class ObjectSpace
|
63
|
+
def initialize
|
64
|
+
@objects = []
|
65
|
+
end
|
66
|
+
|
67
|
+
def each_object(klass, &block)
|
68
|
+
@objects.find_all{|o| o.kind_of?(klass)}.each(&block)
|
69
|
+
end
|
70
|
+
|
71
|
+
def <<(object)
|
72
|
+
@objects << object
|
73
|
+
end
|
74
|
+
end
|
75
|
+
|
76
|
+
attr_reader :object_space
|
77
|
+
|
78
|
+
def initialize(&block)
|
79
|
+
@root = Directory.new('/', self, &block)
|
80
|
+
@pwd = @root
|
81
|
+
@object_space = ObjectSpace.new
|
82
|
+
@required = []
|
83
|
+
end
|
84
|
+
|
85
|
+
def entries(dir)
|
86
|
+
e = find(dir)
|
87
|
+
require_directory(dir)
|
88
|
+
e.entries
|
89
|
+
end
|
90
|
+
|
91
|
+
def directory?(name)
|
92
|
+
return true if (base = basename(name)) == '/'
|
93
|
+
e = find(dirname(name))
|
94
|
+
return false unless(e)
|
95
|
+
e.directory?(base)
|
96
|
+
end
|
97
|
+
|
98
|
+
def find(path)
|
99
|
+
if(/\A\// =~ path)
|
100
|
+
thing = @root
|
101
|
+
else
|
102
|
+
thing = @pwd
|
103
|
+
end
|
104
|
+
path.scan(/[^\/]+/) do |e|
|
105
|
+
break thing = false unless(thing.kind_of?(Directory))
|
106
|
+
thing = thing[e]
|
107
|
+
end
|
108
|
+
thing
|
109
|
+
end
|
110
|
+
|
111
|
+
def dirname(name)
|
112
|
+
if (name = name.tr_s('/', '/')) == '/'
|
113
|
+
name
|
114
|
+
else
|
115
|
+
name[%r"\A.+(?=/[^/]+/?\z)|\A/"] || "."
|
116
|
+
end
|
117
|
+
end
|
118
|
+
|
119
|
+
def basename(name)
|
120
|
+
name[%r"(\A/|[^/]+)/*\z", 1]
|
121
|
+
end
|
122
|
+
|
123
|
+
def split(name)
|
124
|
+
[dirname(name), basename(name)]
|
125
|
+
end
|
126
|
+
|
127
|
+
def join(*parts)
|
128
|
+
parts.join('/').gsub(%r{/+}, '/')
|
129
|
+
end
|
130
|
+
|
131
|
+
def file?(name)
|
132
|
+
e = find(dirname(name))
|
133
|
+
return false unless(e)
|
134
|
+
e.file?(basename(name))
|
135
|
+
end
|
136
|
+
|
137
|
+
def pwd
|
138
|
+
@pwd.path_to
|
139
|
+
end
|
140
|
+
|
141
|
+
def chdir(to)
|
142
|
+
e = find(to)
|
143
|
+
require_directory(to)
|
144
|
+
@pwd = e
|
145
|
+
end
|
146
|
+
|
147
|
+
def expand_path(path, base = nil)
|
148
|
+
until /\A\// =~ path
|
149
|
+
base ||= pwd
|
150
|
+
path = join(base, path)
|
151
|
+
base = nil
|
152
|
+
end
|
153
|
+
path.gsub!(%r"(?:/\.)+(?=/)", '')
|
154
|
+
nil while path.sub!(%r"/(?!\.\./)[^/]+/\.\.(?=/)", '')
|
155
|
+
path.sub!(%r"\A(?:/\.\.)+(?=/)", '')
|
156
|
+
path.sub!(%r"(?:\A(/)|/)\.\.?\z", '\1')
|
157
|
+
path
|
158
|
+
end
|
159
|
+
|
160
|
+
def require_directory(path)
|
161
|
+
raise Errno::ENOTDIR, path unless(directory?(path))
|
162
|
+
end
|
163
|
+
|
164
|
+
def require(file)
|
165
|
+
return false if(@required.include?(file))
|
166
|
+
begin
|
167
|
+
e = find(file)
|
168
|
+
rescue Errno::ENOENT => e
|
169
|
+
if(/\.rb\Z/ =~ file)
|
170
|
+
raise LoadError, file
|
171
|
+
end
|
172
|
+
e = find(file + '.rb')
|
173
|
+
end
|
174
|
+
@required << file
|
175
|
+
@object_space << e
|
176
|
+
true
|
177
|
+
rescue Errno::ENOENT
|
178
|
+
raise LoadError, file
|
179
|
+
end
|
180
|
+
end
|
181
|
+
|
182
|
+
def test_dir
|
183
|
+
inner_dir = nil
|
184
|
+
dirs = FileSystem::Directory.new('/', nil) do
|
185
|
+
file 'a', nil
|
186
|
+
inner_dir = dir 'b'
|
187
|
+
end
|
188
|
+
assert_equal(inner_dir, dirs['b'])
|
189
|
+
end
|
190
|
+
|
191
|
+
def test_fs
|
192
|
+
fs = FileSystem.new do
|
193
|
+
file 'a', nil
|
194
|
+
dir 'b'
|
195
|
+
end
|
196
|
+
assert_equal(['.', '..', 'a', 'b'].sort, fs.entries('/').sort)
|
197
|
+
assert(fs.directory?('/'))
|
198
|
+
assert(!fs.directory?('/a'))
|
199
|
+
assert(!fs.directory?('/bogus'))
|
200
|
+
assert(fs.file?('/a'))
|
201
|
+
assert(!fs.file?('/'))
|
202
|
+
assert(!fs.file?('/bogus'))
|
203
|
+
assert(fs.directory?('/b'))
|
204
|
+
assert(fs.file?('a'))
|
205
|
+
assert(fs.directory?('b'))
|
206
|
+
end
|
207
|
+
|
208
|
+
def test_fs_sub
|
209
|
+
fs = FileSystem.new do
|
210
|
+
dir 'a' do
|
211
|
+
file 'b', nil
|
212
|
+
dir 'c' do
|
213
|
+
file 'd', nil
|
214
|
+
end
|
215
|
+
end
|
216
|
+
end
|
217
|
+
assert(fs.file?('/a/b'))
|
218
|
+
assert(!fs.file?('/a/b/c/d'))
|
219
|
+
assert(fs.file?('/a/c/d'))
|
220
|
+
end
|
221
|
+
|
222
|
+
def test_fs_pwd
|
223
|
+
fs = FileSystem.new do
|
224
|
+
file 'a', nil
|
225
|
+
dir 'b' do
|
226
|
+
file 'c', nil
|
227
|
+
dir 'd' do
|
228
|
+
file 'e', nil
|
229
|
+
end
|
230
|
+
end
|
231
|
+
end
|
232
|
+
assert_equal('/', fs.pwd)
|
233
|
+
assert_raises(Errno::ENOENT) do
|
234
|
+
fs.chdir('bogus')
|
235
|
+
end
|
236
|
+
assert_raises(Errno::ENOTDIR) do
|
237
|
+
fs.chdir('a')
|
238
|
+
end
|
239
|
+
fs.chdir('b')
|
240
|
+
assert_equal('/b', fs.pwd)
|
241
|
+
fs.chdir('d')
|
242
|
+
assert_equal('/b/d', fs.pwd)
|
243
|
+
fs.chdir('..')
|
244
|
+
assert_equal('/b', fs.pwd)
|
245
|
+
fs.chdir('..')
|
246
|
+
assert_equal('/', fs.pwd)
|
247
|
+
end
|
248
|
+
|
249
|
+
def test_fs_entries
|
250
|
+
fs = FileSystem.new do
|
251
|
+
file 'a', nil
|
252
|
+
dir 'b' do
|
253
|
+
file 'c', nil
|
254
|
+
file 'd', nil
|
255
|
+
end
|
256
|
+
file 'e', nil
|
257
|
+
dir 'f' do
|
258
|
+
file 'g', nil
|
259
|
+
dir 'h' do
|
260
|
+
file 'i', nil
|
261
|
+
end
|
262
|
+
end
|
263
|
+
end
|
264
|
+
assert_equal(['.', '..', 'a', 'b', 'e', 'f'], fs.entries('/').sort)
|
265
|
+
assert_equal(['.', '..', 'a', 'b', 'e', 'f'], fs.entries('.').sort)
|
266
|
+
assert_equal(['.', '..', 'a', 'b', 'e', 'f'], fs.entries('b/..').sort)
|
267
|
+
assert_equal(['.', '..', 'c', 'd'], fs.entries('b').sort)
|
268
|
+
assert_raises(Errno::ENOENT) do
|
269
|
+
fs.entries('z')
|
270
|
+
end
|
271
|
+
assert_raises(Errno::ENOTDIR) do
|
272
|
+
fs.entries('a')
|
273
|
+
end
|
274
|
+
fs.chdir('f')
|
275
|
+
assert_equal(['.', '..', 'i'], fs.entries('h').sort)
|
276
|
+
end
|
277
|
+
|
278
|
+
class TestClass1
|
279
|
+
end
|
280
|
+
class TestClass2
|
281
|
+
end
|
282
|
+
def test_fs_require
|
283
|
+
fs = FileSystem.new do
|
284
|
+
file 'test_class1.rb', TestClass1
|
285
|
+
dir 'dir' do
|
286
|
+
file 'test_class2.rb', TestClass2
|
287
|
+
end
|
288
|
+
end
|
289
|
+
c = []
|
290
|
+
fs.object_space.each_object(Class) do |o|
|
291
|
+
c << o
|
292
|
+
end
|
293
|
+
assert_equal([], c)
|
294
|
+
|
295
|
+
assert_raises(LoadError) do
|
296
|
+
fs.require('bogus')
|
297
|
+
end
|
298
|
+
|
299
|
+
assert(fs.require('test_class1.rb'))
|
300
|
+
assert(!fs.require('test_class1.rb'))
|
301
|
+
c = []
|
302
|
+
fs.object_space.each_object(Class) do |o|
|
303
|
+
c << o
|
304
|
+
end
|
305
|
+
assert_equal([TestClass1], c)
|
306
|
+
|
307
|
+
fs.require('dir/test_class2')
|
308
|
+
c = []
|
309
|
+
fs.object_space.each_object(Class) do |o|
|
310
|
+
c << o
|
311
|
+
end
|
312
|
+
assert_equal([TestClass1, TestClass2], c)
|
313
|
+
|
314
|
+
c = []
|
315
|
+
fs.object_space.each_object(Time) do |o|
|
316
|
+
c << o
|
317
|
+
end
|
318
|
+
assert_equal([], c)
|
319
|
+
end
|
320
|
+
|
321
|
+
def setup
|
322
|
+
@t1 = t1 = create_test(1)
|
323
|
+
@t2 = t2 = create_test(2)
|
324
|
+
@t3 = t3 = create_test(3)
|
325
|
+
@t4 = t4 = create_test(4)
|
326
|
+
@t5 = t5 = create_test(5)
|
327
|
+
@t6 = t6 = create_test(6)
|
328
|
+
fs = FileSystem.new do
|
329
|
+
file 'test_1.rb', t1
|
330
|
+
file 'test_2.rb', t2
|
331
|
+
dir 'd1' do
|
332
|
+
file 'test_3.rb', t3
|
333
|
+
end
|
334
|
+
file 't4.rb', t4
|
335
|
+
dir 'd2' do
|
336
|
+
file 'test_5', t5
|
337
|
+
file 'test_6.rb', Time
|
338
|
+
end
|
339
|
+
file 't6.rb', t6
|
340
|
+
end
|
341
|
+
fs.require('t6')
|
342
|
+
@c = Dir.new(fs, fs, fs.object_space, fs)
|
343
|
+
end
|
344
|
+
|
345
|
+
def create_test(name)
|
346
|
+
t = Class.new(TestCase)
|
347
|
+
t.class_eval <<-EOC
|
348
|
+
def self.name
|
349
|
+
"T\#{#{name}}"
|
350
|
+
end
|
351
|
+
def test_#{name}a
|
352
|
+
end
|
353
|
+
def test_#{name}b
|
354
|
+
end
|
355
|
+
EOC
|
356
|
+
t
|
357
|
+
end
|
358
|
+
|
359
|
+
def test_simple_collect
|
360
|
+
expected = TestSuite.new('d1')
|
361
|
+
expected << (@t3.suite)
|
362
|
+
assert_equal(expected, @c.collect('d1'))
|
363
|
+
end
|
364
|
+
|
365
|
+
def test_multilevel_collect
|
366
|
+
expected = TestSuite.new('.')
|
367
|
+
expected << @t1.suite << @t2.suite
|
368
|
+
expected << (TestSuite.new('d1') << @t3.suite)
|
369
|
+
assert_equal(expected, @c.collect)
|
370
|
+
end
|
371
|
+
|
372
|
+
def test_collect_file
|
373
|
+
expected = TestSuite.new('test_1.rb')
|
374
|
+
expected << @t1.suite
|
375
|
+
assert_equal(expected, @c.collect('test_1.rb'))
|
376
|
+
|
377
|
+
expected = TestSuite.new('t4.rb')
|
378
|
+
expected << @t4.suite
|
379
|
+
assert_equal(expected, @c.collect('t4.rb'))
|
380
|
+
end
|
381
|
+
|
382
|
+
def test_nil_pattern
|
383
|
+
expected = TestSuite.new('d2')
|
384
|
+
expected << @t5.suite
|
385
|
+
@c.pattern.clear
|
386
|
+
assert_equal(expected, @c.collect('d2'))
|
387
|
+
end
|
388
|
+
|
389
|
+
def test_filtering
|
390
|
+
expected = TestSuite.new('.')
|
391
|
+
expected << @t1.suite
|
392
|
+
@c.filter = proc{|t| t.method_name == 'test_1a' || t.method_name == 'test_1b'}
|
393
|
+
assert_equal(expected, @c.collect)
|
394
|
+
end
|
395
|
+
|
396
|
+
def test_collect_multi
|
397
|
+
expected = TestSuite.new('[d1, d2]')
|
398
|
+
expected << (TestSuite.new('d1') << @t3.suite)
|
399
|
+
expected << (TestSuite.new('d2') << @t5.suite)
|
400
|
+
@c.pattern.replace([/\btest_/])
|
401
|
+
assert_equal(expected, @c.collect('d1', 'd2'))
|
402
|
+
end
|
403
|
+
end
|
404
|
+
end
|
405
|
+
end
|
406
|
+
end
|
@@ -0,0 +1,100 @@
|
|
1
|
+
# Author:: Nathaniel Talbott.
|
2
|
+
# Copyright:: Copyright (c) 2000-2003 Nathaniel Talbott. All rights reserved.
|
3
|
+
# License:: Ruby license.
|
4
|
+
|
5
|
+
require 'test/unit'
|
6
|
+
require 'test/unit/collector/objectspace'
|
7
|
+
|
8
|
+
module Test
|
9
|
+
module Unit
|
10
|
+
module Collector
|
11
|
+
class TC_ObjectSpace < TestCase
|
12
|
+
def setup
|
13
|
+
@tc1 = Class.new(TestCase) do
|
14
|
+
def self.name
|
15
|
+
"tc_1"
|
16
|
+
end
|
17
|
+
def test_1
|
18
|
+
end
|
19
|
+
def test_2
|
20
|
+
end
|
21
|
+
end
|
22
|
+
|
23
|
+
@tc2 = Class.new(TestCase) do
|
24
|
+
def self.name
|
25
|
+
"tc_2"
|
26
|
+
end
|
27
|
+
def test_0
|
28
|
+
end
|
29
|
+
end
|
30
|
+
|
31
|
+
@no_tc = Class.new do
|
32
|
+
def test_4
|
33
|
+
end
|
34
|
+
end
|
35
|
+
|
36
|
+
@object_space = {Class => [@tc1, @tc2, @no_tc], String => ['']}
|
37
|
+
def @object_space.each_object(type)
|
38
|
+
self[type].each{|item| yield(item) }
|
39
|
+
end
|
40
|
+
|
41
|
+
@c = ObjectSpace.new(@object_space)
|
42
|
+
end
|
43
|
+
|
44
|
+
def full_suite(name=ObjectSpace::NAME)
|
45
|
+
expected = TestSuite.new(name)
|
46
|
+
expected << (TestSuite.new(@tc1.name) << @tc1.new('test_1') << @tc1.new('test_2'))
|
47
|
+
expected << (TestSuite.new(@tc2.name) << @tc2.new('test_0'))
|
48
|
+
end
|
49
|
+
|
50
|
+
def empty_suite
|
51
|
+
TestSuite.new(ObjectSpace::NAME)
|
52
|
+
end
|
53
|
+
|
54
|
+
def test_basic_collection
|
55
|
+
assert_equal(full_suite("name"), @c.collect("name"))
|
56
|
+
|
57
|
+
@c.filter = []
|
58
|
+
assert_equal(full_suite("name"), @c.collect("name"))
|
59
|
+
end
|
60
|
+
|
61
|
+
def test_filtered_collection
|
62
|
+
@c.filter = proc{false}
|
63
|
+
assert_equal(empty_suite, @c.collect)
|
64
|
+
|
65
|
+
@c.filter = proc{true}
|
66
|
+
assert_equal(full_suite, @c.collect)
|
67
|
+
|
68
|
+
@c.filter = proc{nil}
|
69
|
+
assert_equal(full_suite, @c.collect)
|
70
|
+
|
71
|
+
@c.filter = [proc{false}, proc{true}]
|
72
|
+
assert_equal(empty_suite, @c.collect)
|
73
|
+
|
74
|
+
@c.filter = [proc{true}, proc{false}]
|
75
|
+
assert_equal(empty_suite, @c.collect)
|
76
|
+
|
77
|
+
@c.filter = [proc{nil}, proc{false}]
|
78
|
+
assert_equal(empty_suite, @c.collect)
|
79
|
+
|
80
|
+
@c.filter = [proc{nil}, proc{true}]
|
81
|
+
assert_equal(full_suite, @c.collect)
|
82
|
+
|
83
|
+
expected = TestSuite.new(ObjectSpace::NAME)
|
84
|
+
expected << (TestSuite.new(@tc1.name) << @tc1.new('test_1'))
|
85
|
+
expected << (TestSuite.new(@tc2.name) << @tc2.new('test_0'))
|
86
|
+
@c.filter = proc{|test| ['test_1', 'test_0'].include?(test.method_name)}
|
87
|
+
assert_equal(expected, @c.collect)
|
88
|
+
|
89
|
+
expected = TestSuite.new(ObjectSpace::NAME)
|
90
|
+
TestSuite.new(@tc1.name) << @tc1.new('test_1')
|
91
|
+
TestSuite.new(@tc2.name) << @tc2.new('test_0')
|
92
|
+
@c.filter = [proc{|t| t.method_name == 'test_1' ? true : nil},
|
93
|
+
proc{|t| t.method_name == 'test_0' ? true : nil},
|
94
|
+
proc{false}]
|
95
|
+
assert_equal(empty_suite, @c.collect)
|
96
|
+
end
|
97
|
+
end
|
98
|
+
end
|
99
|
+
end
|
100
|
+
end
|
@@ -0,0 +1,15 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
|
3
|
+
$VERBOSE = true
|
4
|
+
|
5
|
+
$KCODE = "utf8" unless "".respond_to?(:encoding)
|
6
|
+
|
7
|
+
base_dir = File.expand_path(File.join(File.dirname(__FILE__), ".."))
|
8
|
+
lib_dir = File.join(base_dir, "lib")
|
9
|
+
test_dir = File.join(base_dir, "test")
|
10
|
+
|
11
|
+
$LOAD_PATH.unshift(lib_dir)
|
12
|
+
|
13
|
+
require 'test/unit'
|
14
|
+
|
15
|
+
exit Test::Unit::AutoRunner.run(true, test_dir)
|
@@ -0,0 +1,86 @@
|
|
1
|
+
class TestUnitAttribute < Test::Unit::TestCase
|
2
|
+
class TestStack < Test::Unit::TestCase
|
3
|
+
class << self
|
4
|
+
def suite
|
5
|
+
Test::Unit::TestSuite.new(name)
|
6
|
+
end
|
7
|
+
end
|
8
|
+
|
9
|
+
class Stack
|
10
|
+
def initialize
|
11
|
+
@data = []
|
12
|
+
end
|
13
|
+
|
14
|
+
def push(data)
|
15
|
+
@data.push(data)
|
16
|
+
end
|
17
|
+
|
18
|
+
def peek
|
19
|
+
@data[-2]
|
20
|
+
end
|
21
|
+
|
22
|
+
def empty?
|
23
|
+
@data.empty?
|
24
|
+
end
|
25
|
+
|
26
|
+
def size
|
27
|
+
@data.size + 11
|
28
|
+
end
|
29
|
+
end
|
30
|
+
|
31
|
+
def setup
|
32
|
+
@stack = Stack.new
|
33
|
+
end
|
34
|
+
|
35
|
+
attribute :category, :accessor
|
36
|
+
def test_peek
|
37
|
+
@stack.push(1)
|
38
|
+
@stack.push(2)
|
39
|
+
assert_equal(2, @stack.peek)
|
40
|
+
end
|
41
|
+
|
42
|
+
attribute :bug, 1234
|
43
|
+
def test_bug_1234
|
44
|
+
assert_equal(0, @stack.size)
|
45
|
+
end
|
46
|
+
|
47
|
+
def test_no_attributes
|
48
|
+
assert(@stack.empty?)
|
49
|
+
@stack.push(1)
|
50
|
+
assert(!@stack.empty?)
|
51
|
+
assert_equal(1, @stack.size)
|
52
|
+
end
|
53
|
+
end
|
54
|
+
|
55
|
+
def test_set_attributes
|
56
|
+
test_for_accessor_category = TestStack.new("test_peek")
|
57
|
+
assert_equal({"category" => :accessor},
|
58
|
+
test_for_accessor_category.attributes)
|
59
|
+
|
60
|
+
test_for_bug_1234 = TestStack.new("test_bug_1234")
|
61
|
+
assert_equal({"bug" => 1234}, test_for_bug_1234.attributes)
|
62
|
+
|
63
|
+
test_no_attributes = TestStack.new("test_no_attributes")
|
64
|
+
assert_equal({}, test_no_attributes.attributes)
|
65
|
+
end
|
66
|
+
|
67
|
+
def test_callback
|
68
|
+
changed_attributes = []
|
69
|
+
observer = Proc.new do |test_case, key, old_value, value, method_name|
|
70
|
+
changed_attributes << [test_case, key, old_value, value, method_name]
|
71
|
+
end
|
72
|
+
|
73
|
+
test_case = Class.new(TestStack) do
|
74
|
+
register_attribute_observer(:bug, &observer)
|
75
|
+
attribute("bug", 9876, "test_bug_1234")
|
76
|
+
attribute(:description, "Test for peek", "test_peek")
|
77
|
+
attribute(:bug, 29, "test_peek")
|
78
|
+
end
|
79
|
+
|
80
|
+
assert_equal([
|
81
|
+
[test_case, "bug", 1234, 9876, "test_bug_1234"],
|
82
|
+
[test_case, "bug", nil, 29, "test_peek"],
|
83
|
+
],
|
84
|
+
changed_attributes)
|
85
|
+
end
|
86
|
+
end
|
@@ -0,0 +1,67 @@
|
|
1
|
+
class TestUnitColorScheme < Test::Unit::TestCase
|
2
|
+
def test_default
|
3
|
+
assert_equal({
|
4
|
+
"success" => color("green", :bold => true),
|
5
|
+
"failure" => color("red", :bold => true),
|
6
|
+
"pending" => color("magenta", :bold => true),
|
7
|
+
"omission" => color("blue", :bold => true),
|
8
|
+
"notification" => color("cyan", :bold => true),
|
9
|
+
"error" => color("yellow", :bold => true) +
|
10
|
+
color("black", :foreground => false),
|
11
|
+
"case" => color("white", :bold => true) +
|
12
|
+
color("blue", :foreground => false),
|
13
|
+
"suite" => color("white", :bold => true) +
|
14
|
+
color("green", :foreground => false),
|
15
|
+
"diff-inserted-tag" => color("red", :bold => true),
|
16
|
+
"diff-deleted-tag" => color("green", :bold => true),
|
17
|
+
"diff-difference-tag" => color("cyan", :bold => true),
|
18
|
+
"diff-inserted" => color("red", :foreground => false) +
|
19
|
+
color("white", :bold => true),
|
20
|
+
"diff-deleted" => color("green", :foreground => false) +
|
21
|
+
color("white", :bold => true),
|
22
|
+
},
|
23
|
+
Test::Unit::ColorScheme.default.to_hash)
|
24
|
+
end
|
25
|
+
|
26
|
+
def test_register
|
27
|
+
inverted_scheme_spec = {
|
28
|
+
"success" => {:name => "red"},
|
29
|
+
"failure" => {:name => "green"},
|
30
|
+
}
|
31
|
+
Test::Unit::ColorScheme["inverted"] = inverted_scheme_spec
|
32
|
+
assert_equal({
|
33
|
+
"success" => color("red"),
|
34
|
+
"failure" => color("green"),
|
35
|
+
},
|
36
|
+
Test::Unit::ColorScheme["inverted"].to_hash)
|
37
|
+
end
|
38
|
+
|
39
|
+
def test_new_with_colors
|
40
|
+
scheme = Test::Unit::ColorScheme.new(:success => color("blue"),
|
41
|
+
"failure" => color("green",
|
42
|
+
:underline => true))
|
43
|
+
assert_equal({
|
44
|
+
"success" => color("blue"),
|
45
|
+
"failure" => color("green", :underline => true),
|
46
|
+
},
|
47
|
+
scheme.to_hash)
|
48
|
+
end
|
49
|
+
|
50
|
+
def test_new_with_spec
|
51
|
+
scheme = Test::Unit::ColorScheme.new(:success => {
|
52
|
+
:name => "blue",
|
53
|
+
:bold => true
|
54
|
+
},
|
55
|
+
"failure" => {:name => "green"})
|
56
|
+
assert_equal({
|
57
|
+
"success" => color("blue", :bold => true),
|
58
|
+
"failure" => color("green"),
|
59
|
+
},
|
60
|
+
scheme.to_hash)
|
61
|
+
end
|
62
|
+
|
63
|
+
private
|
64
|
+
def color(name, options={})
|
65
|
+
Test::Unit::Color.new(name, options)
|
66
|
+
end
|
67
|
+
end
|