summaryrefslogtreecommitdiff
path: root/spec/ruby/core/thread/fetch_spec.rb
blob: 85ffb718748c9a719f0737cb238b7a18f0821ea3 (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
require_relative '../../spec_helper'

describe 'Thread#fetch' do
  describe 'with 2 arguments' do
    it 'returns the value of the fiber-local variable if value has been assigned' do
      th = Thread.new { Thread.current[:cat] = 'meow' }
      th.join
      th.fetch(:cat, true).should == 'meow'
    end

    it "returns the default value if fiber-local variable hasn't been assigned" do
      th = Thread.new {}
      th.join
      th.fetch(:cat, true).should == true
    end
  end

  describe 'with 1 argument' do
    it 'raises a KeyError when the Thread does not have a fiber-local variable of the same name' do
      th = Thread.new {}
      th.join
      -> { th.fetch(:cat) }.should raise_error(KeyError)
    end

    it 'returns the value of the fiber-local variable if value has been assigned' do
      th = Thread.new { Thread.current[:cat] = 'meow' }
      th.join
      th.fetch(:cat).should == 'meow'
    end
  end

  describe 'with a block' do
    it 'returns the value of the fiber-local variable if value has been assigned' do
      th = Thread.new { Thread.current[:cat] = 'meow' }
      th.join
      th.fetch(:cat) { true }.should == 'meow'
    end

    it "returns the block value if fiber-local variable hasn't been assigned" do
      th = Thread.new {}
      th.join
      th.fetch(:cat) { true }.should == true
    end

    it "does not call the block if value has been assigned" do
      th = Thread.new { Thread.current[:cat] = 'meow' }
      th.join
      var = :not_updated
      th.fetch(:cat) { var = :updated }.should == 'meow'
      var.should == :not_updated
    end

    it "uses the block if a default is given and warns about it" do
      th = Thread.new {}
      th.join
      -> {
        th.fetch(:cat, false) { true }.should == true
      }.should complain(/warning: block supersedes default value argument/)
    end
  end

  it 'raises an ArgumentError when not passed one or two arguments' do
    -> { Thread.current.fetch() }.should raise_error(ArgumentError)
    -> { Thread.current.fetch(1, 2, 3) }.should raise_error(ArgumentError)
  end
end