Merge pull request #2482 from andreaseger/fix_ruby_timestamp_accuracy

[Ruby] fix floating point accuracy problem in Timestamp#to_f
This commit is contained in:
Adam Cozzette 2017-07-06 08:11:50 -07:00 committed by GitHub
commit bd5ab154da
2 changed files with 11 additions and 3 deletions

View File

@ -80,7 +80,7 @@ module Google
end
def to_f
self.seconds + (self.nanos.to_f / 1_000_000_000)
self.seconds + (self.nanos.quo(1_000_000_000))
end
end

View File

@ -13,10 +13,18 @@ class TestWellKnownTypes < Test::Unit::TestCase
assert_equal Time.at(12345), ts.to_time
assert_equal 12345, ts.to_i
ts.from_time(Time.at(123456, 654321))
# millisecond accuracy
time = Time.at(123456, 654321)
ts.from_time(time)
assert_equal 123456, ts.seconds
assert_equal 654321000, ts.nanos
assert_equal Time.at(123456.654321), ts.to_time
assert_equal time, ts.to_time
# nanosecond accuracy
time = Time.at(123456, Rational(654321321, 1000))
ts.from_time(time)
assert_equal 654321321, ts.nanos
assert_equal time, ts.to_time
end
def test_duration