Tidied up the let clauses in edge_spec
authorNeil Smith <neil.github@njae.me.uk>
Mon, 2 Jul 2012 15:31:19 +0000 (16:31 +0100)
committerNeil Smith <neil.github@njae.me.uk>
Mon, 2 Jul 2012 15:31:19 +0000 (16:31 +0100)
lib/graph.njae.rb
lib/graph.njae/edge.rb
lib/graph.njae/graph.rb
lib/graph.njae/vertex.rb
spec/graph/edge_spec.rb
spec/graph/vertex_spec.rb

index ac4e0b395f829fd3eb14a026096e7105b9fcc43c..0fea6d7bad137d7b862c9b0000ae4bc1a16e8ae5 100644 (file)
@@ -1,5 +1,7 @@
 require 'bundler/setup'
 
-require 'graph.njae/graph'
-require 'graph.njae/edge'
-require 'graph.njae/vertex'
+require 'ostruct'
+
+require_relative 'graph.njae/graph'
+require_relative 'graph.njae/edge'
+require_relative 'graph.njae/vertex'
index f3efc91eec9157301ece98c735663d2c94f0d1c8..7fd99b771bec5082e96f6fe2ebef7e11e283814c 100644 (file)
@@ -1,5 +1,3 @@
-require 'ostruct'
-
 # A simple graph library
 
 module GraphNjae
@@ -48,6 +46,23 @@ module GraphNjae
     def to_s
       '<E: ' + self.type.to_s + ' [' + self.vertices.map {|n| n.to_s}.join(', ') + '] >'
     end
+    
+    def to_dot(opts = {})
+      if block_given?
+        yield self
+      else
+        dot = self.connections[0].end.object_id.to_s + " -- " + self.connections[1].end.object_id.to_s
+        if opts.size > 0
+          dot << ' {'
+          dot << opts.keys.map { |k|
+            (k.to_s + ' = "' + self.instance_eval(opts[k].to_s).to_s) + '"'
+                        }.join(', ')
+          dot << '}'
+        end
+        dot << ';'
+      end
+    end
+
   end
   
   # A connection between an Edge and a Vertex.The connection can have arbitrary attributes,
index bdf75b231e0089ec0acbae0dfc9c2f5fb6d2ce8b..37b772030053c146f61e14c2c286a3ed60c4bd8a 100644 (file)
@@ -1,5 +1,3 @@
-require 'ostruct'
-
 require 'logger'
 $log = Logger.new(STDERR)
 $log.level = Logger::WARN
index 6e46dcb40029aef8ceca16ad5c5ea2fc5a789c46..4ac903c2bea7f9424ab34ecb9c6a8b42a57cab88 100644 (file)
@@ -1,5 +1,3 @@
-require 'ostruct'
-
 # A simple graph library
 
 module GraphNjae
@@ -43,5 +41,21 @@ module GraphNjae
       '<V: ' + self.name + '>'
     end
     
+    def to_dot(opts = {})
+      if block_given?
+        yield self
+      else
+        dot = self.object_id.to_s
+        if opts.size > 0
+          dot << ' {'
+          dot << opts.keys.map { |k|
+            (k.to_s + ' = "' + self.instance_eval(opts[k].to_s).to_s) + '"'
+                        }.join(', ')
+          dot << '}'
+        end
+        dot << ';'
+      end
+    end
+    
   end
 end
index 8fc71ba76c5bfa42b7ee3843e32d144c3a111e5a..bd823bfd919ab882fed7d7267710413018b648e6 100644 (file)
@@ -3,6 +3,10 @@ require File.expand_path(File.dirname(__FILE__) + '/../spec_helper')
 module GraphNjae
   describe Edge do
     let (:e) { Edge.new }
+    let(:v1) {Vertex.new :name => :v1}
+    let(:v2) {Vertex.new :name => :v2}
+    let(:v3) {Vertex.new :name => :v3}
+
     describe "#initialize" do
       it "creates an empty edge" do
         e = Edge.new
@@ -28,8 +32,6 @@ module GraphNjae
     describe "#<<" do
       it "adds a new vertex to an edge (with a connection)" do
         e.connections.should be_empty
-        v1 = Vertex.new :name => :v1
-        v2 = Vertex.new :name => :v2
         e << v1
         e.should have(1).connections
         e.should have(1).vertices
@@ -45,8 +47,6 @@ module GraphNjae
       
       it "adds several vertices to an edge" do
         e.connections.should be_empty
