summaryrefslogtreecommitdiff
path: root/spec/ruby/core/env/shared/update.rb
blob: 129a56544c3dd193649af8121a2722ef24111bc1 (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
describe :env_update, shared: true do
  before :each do
    @saved_foo = ENV["foo"]
    @saved_bar = ENV["bar"]
  end

  after :each do
    ENV["foo"] = @saved_foo
    ENV["bar"] = @saved_bar
  end

  it "adds the parameter hash to ENV, returning ENV" do
    ENV.send(@method, "foo" => "0", "bar" => "1").should equal(ENV)
    ENV["foo"].should == "0"
    ENV["bar"].should == "1"
  end

  it "returns ENV when no block given" do
    ENV.send(@method, {"foo" => "0", "bar" => "1"}).should equal(ENV)
  end

  it "yields key, the old value and the new value when replacing an entry" do
    ENV.send @method, {"foo" => "0", "bar" => "3"}
    a = []
    ENV.send @method, {"foo" => "1", "bar" => "4"} do |key, old, new|
      a << [key, old, new]
      new
    end
    a[0].should == ["foo", "0", "1"]
    a[1].should == ["bar", "3", "4"]
  end

  it "yields key, the old value and the new value when replacing an entry" do
    ENV.send @method, {"foo" => "0", "bar" => "3"}
    ENV.send @method, {"foo" => "1", "bar" => "4"} do |key, old, new|
      (new.to_i + 1).to_s
    end
    ENV["foo"].should == "2"
    ENV["bar"].should == "5"
  end

  ruby_version_is "2.7" do
    # BUG: https://bugs.ruby-lang.org/issues/16192
    it "does not evaluate the block when the name is new" do
      ENV.delete("bar")
      ENV.send @method, {"foo" => "0"}
      ENV.send(@method, "bar" => "1") { |key, old, new| fail "Should not get here" }
      ENV["bar"].should == "1"
    end

    # BUG: https://bugs.ruby-lang.org/issues/16192
    it "does not use the block's return value as the value when the name is new" do
      ENV.delete("bar")
      ENV.send @method, {"foo" => "0"}
      ENV.send(@method, "bar" => "1") { |key, old, new| "Should not use this value" }
      ENV["foo"].should == "0"
      ENV["bar"].should == "1"
    end
  end

  it "returns ENV when block given" do
    ENV.send(@method, {"foo" => "0", "bar" => "1"}){}.should equal(ENV)
  end

  it "raises TypeError when a name is not coercible to String" do
    -> { ENV.send @method, Object.new => "0" }.should raise_error(TypeError, "no implicit conversion of Object into String")
  end

  it "raises TypeError when a value is not coercible to String" do
    -> { ENV.send @method, "foo" => Object.new }.should raise_error(TypeError, "no implicit conversion of Object into String")
  end

  it "raises Errno::EINVAL when a name contains the '=' character" do
    -> { ENV.send(@method, "foo=" => "bar") }.should raise_error(Errno::EINVAL)
  end

  it "raises Errno::EINVAL when a name is an empty string" do
    -> { ENV.send(@method, "" => "bar") }.should raise_error(Errno::EINVAL)
  end

  it "updates good data preceding an error" do
    ENV["foo"] = "0"
    begin
      ENV.send @method, {"foo" => "2", Object.new => "1"}
    rescue TypeError
    ensure
      ENV["foo"].should == "2"
    end
  end

  it "does not update good data following an error" do
    ENV["foo"] = "0"
    begin
      ENV.send @method, {Object.new => "1", "foo" => "2"}
    rescue TypeError
    ensure
      ENV["foo"].should == "0"
    end
  end
end