-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #6 from mcorbin/master
Add more tests in goss.py + example playbook
- Loading branch information
Showing
3 changed files
with
94 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
[defaults] | ||
library=./.. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
--- | ||
|
||
# success | ||
- hosts: all | ||
connection: local | ||
tasks: | ||
- name: execute goss test file. | ||
goss: | ||
path: "~/goss/goss.yaml" | ||
- name: Execute goss test file and write result on output_file | ||
goss: | ||
path: "~/goss/goss.yaml" | ||
output_file: "~/goss/result.yaml" | ||
- name: Execute test file with json output | ||
goss: | ||
path: "~/goss/goss.yaml" | ||
format: "json" | ||
# errors | ||
- hosts: all | ||
connection: local | ||
tasks: | ||
- name: Error because path is a directory | ||
goss: | ||
path: "~/goss/" | ||
ignore_errors: True | ||
- name: Error because path does not exists | ||
goss: | ||
path: "~/goss/toto.yaml" | ||
ignore_errors: True | ||
- name: Error because output_file is a directory | ||
goss: | ||
path: "~/goss/goss.yaml" | ||
output_file: "~/goss/" | ||
ignore_errors: True | ||
- name: Error because goss_root not readable | ||
goss: | ||
path: "~/goss/goss_root.yaml" | ||
ignore_errors: True | ||
- name: Error because output_file not writable | ||
goss: | ||
path: "~/goss/goss.yaml" | ||
output_file: "/root/result" | ||
ignore_errors: True | ||
- name: Error because output_file directory not exists | ||
goss: | ||
path: "~/goss/goss.yaml" | ||
output_file: "~/goss/notexists/result" | ||
ignore_errors: True |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters