Sha256: d07f01999ee0edace25b08c8fcd26f8b127947fd6d6e8cbe06a6b3f19359325d

Contents?: true

Size: 1.16 KB

Versions: 6

Compression:

Stored size: 1.16 KB

Contents

Feature: Check if a timeout occured during command execution

  If you want to check if a command takes to long to finish it's work

  Background:
    Given I use a fixture named "cli-app"

  Scenario: Check if command runs to long
    Given an executable named "bin/cli" with:
    """
    #!/bin/bash
    sleep 1
    """
    And a file named "spec/timeout_spec.rb" with:
    """
    require 'spec_helper'

    RSpec.describe 'Long running command', :type => :aruba do
      before(:each) { aruba.config.exit_timeout = 0 }

      before(:each) { run('cli') }

      it { expect(last_command).to run_too_long }
    end
    """
    When I run `rspec`
    Then the specs should all pass

  Scenario: Check if command finishes in time
    Given an executable named "bin/cli" with:
    """
    #!/bin/bash
    exit 0
    """
    And a file named "spec/timeout_spec.rb" with:
    """
    require 'spec_helper'

    RSpec.describe 'Short running command', :type => :aruba do
      before(:each) { aruba.config.exit_timeout = 5 }

      before(:each) { run('cli') }

      it { expect(last_command).to have_finished_in_time }
    end
    """
    When I run `rspec`
    Then the specs should all pass

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
aruba-0.9.0.pre features/matchers/timeouts.feature
aruba-0.8.1 features/matchers/timeouts.feature
aruba-0.8.0 features/matchers/timeouts.feature
aruba-0.8.0.pre3 features/matchers/timeouts.feature
aruba-0.8.0.pre2 features/matchers/timeouts.feature
aruba-0.8.0.pre features/matchers/timeouts.feature