Support for the XPath round() function.

This commit is contained in:
Yorick Peterse 2014-08-28 00:00:25 +02:00
parent a2b8e3c954
commit 543112dcdc
2 changed files with 46 additions and 0 deletions

View File

@ -1216,6 +1216,22 @@ module Oga
return number.nan? ? number : number.ceil.to_f return number.nan? ? number : number.ceil.to_f
end end
##
# Processes the `round()` function call.
#
# This function call rounds the 1st argument to the closest integer number
# and then returns that number as a float.
#
# @param [Oga::XML::NodeSet] context
# @param [Oga::XPath::Node] expression
# @return [Float]
#
def on_call_round(context, expression)
number = on_call_number(context, expression)
return number.nan? ? number : number.round.to_f
end
## ##
# Processes an `(int)` node. # Processes an `(int)` node.
# #

View File

@ -0,0 +1,30 @@
require 'spec_helper'
describe Oga::XPath::Evaluator do
context 'round() function' do
before do
@document = parse('<root>10.123</root>')
@evaluator = described_class.new(@document)
end
example 'return the rounded value of a literal number' do
@evaluator.evaluate('round(10.123)').should == 10.0
end
example 'return the rounded value of a literal string' do
@evaluator.evaluate('round("10.123")').should == 10.0
end
example 'return the rounded value of a node set' do
@evaluator.evaluate('round(root)').should == 10.0
end
example 'return NaN for empty node sets' do
@evaluator.evaluate('round(foo)').should be_nan
end
example 'return NaN for an empty literal string' do
@evaluator.evaluate('round("")').should be_nan
end
end
end