Sha256: 83bbf759decb9158f136df01711fa2084e99150af26e5072aec3ad0a4cd226d6

Contents?: true

Size: 1.79 KB

Versions: 14

Compression:

Stored size: 1.79 KB

Contents

RSpec::Matchers.define :execute_commands_matching do |pattern|
  match do |actual|
    raise(RuntimeError, "Expected #{actual} to be a FakeHost") unless actual.kind_of?(FakeHost::MockedExec)
    @found_count = actual.command_strings.grep(pattern).size
    @times.nil? ?
      @found_count > 0 :
      @found_count == @times
  end

  chain :exactly do |times|
    @times = times
  end

  chain :times do
    # clarity only
  end

  chain :once do
    @times = 1
  end

  def message(actual, pattern, times, found_count)
      msg = times == 1 ?
        "#{pattern} once" :
        "#{pattern} #{times} times"
      msg += " but instead found a count of #{found_count}" if found_count != times
      msg + " in:\n #{actual.command_strings.pretty_inspect}"
  end

  failure_message_for_should do |actual|
    "Expected to find #{message(actual, pattern, @times, @found_count)}"
  end

  failure_message_for_should_not do |actual|
    "Unexpectedly found #{message(actual, pattern, @times, @found_count)}"
  end
end

RSpec::Matchers.define :execute_commands_matching_in_order do |*patterns|
  match do |actual|
    raise(RuntimeError, "Expected #{actual} to be a FakeHost") unless actual.kind_of?(FakeHost::MockedExec)

    remaining_patterns = patterns.clone
    actual.command_strings.each do |line|
      if remaining_patterns.empty?
        break
      elsif remaining_patterns.first.match(line)
        remaining_patterns.shift
      end
    end

    remaining_patterns.empty?
  end

  def message(actual, patterns)
    msg = "#{patterns.join(', ')} in order" +
      " in:\n #{actual.command_strings.pretty_inspect}"
  end

  failure_message_for_should do |actual|
    "Expected to find #{message(actual, patterns)}"
  end

  failure_message_for_should_not do |actual|
    "Unexpectedly found #{message(actual, patterns)}"
  end
end

Version data entries

14 entries across 14 versions & 1 rubygems

Version Path
beaker-1.21.0 spec/matchers.rb
beaker-1.20.1 spec/matchers.rb
beaker-1.20.0 spec/matchers.rb
beaker-1.19.1 spec/matchers.rb
beaker-1.19.0 spec/matchers.rb
beaker-1.18.0 spec/matchers.rb
beaker-1.17.7 spec/matchers.rb
beaker-1.17.6 spec/matchers.rb
beaker-1.17.5 spec/matchers.rb
beaker-1.17.4 spec/matchers.rb
beaker-1.17.3 spec/matchers.rb
beaker-1.17.2 spec/matchers.rb
beaker-1.17.1 spec/matchers.rb
beaker-1.17.0 spec/matchers.rb