To add a collaborator to this project you will need to use the Relish gem to add the collaborator via a terminal command. Soon you'll be able to also add collaborators here!
More about adding a collaboratorStop command
To stop commands via API you can do the following:
last_command_started.stop
find_command('command').stop
But normally there's no need to stop a command manually. All matchers
handling commands make sure, that they stop ALL command before check actual
against expected.
- Background
-
- Given
- I use a fixture named "cli-app"
- Scenarios
-
- Stop command started last
- Find and stop command
- Stop successful command with configured signal
- Stop unsuccessful command with configured signal
- Stop command started last
-
- Given
-
an executable named "bin/cli" with:
#!/bin/bash function term { exit 0 } trap term TERM while [ true ]; do sleep 1; done
- And
-
a file named "spec/run_spec.rb" with:
require 'spec_helper' RSpec.describe 'Run command', :type => :aruba do before(:each) { run('cli') } before(:each) { last_command_started.stop } it { expect(last_command_started).to be_successfully_executed } end
- When
-
I run
rspec
- Then
- the specs should all pass
- Find and stop command
-
- Given
-
an executable named "bin/cli" with:
#!/bin/bash function term { exit 0 } trap term TERM while [ true ]; do sleep 1; done
- And
-
a file named "spec/run_spec.rb" with:
require 'spec_helper' RSpec.describe 'Run command', :type => :aruba do before(:each) { run('cli') } before(:each) { find_command('cli').stop } it { expect(last_command_started).to be_successfully_executed } end
- When
-
I run
rspec
- Then
- the specs should all pass
- Stop successful command with configured signal
-
- Given
-
an executable named "bin/cli" with:
#!/bin/bash function hup { echo "Exit..." exit 0 } function term { echo "No! No exit here. Try HUP. I stop the command with exit 1." exit 1 } trap hup HUP trap term TERM while [ true ]; do sleep 1; done
- And
-
a file named "spec/run_spec.rb" with:
require 'spec_helper' Aruba.configure do |config| config.stop_signal = 'HUP' config.exit_timeout = 1 end RSpec.describe 'Run command', :type => :aruba do before(:each) { run('cli') } it { expect(last_command_started).to be_successfully_executed } end
- When
-
I run
rspec
- Then
- the specs should all pass
- Stop unsuccessful command with configured signal
-
- Given
-
an executable named "bin/cli" with:
#!/bin/bash function hup { echo "Exit..." exit 2 } function term { echo "No! No exit here. Try HUP. I stop the command with exit 1." exit 1 } trap hup HUP trap term TERM while [ true ]; do sleep 1; done
- And
-
a file named "spec/run_spec.rb" with:
require 'spec_helper' Aruba.configure do |config| config.stop_signal = 'HUP' config.exit_timeout = 1 end RSpec.describe 'Run command', :type => :aruba do before(:each) { run('cli') } it { expect(last_command_started).to have_exit_status 2 } end
- When
-
I run
rspec
- Then
- the specs should all pass
Last published about 7 years ago by Max Meyer.