dogviz 0.0.8 → 0.0.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/dogviz/version.rb +1 -1
- data/lib/dogviz.rb +15 -11
- data/tests/test_dogviz_graph.rb +29 -0
- data/tests/test_dogviz_graphviz_rendering.rb +0 -22
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ccbe6d7d9874501b08c7cf43ea6a1e49b95d8cca
|
4
|
+
data.tar.gz: 09b487a66ff024a597c1afc6aafe0107af7710d5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2f87845958188d5eded22c201d4858c6c7c0c390092bbe975ffe788827d5a45ae3296ae84af5d74fc8fb12bccf97c609ea7ae803a846f3a14051885f1fccefd5
|
7
|
+
data.tar.gz: fe666f3a5bc5474eed94511c2d75830236605a848b8cad6379920f0414737b2ec12f22ca0224cc9a47269623d64fcd2e6baebd897d780cb0e6076a937cf3af3b
|
data/lib/dogviz/version.rb
CHANGED
data/lib/dogviz.rb
CHANGED
@@ -210,7 +210,7 @@ module Dogviz
|
|
210
210
|
|
211
211
|
def initialize(parent, name, options = {})
|
212
212
|
@children = []
|
213
|
-
@by_name = Registry.new
|
213
|
+
@by_name = Registry.new name
|
214
214
|
@parent = parent
|
215
215
|
@name = name
|
216
216
|
@id = create_id(name, parent)
|
@@ -356,7 +356,7 @@ module Dogviz
|
|
356
356
|
|
357
357
|
def initialize(name, hints = {splines: 'line'})
|
358
358
|
@children = []
|
359
|
-
@by_name = Registry.new
|
359
|
+
@by_name = Registry.new name
|
360
360
|
@render_hints = hints
|
361
361
|
@title = create_title(name)
|
362
362
|
@rendered = false
|
@@ -410,19 +410,23 @@ module Dogviz
|
|
410
410
|
end
|
411
411
|
|
412
412
|
class LookupError < StandardError
|
413
|
+
def initialize(context, message)
|
414
|
+
super "(in context '#{context}') #{message}"
|
415
|
+
end
|
413
416
|
end
|
414
417
|
class MissingMatchBlockError < LookupError
|
415
|
-
def initialize
|
416
|
-
super 'need to provide match block'
|
418
|
+
def initialize(context)
|
419
|
+
super context, 'need to provide match block'
|
417
420
|
end
|
418
421
|
end
|
419
422
|
class DuplicateLookupError < LookupError
|
420
|
-
def initialize(name)
|
421
|
-
super "More than one object registered of name '#{name}' - you'll need to search in a narrower context"
|
423
|
+
def initialize(context, name)
|
424
|
+
super context, "More than one object registered of name '#{name}' - you'll need to search in a narrower context"
|
422
425
|
end
|
423
426
|
end
|
424
427
|
class Registry
|
425
|
-
def initialize
|
428
|
+
def initialize(context)
|
429
|
+
@context = context
|
426
430
|
@by_name = {}
|
427
431
|
@all = []
|
428
432
|
end
|
@@ -430,25 +434,25 @@ module Dogviz
|
|
430
434
|
def register(name, thing)
|
431
435
|
@all << thing
|
432
436
|
if @by_name.has_key?(name)
|
433
|
-
@by_name[name] = DuplicateLookupError.new name
|
437
|
+
@by_name[name] = DuplicateLookupError.new @context, name
|
434
438
|
else
|
435
439
|
@by_name[name] = thing
|
436
440
|
end
|
437
441
|
end
|
438
442
|
|
439
443
|
def find(&matcher)
|
440
|
-
raise LookupError.new("need to provide match block") unless block_given?
|
444
|
+
raise LookupError.new(@context, "need to provide match block") unless block_given?
|
441
445
|
@all.find &matcher
|
442
446
|
end
|
443
447
|
|
444
448
|
def find_all(&matcher)
|
445
|
-
raise MissingMatchBlockError.new unless block_given?
|
449
|
+
raise MissingMatchBlockError.new(@context) unless block_given?
|
446
450
|
@all.select &matcher
|
447
451
|
end
|
448
452
|
|
449
453
|
def lookup(name)
|
450
454
|
found = @by_name[name]
|
451
|
-
raise LookupError.new("could not find '#{name}'") if found.nil?
|
455
|
+
raise LookupError.new(@context, "could not find '#{name}'") if found.nil?
|
452
456
|
raise found if found.is_a?(Exception)
|
453
457
|
found
|
454
458
|
end
|
data/tests/test_dogviz_graph.rb
CHANGED
@@ -74,6 +74,35 @@ class TestDogvizGraph < Test::Unit::TestCase
|
|
74
74
|
})
|
75
75
|
end
|
76
76
|
|
77
|
+
def test_find_thing
|
78
|
+
sys.group('top').thing('needle')
|
79
|
+
|
80
|
+
assert_equal('needle', sys.find('needle').name)
|
81
|
+
end
|
82
|
+
|
83
|
+
def test_find_duplicate_show_blow_up
|
84
|
+
sys.group('A').thing('needle')
|
85
|
+
sys.group('B').thing('needle')
|
86
|
+
|
87
|
+
assert_raise DuplicateLookupError do
|
88
|
+
sys.find('needle').name
|
89
|
+
end
|
90
|
+
end
|
91
|
+
|
92
|
+
def test_find_nothing_show_blow_up
|
93
|
+
sys.group('A').thing('needle')
|
94
|
+
|
95
|
+
assert_raise LookupError do
|
96
|
+
sys.find('not a needle')
|
97
|
+
end
|
98
|
+
end
|
99
|
+
|
100
|
+
def test_find_container
|
101
|
+
inner = sys.group('g').group('nested group').group('inner')
|
102
|
+
|
103
|
+
assert_equal(inner, sys.find('inner'))
|
104
|
+
end
|
105
|
+
|
77
106
|
def test_find_all
|
78
107
|
group = sys.group('g')
|
79
108
|
nested_group = group.group('nested group')
|
@@ -312,28 +312,6 @@ class TestDogvizGraphvizRendering < Test::Unit::TestCase
|
|
312
312
|
assert_nil find('g_b')
|
313
313
|
end
|
314
314
|
|
315
|
-
def test_find_thing
|
316
|
-
sys.group('top').thing('needle')
|
317
|
-
|
318
|
-
assert_equal('needle', sys.find('needle').name)
|
319
|
-
end
|
320
|
-
|
321
|
-
def test_find_duplicate_show_blow_up
|
322
|
-
sys.group('A').thing('needle')
|
323
|
-
sys.group('B').thing('needle')
|
324
|
-
|
325
|
-
assert_raise DuplicateLookupError do
|
326
|
-
sys.find('needle').name
|
327
|
-
end
|
328
|
-
end
|
329
|
-
|
330
|
-
def test_find_nothing_show_blow_up
|
331
|
-
sys.group('A').thing('needle')
|
332
|
-
|
333
|
-
assert_raise LookupError do
|
334
|
-
sys.find('not a needle')
|
335
|
-
end
|
336
|
-
end
|
337
315
|
|
338
316
|
def test_doclinks_create_links
|
339
317
|
a = sys.thing('a')
|