Sha256: 3a703cb0a514717df9a7ea32d777622da1dca31c718bbe65ffea78bf3b8bbe3d

Contents?: true

Size: 1.5 KB

Versions: 2

Compression:

Stored size: 1.5 KB

Contents

#
# testing ruote
#
# Tue Jun 15 09:07:58 JST 2010
#

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

require 'ruote/part/storage_participant'


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

  def test_copy_to_hash_storage

    @dashboard.register_participant '.+', Ruote::StorageParticipant

    #noisy

    wfid = @dashboard.launch(Ruote.process_definition do
      sequence do
        alpha :timeout => '2d'
      end
    end)

    wait_for(:alpha)

    sleep 0.100 # making sure msgs have all been processed

    target = Ruote::HashStorage.new
    source = @dashboard.context.storage

    #count = source.copy_to(target, :verbose => true)
    count = source.copy_to(target)

    assert_equal 8, count
    assert_equal source.ids('expressions'), target.ids('expressions')
  end

  def test_copy_from_hash_storage

    dash = Ruote::Dashboard.new(Ruote::Worker.new(Ruote::HashStorage.new()))

    #dash.noisy = true

    dash.register_participant '.+', Ruote::StorageParticipant

    wfid = dash.launch(Ruote.process_definition do
      sequence do
        alpha :timeout => '2d'
      end
    end)

    dash.wait_for(:alpha)

    sleep 0.100 # making sure msgs have all been processed

    source = dash.context.storage
    target = @dashboard.context.storage

    #count = source.copy_to(target, :verbose => true)
    count = source.copy_to(target)

    assert_equal 8, count
    assert_equal source.ids('expressions'), target.ids('expressions')
    assert_not_nil @dashboard.process(wfid)
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
ruote-2.3.0.1 test/functional/ft_42_storage_copy.rb
ruote-2.3.0 test/functional/ft_42_storage_copy.rb