Sha256: 3d51b81bf4398bb10d475e8ebf4a98a419834180acb85b02ac3080d5680caa29

Contents?: true

Size: 951 Bytes

Versions: 6

Compression:

Stored size: 951 Bytes

Contents

require 'spec_helper'

describe Hitimes::MutexedStats do
  before( :each ) do
    @threads = 5
    @iters   = 10_000
    @final_value = @threads * @iters
  end

  def run_with_scissors( stats, threads, iters )
    spool = []
    threads.times do |t|
      spool << Thread.new { iters.times{ stats.update( 1 ) } }
    end
    spool.each { |t| t.join }
    return stats
  end

  if (not defined? RUBY_ENGINE) or (RUBY_ENGINE == "ruby") then
    it "Hitimes::Stats is threadsafe" do
      stats = run_with_scissors( ::Hitimes::Stats.new, @threads, @iters )
      stats.count.should== @final_value
    end
  else
    it "Hitimes::Stats is not threadsafe" do
      stats = run_with_scissors( ::Hitimes::Stats.new, @threads, @iters )
      stats.count.should_not == @final_value
    end
  end

  it "has a threadsafe update" do
    stats = run_with_scissors( ::Hitimes::MutexedStats.new, @threads, @iters )
    stats.count.should == @final_value
  end

end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
hitimes-1.2.1-java spec/mutex_stats_spec.rb
hitimes-1.2.1-x86-mswin32 spec/mutex_stats_spec.rb
hitimes-1.2.1 spec/mutex_stats_spec.rb
hitimes-1.2.0-x86-mswin32 spec/mutex_stats_spec.rb
hitimes-1.2.0-java spec/mutex_stats_spec.rb
hitimes-1.2.0 spec/mutex_stats_spec.rb