diff --git a/lib/oga/xpath/evaluator.rb b/lib/oga/xpath/evaluator.rb index 2627603..a216b47 100644 --- a/lib/oga/xpath/evaluator.rb +++ b/lib/oga/xpath/evaluator.rb @@ -786,6 +786,23 @@ module Oga return on_call_number(context, left) > on_call_number(context, right) end + ## + # Processes the `<=` operator. + # + # This operator converts the left and right expression to a number and + # returns `true` if the first number is lower-than or equal to the second + # number. + # + # @param [Oga::XML::Node] ast_node + # @param [Oga::XML::NodeSet] context + # @return [TrueClass|FalseClass] + # + def on_lte(ast_node, context) + left, right = *ast_node + + return on_call_number(context, left) <= on_call_number(context, right) + end + ## # Delegates function calls to specific handlers. # diff --git a/spec/oga/xpath/evaluator/operators/lte_spec.rb b/spec/oga/xpath/evaluator/operators/lte_spec.rb new file mode 100644 index 0000000..89ae29d --- /dev/null +++ b/spec/oga/xpath/evaluator/operators/lte_spec.rb @@ -0,0 +1,66 @@ +require 'spec_helper' + +describe Oga::XPath::Evaluator do + context 'lower-than-or-equal operator' do + before do + @document = parse('1020') + @evaluator = described_class.new(@document) + end + + example 'return true if a number is lower than another number' do + @evaluator.evaluate('10 <= 20').should == true + end + + example 'return true if a number is equal to another number' do + @evaluator.evaluate('10 <= 10').should == true + end + + example 'return false if a number is not lower than/equal to another number' do + @evaluator.evaluate('20 <= 10').should == false + end + + example 'return true if a number is lower than a string' do + @evaluator.evaluate('10 <= "20"').should == true + end + + example 'return true if a number is equal to a string' do + @evaluator.evaluate('10 <= "10"').should == true + end + + example 'return true if a string is lower than a number' do + @evaluator.evaluate('"10" <= 20').should == true + end + + example 'return true if a string is equal to a number' do + @evaluator.evaluate('"10" <= 10').should == true + end + + example 'return true if a string is lower than another string' do + @evaluator.evaluate('"10" <= "20"').should == true + end + + example 'return true if a number is lower than a node set' do + @evaluator.evaluate('10 <= root/b').should == true + end + + example 'return true if a number is equal to a node set' do + @evaluator.evaluate('10 <= root/a').should == true + end + + example 'return true if a string is lower than a node set' do + @evaluator.evaluate('"10" <= root/b').should == true + end + + example 'return true if a string is equal to a node set' do + @evaluator.evaluate('"10" <= root/a').should == true + end + + example 'return true if a node set is lower than another node set' do + @evaluator.evaluate('root/a <= root/b').should == true + end + + example 'return true if a node set is equal to another node set' do + @evaluator.evaluate('root/b <= root/b').should == true + end + end +end