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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: bcec4e28ebe9b38eda150fac635b13040c499939
4
- data.tar.gz: 9851df214b4df958205fcc0955e3c397bb8c23a9
3
+ metadata.gz: ccbe6d7d9874501b08c7cf43ea6a1e49b95d8cca
4
+ data.tar.gz: 09b487a66ff024a597c1afc6aafe0107af7710d5
5
5
  SHA512:
6
- metadata.gz: c1cb00916e724e66dced7a147c3210a93df00622c846d2b217bbb3baeac7cced8e3a93e4c895b286a0d7c562fca6b0c6e3ece8cd86adb6a5e620b78672edc00c
7
- data.tar.gz: 49c26b618b27f77276093a36f204e7745d0bdb0a880a0cb95c77b0d9e658d4deea2c8a142697341fcc2da90667d59dfa8fe51d5b7284fa23fbda538ca86c9e70
6
+ metadata.gz: 2f87845958188d5eded22c201d4858c6c7c0c390092bbe975ffe788827d5a45ae3296ae84af5d74fc8fb12bccf97c609ea7ae803a846f3a14051885f1fccefd5
7
+ data.tar.gz: fe666f3a5bc5474eed94511c2d75830236605a848b8cad6379920f0414737b2ec12f22ca0224cc9a47269623d64fcd2e6baebd897d780cb0e6076a937cf3af3b
@@ -1,3 +1,3 @@
1
1
  module Dogviz
2
- VERSION = '0.0.8'
2
+ VERSION = '0.0.9'
3
3
  end
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
@@ -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')
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: dogviz
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.8
4
+ version: 0.0.9
5
5
  platform: ruby
6
6
  authors:
7
7
  - damned