Sha256: 260a5717251406ff364565c850a8b47989986f47476784d46c141c9ed68a1e2c

Contents?: true

Size: 1.54 KB

Versions: 4

Compression:

Stored size: 1.54 KB

Contents

#
# testing ruote
#
# Sun Mar 14 21:25:52 JST 2010
#

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

require 'ruote'
require 'ruote/storage/composite_storage'


class UtCompositeStorageTest < Test::Unit::TestCase

  def setup

    @msgs = Ruote::HashStorage.new({})
    @default = Ruote::HashStorage.new({})
    @cs = Ruote::CompositeStorage.new(@default, 'msgs' => @msgs)
  end

  def test_initial

    @cs.put('action' => 'terminate', 'type' => 'msgs', '_id' => 'xxx')
    @cs.put_msg('terminate', 'type' => 'msgs')
    @cs.put_schedule('at', {}, Time.now + 10, 'action' => 'reply')

    assert_equal 0, @default.h['msgs'].size
    assert_equal 1, @default.h['schedules'].size
    assert_equal 2, @cs.get_msgs.size
    assert_equal 2, @msgs.get_msgs.size
    assert_equal 0, @msgs.h['schedules'].size
  end

  def test_delete

    @cs.put('action' => 'terminate', 'type' => 'msgs', '_id' => 'xxx')

    msg = @cs.get_many('msgs').first

    r = @cs.delete(msg)

    assert_nil r
    assert_equal 0, @default.h['msgs'].size
  end

  class TracingStorage
    attr_reader :trace
    def initialize
      @trace = []
    end
    def method_missing(m, *args)
      @trace << [ m, *args ]
    end
  end

  def test_special_methods

    default = TracingStorage.new

    cs = Ruote::CompositeStorage.new(default, {})

    cs.delete_schedule('x') # schedule id
    cs.reserve('type' => 'schedules', '_id' => 'nada')

    assert_equal([
      [ :delete_schedule, 'x' ],
      [ :reserve, { 'type' => 'schedules', '_id' => 'nada' } ]
    ],
    default.trace)
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
ruote-2.3.0.3 test/unit/ut_20_composite_storage.rb
ruote-2.3.0.2 test/unit/ut_20_composite_storage.rb
ruote-2.3.0.1 test/unit/ut_20_composite_storage.rb
ruote-2.3.0 test/unit/ut_20_composite_storage.rb