-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Specifying alpine image version in 'Integration-linux' test
playing around WIP: this works WIP: TODO handle single test command input WIP: general pattern finished, need to refactor and optimize and error handle WIP: handling error. TODO: push rec downstream Finished bulk test, would be nice to parse out by file
- Loading branch information
Showing
12 changed files
with
189 additions
and
27 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 |
---|---|---|
|
@@ -19,4 +19,4 @@ tests: | |
it should fail: | ||
command: invalid | ||
stderr: "/bin/sh: 1: invalid: not found" | ||
exit-code: 127 | ||
exit-code: 127 |
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 |
---|---|---|
|
@@ -12,4 +12,4 @@ tests: | |
config: | ||
env: | ||
KEY: local | ||
exit-code: 0 | ||
exit-code: 0 |
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 |
---|---|---|
@@ -1,3 +1,3 @@ | ||
tests: | ||
echo hello: | ||
exit-code: 0 | ||
exit-code: 0 |
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,27 @@ | ||
module github.com/SimonBaeumer/commander | ||
|
||
require ( | ||
github.com/Microsoft/go-winio v0.4.14 // indirect | ||
github.com/SimonBaeumer/cmd v1.1.0 | ||
github.com/antchfx/xmlquery v1.1.0 | ||
github.com/antchfx/xpath v1.1.0 // indirect | ||
github.com/docker/distribution v2.7.1+incompatible // indirect | ||
github.com/docker/docker v1.13.1 | ||
github.com/docker/go-connections v0.4.0 // indirect | ||
github.com/docker/go-units v0.4.0 // indirect | ||
github.com/logrusorgru/aurora v0.0.0-20181002194514-a7b3b318ed4e | ||
github.com/magiconair/properties v1.8.1 // indirect | ||
github.com/opencontainers/go-digest v1.0.0-rc1 // indirect | ||
github.com/pkg/errors v0.9.1 // indirect | ||
github.com/pmezard/go-difflib v1.0.0 | ||
github.com/stretchr/objx v0.2.0 // indirect | ||
github.com/stretchr/testify v1.4.0 | ||
github.com/tidwall/gjson v1.3.2 | ||
github.com/urfave/cli v1.20.0 | ||
golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2 | ||
golang.org/x/net v0.0.0-20191014212845-da9a3fd4c582 // indirect | ||
gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15 // indirect | ||
gopkg.in/yaml.v2 v2.2.4 | ||
) | ||
|
||
go 1.13 |
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,27 @@ | ||
module github.com/SimonBaeumer/commander | ||
|
||
require ( | ||
github.com/Microsoft/go-winio v0.4.14 // indirect | ||
github.com/SimonBaeumer/cmd v1.1.0 | ||
github.com/antchfx/xmlquery v1.1.0 | ||
github.com/antchfx/xpath v1.1.0 // indirect | ||
github.com/docker/distribution v2.7.1+incompatible // indirect | ||
github.com/docker/docker v1.13.1 | ||
github.com/docker/go-connections v0.4.0 // indirect | ||
github.com/docker/go-units v0.4.0 // indirect | ||
github.com/logrusorgru/aurora v0.0.0-20181002194514-a7b3b318ed4e | ||
github.com/magiconair/properties v1.8.1 // indirect | ||
github.com/opencontainers/go-digest v1.0.0-rc1 // indirect | ||
github.com/pkg/errors v0.9.1 // indirect | ||
github.com/pmezard/go-difflib v1.0.0 | ||
github.com/stretchr/objx v0.2.0 // indirect | ||
github.com/stretchr/testify v1.4.0 | ||
github.com/tidwall/gjson v1.3.2 | ||
github.com/urfave/cli v1.20.0 | ||
golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2 | ||
golang.org/x/net v0.0.0-20191014212845-da9a3fd4c582 // indirect | ||
gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15 // indirect | ||
gopkg.in/yaml.v2 v2.2.4 | ||
) | ||
|
||
go 1.13 |
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,27 @@ | ||
module github.com/SimonBaeumer/commander | ||
|
||
require ( | ||
github.com/Microsoft/go-winio v0.4.14 // indirect | ||
github.com/SimonBaeumer/cmd v1.1.0 | ||
github.com/antchfx/xmlquery v1.1.0 | ||
github.com/antchfx/xpath v1.1.0 // indirect | ||
github.com/docker/distribution v2.7.1+incompatible // indirect | ||
github.com/docker/docker v1.13.1 | ||
github.com/docker/go-connections v0.4.0 // indirect | ||
github.com/docker/go-units v0.4.0 // indirect | ||
github.com/logrusorgru/aurora v0.0.0-20181002194514-a7b3b318ed4e | ||
github.com/magiconair/properties v1.8.1 // indirect | ||
github.com/opencontainers/go-digest v1.0.0-rc1 // indirect | ||
github.com/pkg/errors v0.9.1 // indirect | ||
github.com/pmezard/go-difflib v1.0.0 | ||
github.com/stretchr/objx v0.2.0 // indirect | ||
github.com/stretchr/testify v1.4.0 | ||
github.com/tidwall/gjson v1.3.2 | ||
github.com/urfave/cli v1.20.0 | ||
golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2 | ||
golang.org/x/net v0.0.0-20191014212845-da9a3fd4c582 // indirect | ||
gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15 // indirect | ||
gopkg.in/yaml.v2 v2.2.4 | ||
) | ||
|
||
go 1.13 |
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 |
---|---|---|
|
@@ -20,4 +20,4 @@ tests: | |
BUG_REPORT_URL="https://bugs.alpinelinux.org/" | ||
"id -u": | ||
stdout: "1001" | ||
stdout: "1001" |
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
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
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
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
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