aboutsummaryrefslogtreecommitdiffstats
path: root/spec/rubyspec/library/getoptlong/set_options_spec.rb
blob: 39d6991bf52a2ab6b5d05b33ef83ac29a7976e76 (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
require File.expand_path('../../../spec_helper', __FILE__)
require 'getoptlong'

describe "GetoptLong#set_options" do
  before :each do
    @opts = GetoptLong.new
  end

  it "allows setting command line options" do
    argv ["--size", "10k", "-v", "arg1", "arg2"] do
      @opts.set_options(
        ["--size", GetoptLong::REQUIRED_ARGUMENT],
        ["--verbose", "-v", GetoptLong::NO_ARGUMENT]
      )

      @opts.get.should == ["--size", "10k"]
      @opts.get.should == ["--verbose", ""]
      @opts.get.should == nil
    end
  end

  it "discards previously defined command line options" do
    argv ["--size", "10k", "-v", "arg1", "arg2"] do
      @opts.set_options(
        ["--size", GetoptLong::REQUIRED_ARGUMENT],
        ["--verbose", "-v", GetoptLong::NO_ARGUMENT]
      )

      @opts.set_options(
        ["-s", "--size", GetoptLong::REQUIRED_ARGUMENT],
        ["-v", GetoptLong::NO_ARGUMENT]
      )

      @opts.get.should == ["-s", "10k"]
      @opts.get.should == ["-v", ""]
      @opts.get.should == nil
    end
  end

  it "raises an ArgumentError if too many argument flags where given" do
    argv [] do
      lambda {
        @opts.set_options(["--size", GetoptLong::NO_ARGUMENT, GetoptLong::REQUIRED_ARGUMENT])
      }.should raise_error(ArgumentError)
    end
  end

  it "raises a RuntimeError if processing has already started" do
    argv [] do
      @opts.get
      lambda {
        @opts.set_options()
      }.should raise_error(RuntimeError)
    end
  end

  it "raises an ArgumentError if no argument flag was given" do
    argv [] do
      lambda {
        @opts.set_options(["--size"])
      }.should raise_error(ArgumentError)
    end
  end

  it "raises an ArgumentError if one of the given arguments is not an Array" do
    argv [] do
      lambda {
        @opts.set_options(
          ["--size", GetoptLong::REQUIRED_ARGUMENT],
          "test")
      }.should raise_error(ArgumentError)
    end
  end

  it "raises an ArgumentError if the same option is given twice" do
    argv [] do
      lambda {
        @opts.set_options(
          ["--size", GetoptLong::NO_ARGUMENT],
          ["--size", GetoptLong::OPTIONAL_ARGUMENT])
      }.should raise_error(ArgumentError)

      lambda {
        @opts.set_options(
          ["--size", GetoptLong::NO_ARGUMENT],
          ["-s", "--size", GetoptLong::OPTIONAL_ARGUMENT])
      }.should raise_error(ArgumentError)
    end
  end

  it "raises an ArgumentError if the given option is invalid" do
    argv [] do
      lambda {
        @opts.set_options(["-size", GetoptLong::NO_ARGUMENT])
      }.should raise_error(ArgumentError)
    end
  end
end