summaryrefslogtreecommitdiff
path: root/spec/ruby/core/time/minus_spec.rb
blob: 995dac846283d109b4d6ddd210d818d31aba83f2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
require_relative '../../spec_helper'
require_relative 'fixtures/classes'

describe "Time#-" do
  it "decrements the time by the specified amount" do
    (Time.at(100) - 100).should == Time.at(0)
    (Time.at(100) - Time.at(99)).should == 1.0
  end

  it "understands negative subtractions" do
    t = Time.at(100) - -1.3
    t.usec.should == 300000
    t.to_i.should == 101
  end

  #see [ruby-dev:38446]
  it "accepts arguments that can be coerced into Rational" do
    (obj = mock_numeric('10')).should_receive(:to_r).and_return(Rational(10))
    (Time.at(100) - obj).should == Time.at(90)
  end

  it "raises a TypeError if given argument is a coercible String" do
    -> { Time.now - "1" }.should raise_error(TypeError)
    -> { Time.now - "0.1" }.should raise_error(TypeError)
    -> { Time.now - "1/3" }.should raise_error(TypeError)
  end

  it "raises TypeError on argument that can't be coerced" do
    -> { Time.now - Object.new }.should raise_error(TypeError)
    -> { Time.now - "stuff" }.should raise_error(TypeError)
  end

  it "raises TypeError on nil argument" do
    -> { Time.now - nil }.should raise_error(TypeError)
  end

  it "tracks microseconds" do
    time = Time.at(0.777777)
    time -= 0.654321
    time.usec.should == 123456
    time -= 1
    time.usec.should == 123456
  end

  it "tracks microseconds from a Rational" do
    time = Time.at(Rational(777_777, 1_000_000))
    time -= Rational(654_321, 1_000_000)
    time.usec.should == 123_456
    time -= Rational(123_456, 1_000_000)
    time.usec.should == 0
  end

  it "tracks nanoseconds" do
    time = Time.at(Rational(999_999_999, 1_000_000_000))
    time -= Rational(876_543_210, 1_000_000_000)
    time.nsec.should == 123_456_789
    time -= Rational(123_456_789, 1_000_000_000)
    time.nsec.should == 0
  end

  it "maintains precision" do
    time = Time.at(10) - Rational(1_000_000_000_000_001, 1_000_000_000_000_000)
    time.should_not == Time.at(9)
  end

  it "maintains microseconds precision" do
    time = Time.at(10) - Rational(1, 1_000_000)
    time.usec.should == 999_999
  end

  it "maintains nanoseconds precision" do
    time = Time.at(10) - Rational(1, 1_000_000_000)
    time.nsec.should == 999_999_999
  end

  it "maintains subseconds precision" do
    time = Time.at(0) - Rational(1_000_000_000_000_001, 1_000_000_000_000_000)
    time.subsec.should == Rational(999_999_999_999_999, 1_000_000_000_000_000)
  end

  it "returns a UTC time if self is UTC" do
    (Time.utc(2012) - 10).should.utc?
  end

  it "returns a non-UTC time if self is non-UTC" do
    (Time.local(2012) - 10).should_not.utc?
  end

  it "returns a time with the same fixed offset as self" do
    (Time.new(2012, 1, 1, 0, 0, 0, 3600) - 10).utc_offset.should == 3600
  end

  it "preserves time zone" do
    time_with_zone = Time.now.utc
    time_with_zone.zone.should == (time_with_zone - 1).zone

    time_with_zone = Time.now
    time_with_zone.zone.should == (time_with_zone - 1).zone
  end

  ruby_version_is "2.6" do
    context "zone is a timezone object" do
      it "preserves time zone" do
        zone = TimeSpecs::Timezone.new(offset: (5*3600+30*60))
        time = Time.new(2012, 1, 1, 12, 0, 0, zone) - 1

        time.zone.should == zone
      end
    end
  end

  it "does not return a subclass instance" do
    c = Class.new(Time)
    x = c.now + 1
    x.should be_an_instance_of(Time)
  end

  it "returns a time with nanoseconds precision between two time objects" do
    time1 = Time.utc(2000, 1, 2, 23, 59, 59, Rational(999999999, 1000))
    time2 = Time.utc(2000, 1, 2, 0, 0, 0, Rational(1, 1000))
    (time1 - time2).should == 86_399.999999998
  end
end