require 'spec_helper'

describe HashDiff do
  it "should be able to decode property path" do
    decoded = HashDiff.send(:decode_property_path, "a.b[0].c.city[5]")
    decoded.should == ['a', 'b', 0, 'c', 'city', 5]
  end

  it "should be able to decode property path with custom delimiter" do
    decoded = HashDiff.send(:decode_property_path, "a\tb[0]\tc\tcity[5]", "\t")
    decoded.should == ['a', 'b', 0, 'c', 'city', 5]
  end

  it "should be able to tell similiar hash" do
    a = {'a' => 1, 'b' => 2, 'c' => 3, 'd' => 4, 'e' => 5}
    b = {'a' => 1, 'b' => 2, 'c' => 3, 'e' => 5}
    HashDiff.similar?(a, b).should be true
    HashDiff.similar?(a, b, :similarity => 1).should be false
  end

  it "should be able to tell similiar hash with values within tolerance" do
    a = {'a' => 1.5, 'b' => 2.25, 'c' => 3, 'd' => 4, 'e' => 5}
    b = {'a' => 1.503, 'b' => 2.22, 'c' => 3, 'e' => 5}
    HashDiff.similar?(a, b, :numeric_tolerance => 0.05).should be true
    HashDiff.similar?(a, b).should be false
  end

  it "should be able to tell numbers and strings" do
    HashDiff.similar?(1, 2).should be false
    HashDiff.similar?("a", "b").should be false
    HashDiff.similar?("a", [1, 2, 3]).should be false
    HashDiff.similar?(1, {'a' => 1, 'b' => 2, 'c' => 3, 'e' => 5}).should be false
  end

  it "should be able to tell true when similarity == 0.5" do
    a = {"value" => "New1", "onclick" => "CreateNewDoc()"}
    b = {"value" => "New", "onclick" => "CreateNewDoc()"}

    HashDiff.similar?(a, b, :similarity => 0.5).should be true
  end

  it "should be able to tell false when similarity == 0.5" do
    a = {"value" => "New1", "onclick" => "open()"}
    b = {"value" => "New", "onclick" => "CreateNewDoc()"}

    HashDiff.similar?(a, b, :similarity => 0.5).should be false
  end

  describe '.compare_values' do
    it "should compare numeric values exactly when no tolerance" do
      expect(HashDiff.compare_values(10.004, 10.003)).to be false
    end

    it "should allow tolerance with numeric values" do
      expect(HashDiff.compare_values(10.004, 10.003, :numeric_tolerance => 0.01)).to be true
    end

    it "should compare other objects with or without tolerance" do
      expect(HashDiff.compare_values('hats', 'ninjas')).to be false
      expect(HashDiff.compare_values('hats', 'ninjas', :numeric_tolerance => 0.01)).to be false
      expect(HashDiff.compare_values('horse', 'horse')).to be true
    end

    it 'should compare strings exactly by default' do
      expect(HashDiff.compare_values(' horse', 'horse')).to be false
    end

    it 'should strip strings before comparing when requested' do
      expect(HashDiff.compare_values(' horse', 'horse', :strip => true)).to be true
    end
  end
end

