File: GH-1076_enumerator_finalization_needs_a_spec.rb

package info (click to toggle)
jruby 1.7.26-1%2Bdeb9u1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 84,572 kB
  • sloc: ruby: 669,910; java: 253,056; xml: 35,152; ansic: 9,187; yacc: 7,267; cpp: 5,244; sh: 1,036; makefile: 345; jsp: 48; tcl: 40
file content (47 lines) | stat: -rw-r--r-- 1,777 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
# We must ensure enumerators finalize properly and do not leave a lot of garbage
# around nor leave threads running. This test attempts to brutalize the enum
# subsystem and the JVM GC in order to prove that enumerators are getting cleaned
# up. There may be a better way to do this.

require 'rspec'

describe "An Enumerator that has been abandoned" do
  it "cleans itself up properly" do
    thread_bean = java.lang.management.ManagementFactory.thread_mx_bean
    
    # Thread count before enumerators
    thread_count = thread_bean.thread_count
    
    # Attempt to create and abandon 10000 enumerators. This should blow up quickly
    # if they are not cleaning up their threads properly.
    100.times do
      100.times do
        Enumerator.new {|y| y.yield(1); y.yield(2) }.next
      end
      JRuby.gc
    end
    
    # Allow GC and other threads plenty of time to clean up
    10.times do
      JRuby.gc
    end
    
    # Try to force finalizers to run
    java.lang.Runtime.runtime.run_finalization
    
    # Spin for a while, hoping to make this pass
    1000.times do
      break if (thread_bean.thread_count - thread_count) < 200
      Thread.pass
    end
    
    # Final thread count should be within ~200 threads of original. Because
    # Enumerator threads use a thread pool, proper cleanup of the above loop
    # will leave around 100 threads alive in that pool for each iteration. These
    # threads are just waiting for more work, and will age out on their own...
    # but waiting for that here would take too long. Using 200 is a safe
    # threshold, since if enumerators are not being cleaned up we should have
    # thousands of extra threads here.
    (thread_bean.thread_count - thread_count).should < 200
  end
end if RUBY_VERSION >= "1.9"