lib/mail/vendor/treetop-1.4.3/spec/runtime/interval_skip_list/delete_spec.rb



require File.expand_path("#{File.dirname(__FILE__)}/spec_helper")

class IntervalSkipList
  public :insert_node, :delete_node, :head, :nodes
end

describe IntervalSkipList do
  it_should_behave_like "the palindromic fixture"

  describe " when :c is deleted" do
    before do
      list.delete(:c)
    end

    describe "[0]" do
      before do
        @node = list.nodes[0]
      end

      it "has a key of 1 and a height of 3" do
        node.key.should == 1
        node.height.should == 3
      end

      it "has :f as its only forward marker at level 2" do
        node.forward_markers[2].should have_markers(:f)
        end

      it "has :a, :b, :d, and :e as its only forward markers at level 1" do
        node.forward_markers[1].should have_markers(:a, :b, :d, :e)
      end

      it "has no forward markers at level 0" do
        node.forward_markers[0].should be_empty
      end

      it "has no markers" do
        node.markers.should be_empty
      end
    end

    describe "[1]" do
      before do
        @node = list.nodes[1]
      end

      it "has a key of 3 and a height of 2" do
        node.key.should == 3
        node.height.should == 2
      end

      it "has :e as its only forward marker at level 1" do
        node.forward_markers[1].should have_markers(:e)
      end

      it "has :b and :d as its only forward markers at level 0" do
        node.forward_markers[0].should have_markers(:b, :d)
      end

      it "has :a, :b, :d, and :e as its only markers" do
        node.markers.should have_markers(:a, :b, :d, :e)
      end
    end

    describe "[2]" do
      before do
        @node = list.nodes[2]
      end

      it "has a key of 5 and a height of 1" do
        node.key.should == 5
        node.height.should == 1
      end

      it "has :d and :g as its only forward markers at level 0" do
        node.forward_markers[0].should have_markers(:d, :g)
      end

      it "has :b and :d as its only markers" do
        node.markers.should have_markers(:b, :d)
      end
    end

    describe "[3]" do
      before do
        @node = list.nodes[3]
      end

      it "has a key of 9 and a height of 1" do
        node.key.should == 9
        node.height.should == 1
      end

      it "has :g as its only forward marker at level 0" do
        node.forward_markers[0].should have_markers(:g)
      end

      it "has :d and :g as its only markers" do
        node.markers.should have_markers(:d, :g)
      end
    end

    describe "[4]" do
      before do
        @node = list.nodes[4]
      end

      it "has a key of 11 and a height of 2" do
        node.key.should == 11
        node.height.should == 2
      end

      it "has :g as its only forward marker at level 1" do
        node.forward_markers[1].should have_markers(:g)
      end

      it "has no forward markers at level 0" do
        node.forward_markers[0].should be_empty
      end

      it "has :e and :g as its only markers" do
        node.markers.should have_markers(:e, :g)
      end
    end

    describe "[5]" do
      before do
        @node = list.nodes[5]
      end

      it "has a key of 13 and a height of 3" do
        node.key.should == 13
        node.height.should == 3
      end

      it "has no forward markers at any level" do
        node.forward_markers[0].should be_empty
        node.forward_markers[1].should be_empty
        node.forward_markers[2].should be_empty
      end

      it "has :f and :g as its only markers" do
        node.markers.should have_markers(:f, :g)
      end
    end
  end
end