Sha256: e1db44f7f58b5bdf9d968978b2b362e6cf4ba913cd73cd2feaa2f2c441ae30e2

Contents?: true

Size: 1.75 KB

Versions: 16

Compression:

Stored size: 1.75 KB

Contents

RSpec::Matchers.define :execute_commands_matching do |pattern|
  match do |actual|
    raise(RuntimeError, "Expected #{actual} to be a FakeHost") unless actual.is_a?(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 do |actual|
    "Expected to find #{message(actual, pattern, @times, @found_count)}"
  end

  failure_message_when_negated 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.is_a?(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)
    "#{patterns.join(', ')} in order" +
      " in:\n #{actual.command_strings.pretty_inspect}"
  end

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

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

Version data entries

16 entries across 16 versions & 1 rubygems

Version Path
beaker-6.4.1 spec/matchers.rb
beaker-6.4.0 spec/matchers.rb
beaker-6.3.0 spec/matchers.rb
beaker-6.2.0 spec/matchers.rb
beaker-6.1.0 spec/matchers.rb
beaker-5.8.1 spec/matchers.rb
beaker-5.8.0 spec/matchers.rb
beaker-5.7.0 spec/matchers.rb
beaker-5.6.0 spec/matchers.rb
beaker-5.5.0 spec/matchers.rb
beaker-5.4.0 spec/matchers.rb
beaker-5.3.1 spec/matchers.rb
beaker-5.3.0 spec/matchers.rb
beaker-5.2.0 spec/matchers.rb
beaker-5.1.0 spec/matchers.rb
beaker-5.0.0 spec/matchers.rb