Sha256: 9959c1aa0a5622b184b73f41a778796638903ff21c1671034926b7930cccb1aa

Contents?: true

Size: 1.27 KB

Versions: 4

Compression:

Stored size: 1.27 KB

Contents

#
# testing ruote
#
# Tue Apr 26 03:30:29 JST 2011
#
# between Changi and Haneda (JA622A)
#

require File.expand_path('../base', __FILE__)


class FtCodeParticipantTest < Test::Unit::TestCase
  include FunctionalBase

  def test_participant_in_vars_not_enabled

    pdef = Ruote.process_definition do
      set 'v:alpha' => '''
        def consume(wi)
          context.tracer << "#{wi.participant_name}\n"
        end
        def cancel(fei, flavour)
          context.tracer << "cancelled\n"
        end
      '''
      alpha
    end

    wfid = @dashboard.launch(pdef)
    r = @dashboard.wait_for(wfid)

    assert_equal 'error_intercepted', r['action']
  end

  def test_workitems_dispatching_message

    @dashboard.context['participant_in_variable_enabled'] = true

    pdef = Ruote.process_definition do
      set 'v:alpha' => '''
        def consume(wi)
          context.tracer << "#{wi.participant_name}\n"
        end
        def cancel(fei, flavour)
          context.tracer << "cancelled\n"
        end
      '''
      alpha
    end

    wfid = @dashboard.launch(pdef)

    @dashboard.wait_for(:alpha)
    @dashboard.wait_for(1)

    assert_equal 'alpha', @tracer.to_s

    @dashboard.cancel(wfid)
    @dashboard.wait_for(wfid)

    assert_equal "alpha\ncancelled", @tracer.to_s
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
ruote-2.3.0.3 test/functional/ft_60_code_participant.rb
ruote-2.3.0.2 test/functional/ft_60_code_participant.rb
ruote-2.3.0.1 test/functional/ft_60_code_participant.rb
ruote-2.3.0 test/functional/ft_60_code_participant.rb