Class: GroongaQueryLog::Command::RunRegressionTest::Tester

Inherits:
Object
  • Object
show all
Includes:
Loggable
Defined in:
lib/groonga-query-log/command/run-regression-test.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Loggable

#puts

Constructor Details

#initialize(old, new, options) ⇒ Tester

Returns a new instance of Tester.



777
778
779
780
781
782
783
784
785
786
787
788
# File 'lib/groonga-query-log/command/run-regression-test.rb', line 777

def initialize(old, new, options)
  @old = old
  @new = new
  @input_directory = options[:input_directory] || Pathname.new(".")
  @working_directory = options[:working_directory] || Pathname.new(".")
  @results_directory =
    options[:results_directory] || (@working_directory + "results")
  @n_clients = options[:n_clients] || 1
  @stop_on_failure = options[:stop_on_failure]
  @options = options
  @n_executed_commands = 0
end

Instance Attribute Details

#newObject (readonly)

Returns the value of attribute new.



776
777
778
# File 'lib/groonga-query-log/command/run-regression-test.rb', line 776

def new
  @new
end

#oldObject (readonly)

Returns the value of attribute old.



775
776
777
# File 'lib/groonga-query-log/command/run-regression-test.rb', line 775

def old
  @old
end

Instance Method Details

#n_executed_commandsObject



832
833
834
# File 'lib/groonga-query-log/command/run-regression-test.rb', line 832

def n_executed_commands
  @n_executed_commands
end

#runObject



790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
# File 'lib/groonga-query-log/command/run-regression-test.rb', line 790

def run
  @old.ensure_database
  @new.ensure_database

  ready_queue = Thread::Queue.new
  wait_queue = Thread::Queue.new
  old_thread = Thread.new do
    @old.run
    begin
      ready_queue.push(true)
      wait_queue.pop
      true
    ensure
      @old.shutdown
    end
  end
  new_thread = Thread.new do
    @new.run
    begin
      ready_queue.push(true)
      wait_queue.pop
      true
    ensure
      @new.shutdown
    end
  end
  test_thread = Thread.new do
    ready_queue.pop
    ready_queue.pop
    success = run_test
    wait_queue.push(true)
    wait_queue.push(true)
    success
  end

  old_thread_success = old_thread.value
  new_thread_success = new_thread.value
  test_thread_success = test_thread.value

  old_thread_success and new_thread_success and test_thread_success
end