File: test_synchronized_delegator.rb

package info (click to toggle)
ruby-thread-safe 0.3.3-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 700 kB
  • ctags: 1,072
  • sloc: java: 5,458; ruby: 2,750; makefile: 2
file content (84 lines) | stat: -rw-r--r-- 1,719 bytes parent folder | download
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
require 'test/unit'
require 'thread_safe/synchronized_delegator.rb'

class TestSynchronizedDelegator < Test::Unit::TestCase

  def test_wraps_array
    sync_array = SynchronizedDelegator.new(array = [])

    array << 1
    assert_equal 1, sync_array[0]

    sync_array << 2
    assert_equal 2, array[1]
  end

  def test_synchronizes_access
    t1_continue, t2_continue = false, false

    hash = Hash.new do |hash, key|
      t2_continue = true
      unless hash.find { |e| e[1] == key.to_s } # just to do something
        hash[key] = key.to_s
        Thread.pass until t1_continue
      end
    end
    sync_hash = SynchronizedDelegator.new(hash)
    sync_hash[1] = 'egy'

    t1 = Thread.new do
      sync_hash[2] = 'dva'
      sync_hash[3] # triggers t2_continue
    end

    t2 = Thread.new do
      Thread.pass until t2_continue
      sync_hash[4] = '42'
    end

    sleep(0.05) # sleep some to allow threads to boot

    until t2.status == 'sleep' do
      Thread.pass
    end

    assert_equal 3, hash.keys.size

    t1_continue = true
    t1.join; t2.join

    assert_equal 4, sync_hash.size
  end

  def test_synchronizes_access_with_block
    t1_continue, t2_continue = false, false

    sync_array = SynchronizedDelegator.new(array = [])

    t1 = Thread.new do
      sync_array << 1
      sync_array.each do
        t2_continue = true
        Thread.pass until t1_continue
      end
    end

    t2 = Thread.new do
      # sleep(0.01)
      Thread.pass until t2_continue
      sync_array << 2
    end

    until t2.status == 'sleep' || t2.status == false do
      Thread.pass
    end

    assert_equal 1, array.size

    t1_continue = true
    t1.join; t2.join

    assert_equal [1, 2], array
  end

end