Sha256: 6774c826cbabca94b3d03b65bca69a6cc334bc8b76b6e6d2169d496fe1f6ea84

Contents?: true

Size: 1.61 KB

Versions: 2

Compression:

Stored size: 1.61 KB

Contents

require 'spec_helper'
require 'dentaku/ast/arithmetic'

require 'dentaku/token'

describe Dentaku::AST::Addition do
  let(:five) { Dentaku::AST::Numeric.new Dentaku::Token.new(:numeric, 5) }
  let(:six)  { Dentaku::AST::Numeric.new Dentaku::Token.new(:numeric, 6) }

  let(:t)    { Dentaku::AST::Numeric.new Dentaku::Token.new(:logical, true) }

  it 'allows access to its sub-trees' do
    node = described_class.new(five, six)
    expect(node.left).to eq(five)
    expect(node.right).to eq(six)
  end

  it 'performs addition' do
    node = described_class.new(five, six)
    expect(node.value).to eq(11)
  end

  it 'requires numeric operands' do
    expect {
      described_class.new(five, t)
    }.to raise_error(Dentaku::NodeError, /requires numeric operands/)

    expression = Dentaku::AST::Multiplication.new(five, five)
    group = Dentaku::AST::Grouping.new(expression)

    expect {
      described_class.new(group, five)
    }.not_to raise_error
  end

  it 'allows operands that respond to addition' do
    # Sample struct that has a custom definition for addition

    Addable = Struct.new(:value) do
      def +(other)
        case other
        when Addable
          value + other.value
        when Numeric
          value + other
        end
      end
    end

    operand_five = Dentaku::AST::Numeric.new Dentaku::Token.new(:numeric, Addable.new(5))
    operand_six = Dentaku::AST::Numeric.new Dentaku::Token.new(:numeric, Addable.new(6))

    expect {
      described_class.new(operand_five, operand_six)
    }.not_to raise_error

    expect {
      described_class.new(operand_five, six)
    }.not_to raise_error

  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
dentaku-3.5.4 spec/ast/addition_spec.rb
dentaku-3.5.3 spec/ast/addition_spec.rb