Sha256: 89f81e450fefbb050efdf93cf57488481ff20595e2c2e302e76cb39b564ddfdd

Contents?: true

Size: 1.77 KB

Versions: 158

Compression:

Stored size: 1.77 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 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.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 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

158 entries across 158 versions & 1 rubygems

Version Path
beaker-3.29.0 spec/matchers.rb
beaker-3.28.0 spec/matchers.rb
beaker-3.27.0 spec/matchers.rb
beaker-3.26.0 spec/matchers.rb
beaker-3.25.0 spec/matchers.rb
beaker-3.24.0 spec/matchers.rb
beaker-3.23.0 spec/matchers.rb
beaker-3.22.0 spec/matchers.rb
beaker-3.21.1 spec/matchers.rb
beaker-3.21.0 spec/matchers.rb
beaker-3.20.0 spec/matchers.rb
beaker-3.19.0 spec/matchers.rb
beaker-3.18.0 spec/matchers.rb
beaker-3.17.0 spec/matchers.rb
beaker-3.16.0 spec/matchers.rb
beaker-3.15.0 spec/matchers.rb
beaker-3.14.0 spec/matchers.rb
beaker-3.13.0 spec/matchers.rb
beaker-3.12.0 spec/matchers.rb
beaker-3.11.0 spec/matchers.rb