summaryrefslogtreecommitdiff
path: root/spec/mspec/spec/guards/version_spec.rb
blob: b0025efcfb9fcf2be527d00c339d2951b82b41f5 (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
require 'spec_helper'
require 'mspec/guards'

# The VersionGuard specifies a version of Ruby with a String of
# the form: v = 'major.minor.tiny'.
#
# A VersionGuard instance can be created with a single String,
# which means any version >= each component of v.
# Or, the guard can be created with a Range, a..b, or a...b,
# where a, b are of the same form as v. The meaning of the Range
# is as typically understood: a..b means v >= a and v <= b;
# a...b means v >= a and v < b.

describe VersionGuard, "#match?" do
  before :each do
    hide_deprecation_warnings
    @current = '1.8.6'
  end

  it "returns true when the argument is equal to RUBY_VERSION" do
    VersionGuard.new(@current, '1.8.6').match?.should == true
  end

  it "returns true when the argument is less than RUBY_VERSION" do
    VersionGuard.new(@current, '1.8').match?.should == true
    VersionGuard.new(@current, '1.8.5').match?.should == true
  end

  it "returns false when the argument is greater than RUBY_VERSION" do
    VersionGuard.new(@current, '1.8.7').match?.should == false
    VersionGuard.new(@current, '1.9.2').match?.should == false
  end

  it "returns true when the argument range includes RUBY_VERSION" do
    VersionGuard.new(@current, '1.8.5'..'1.8.7').match?.should == true
    VersionGuard.new(@current, '1.8'..'1.9').match?.should == true
    VersionGuard.new(@current, '1.8'...'1.9').match?.should == true
    VersionGuard.new(@current, '1.8'..'1.8.6').match?.should == true
    VersionGuard.new(@current, '1.8.5'..'1.8.6').match?.should == true
    VersionGuard.new(@current, ''...'1.8.7').match?.should == true
  end

  it "returns false when the argument range does not include RUBY_VERSION" do
    VersionGuard.new(@current, '1.8.7'..'1.8.9').match?.should == false
    VersionGuard.new(@current, '1.8.4'..'1.8.5').match?.should == false
    VersionGuard.new(@current, '1.8.4'...'1.8.6').match?.should == false
    VersionGuard.new(@current, '1.8.5'...'1.8.6').match?.should == false
    VersionGuard.new(@current, ''...'1.8.6').match?.should == false
  end
end

describe Object, "#ruby_version_is" do
  before :each do
    @guard = VersionGuard.new '1.2.3', 'x.x.x'
    VersionGuard.stub(:new).and_return(@guard)
    ScratchPad.clear
  end

  it "yields when #match? returns true" do
    @guard.stub(:match?).and_return(true)
    ruby_version_is('x.x.x') { ScratchPad.record :yield }
    ScratchPad.recorded.should == :yield
  end

  it "does not yield when #match? returns false" do
    @guard.stub(:match?).and_return(false)
    ruby_version_is('x.x.x') { ScratchPad.record :yield }
    ScratchPad.recorded.should_not == :yield
  end

  it "returns what #match? returns when no block is given" do
    @guard.stub(:match?).and_return(true)
    ruby_version_is('x.x.x').should == true
    @guard.stub(:match?).and_return(false)
    ruby_version_is('x.x.x').should == false
  end

  it "sets the name of the guard to :ruby_version_is" do
    ruby_version_is("") { }
    @guard.name.should == :ruby_version_is
  end

  it "calls #unregister even when an exception is raised in the guard block" do
    @guard.should_receive(:match?).and_return(true)
    @guard.should_receive(:unregister)
    lambda do
      ruby_version_is("") { raise Exception }
    end.should raise_error(Exception)
  end
end

describe Object, "#version_is" do
  before :each do
    hide_deprecation_warnings
  end

  it "returns the expected values" do
    version_is('1.2.3', '1.2.2').should == true
    version_is('1.2.3', '1.2.3').should == true
    version_is('1.2.3', '1.2.4').should == false

    version_is('1.2.3', '1').should == true
    version_is('1.2.3', '1.0').should == true
    version_is('1.2.3', '2').should == false
    version_is('1.2.3', '2.0').should == false

    version_is('1.2.3', '1.2.2'..'1.2.4').should == true
    version_is('1.2.3', '1.2.2'..'1.2.3').should == true
    version_is('1.2.3', '1.2.2'...'1.2.3').should == false
    version_is('1.2.3', '1.2.3'..'1.2.4').should == true
  end
end