Implement `file_eq' condition keyword

This commit is contained in:
Thibault Jouan
2014-09-22 08:25:50 +00:00
parent 9e70e9aec4
commit 4a83e8c71a
6 changed files with 96 additions and 0 deletions

View File

@@ -0,0 +1,26 @@
@sshd
Feature: `file_eq' condition keyword
Background:
Given a recipe with:
"""
task :file_eq_test do
condition { file_eq 'some_file', 'some content' }
echo 'evaluated'
end
"""
Scenario: succeeds when file content is expected content
Given a remote file named "some_file" with "some content"
When I successfully execute the recipe on remote target
Then the output must contain "evaluated"
Scenario: fails when file content is not expected content
Given a remote file named "some_file" with "some content padded"
When I successfully execute the recipe on remote target
Then the output must not contain "evaluated"
Scenario: fails when file does not exist
When I successfully execute the recipe on remote target
Then the output must not contain "evaluated"