-        v1 = Vertex.new :name => :v1
-        v2 = Vertex.new :name => :v2
         e << v1 << v2
         e.vertices.should include(v1)
         e.vertices.should include(v2)
@@ -55,7 +55,6 @@ module GraphNjae
 
       it "adds a self-loop" do
         e.connections.should be_empty
-        v1 = Vertex.new
         e << v1 << v1
         e.vertices.should include(v1)
         e.should have(2).vertices
@@ -66,8 +65,6 @@ module GraphNjae
     describe "connection_at" do
       it "returns the connection that links to a vertex" do
         e.connections.should be_empty
-        v1 = Vertex.new :name => :v1
-        v2 = Vertex.new :name => :v2
         e << v1 << v2
         
         e.connection_at(v1).end.should be v1
@@ -76,9 +73,6 @@ module GraphNjae
       
       it "returns nil if there is no connection to that vertex" do
         e.connections.should be_empty
-        v1 = Vertex.new :name => :v1
-        v2 = Vertex.new :name => :v2
-        v3 = Vertex.new :name => :v3
         e << v1 << v2
         
         e.connection_at(v3).should be nil
@@ -86,7 +80,6 @@ module GraphNjae
       
       it "returns the vertex for a self-loop" do
         e.connections.should be_empty
-        v1 = Vertex.new :name => :v1
         e << v1 << v1
         
         e.connection_at(v1).end.should be v1
@@ -96,8 +89,6 @@ module GraphNjae
     describe "other_end" do
       it "returns the vertex at the other end of the given one" do
         e.connections.should be_empty
-        v1 = Vertex.new :name => :v1
-        v2 = Vertex.new :name => :v2
         e << v1 << v2
         
         e.other_end(v1).should be v2
@@ -106,7 +97,6 @@ module GraphNjae
       
       it "returns the same vertex in a self-loop" do
         e.connections.should be_empty
-        v1 = Vertex.new :name => :v1
         e << v1 << v1
         
         e.other_end(v1).should be v1
@@ -114,21 +104,38 @@ module GraphNjae
       
       it "returns one of the connected edges if given a vertex not connected to it" do
         e.connections.should be_empty
-        v1 = Vertex.new :name => :v1
-        v2 = Vertex.new :name => :v2
-        v3 = Vertex.new :name => :v3
         e << v1 << v2
         
         [v1, v2].should include e.other_end(v3)
       end 
       
       it "returns nil if it can't return something sensible" do
-        v1 = Vertex.new :name => :v1
         e.other_end(v1).should be_nil
         e << v1
         e.other_end(v1).should be_nil
       end
     end # other_end
+    
+    describe "#to_dot" do
+      it "describes an edge in dot notation" do
+        e << v1 << v2
+
+        e.to_dot.should == "#{v1.object_id.to_s} -- #{v2.object_id.to_s};"
+      end
+      
+      it "describes an edge in dot notation, using given attributes" do
+        e << v1 << v2
+        #vdot = v1.to_dot :label => :name, :shape => :shape
+        #vdot.should == "#{v.object_id.to_s} {label = \"vertex\", shape = \"house\"};"
+      end
+
+      
+      it "describes an edge in dot notation, given a block" do
+        e << v1 << v2
+
+        e.to_dot {|e| e.object_id.to_s}.should == e.object_id.to_s
+      end
+    end # dot
   end # Edge
   
   describe Connection do
index e091289557143377b6f5c7923e3f156b0350ebe0..3689c0b92faf25b0ec097f732e9b6545128b5f25 100644 (file)
@@ -242,5 +242,27 @@ module GraphNjae
         v3.neighbours.uniq.length.should == 1
       end
     end # #neighbours
+    
+    describe "#to_dot" do
+      it "describes a vertex in dot notation" do
+        v = Vertex.new
+        v.to_dot.should == "#{v.object_id.to_s};"
+      end
+
+      it "describes a vertex in dot notation, using given attributes" do
+        v = Vertex.new
+        v.name = "vertex"
+        v.shape = "house"
+        vdot = v.to_dot :label => :name, :shape => :shape
+        vdot.should == "#{v.object_id.to_s} {label = \"vertex\", shape = \"house\"};"
+      end
+      
+      it "describes a vertex using a block" do
+        v = Vertex.new
+        v.field1 = "f1"
+        vdot = v.to_dot {|v| v.field1 + ';'}
+        vdot.should == "#{v.field1};"
+      end
+    end # #to_dot
   end
 end