-
Notifications
You must be signed in to change notification settings - Fork 147
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
test: Stub in sharness framework #180
Open
wking
wants to merge
5
commits into
opencontainers:master
Choose a base branch
from
wking:sharness
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
509117e
test/sharness: Add sharness v1.0.0 as a submodule
wking aa46267
test/t0001-oci-runtime-tool.t: Test --help and --version
wking 4f96bb3
test/t1000-generate-output.t: Tests generate and --output
wking 3cda91b
test/t1001-generate-template.t: Add --template tests
wking 11deb9d
.travis.yml: Run the sharness tests
wking File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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,3 @@ | ||
[submodule "test/sharness"] | ||
path = test/sharness | ||
url = git://github.com/mlafeldt/sharness.git |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
sharness/test/Makefile |
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,42 @@ | ||
# oci-runtime-tool integration tests | ||
|
||
This project uses the [Sharness][] test harness, installed as a [Git | ||
submodule][submodule]. To setup the test installation after a clone, | ||
run: | ||
|
||
$ git submodule update --init | ||
|
||
which will checkout the appropriate Sharness commit in the `sharness` | ||
directory (after which the `Makefile`, `sharness.sh`, etc. symlinks | ||
will resolve successfully). | ||
|
||
Run the tests with: | ||
|
||
$ make | ||
|
||
And read the `Makefile` source to find other useful targets | ||
(e.g. [`prove`][prove]). | ||
|
||
## Naming | ||
|
||
0 - Global `oci-runtime-tool` options. | ||
|
||
1 - `oci-runtime-tool generate`. | ||
|
||
## Dependencies | ||
|
||
* [GNU Core Utilities][coreutils] for [`cat`][cat.1], | ||
[`echo`][echo.1], [`head`][head.1], and [`sed][sed.1]. | ||
* [jq] for [`jq`][jq.1]. | ||
|
||
[coreutils]: http://www.gnu.org/software/coreutils/coreutils.html | ||
[jq]: https://stedolan.github.io/jq/ | ||
[prove]: http://perldoc.perl.org/prove.html | ||
[Sharness]: http://mlafeldt.github.io/sharness/ | ||
[submodule]: http://git-scm.com/docs/git-submodule | ||
|
||
[cat.1]: http://pubs.opengroup.org/onlinepubs/9699919799/utilities/cat.html | ||
[echo.1]: http://pubs.opengroup.org/onlinepubs/9699919799/utilities/echo.html | ||
[head.1]: http://pubs.opengroup.org/onlinepubs/9699919799/utilities/head.html | ||
[jq.1]: https://stedolan.github.io/jq/manual/ | ||
[sed.1]: http://pubs.opengroup.org/onlinepubs/9699919799/utilities/head.html |
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 @@ | ||
sharness/aggregate-results.sh |
Submodule sharness
added at
64595a
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,3 @@ | ||
command -v jq >/dev/null 2>/dev/null && test_set_prereq JQ | ||
|
||
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
command -v cat >/dev/null 2>/dev/null && test_set_prereq CAT | ||
command -v echo >/dev/null 2>/dev/null && test_set_prereq ECHO | ||
command -v head >/dev/null 2>/dev/null && test_set_prereq HEAD | ||
command -v sed >/dev/null 2>/dev/null && test_set_prereq SED | ||
|
||
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
sharness/sharness.sh |
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,22 @@ | ||
#!/bin/sh | ||
|
||
test_description='Test ocitools global options' | ||
|
||
. ./sharness.sh | ||
|
||
test_expect_success CAT,HEAD 'Test oci-runtime-tool --help' " | ||
oci-runtime-tool --help | head -n2 >actual && | ||
cat <<-EOF >expected && | ||
NAME: | ||
oci-runtime-tool - OCI (Open Container Initiative) runtime tools | ||
EOF | ||
test_cmp expected actual | ||
" | ||
|
||
test_expect_success ECHO,SED 'Test oci-runtime-tool --version' " | ||
oci-runtime-tool --version | sed 's/commit: [0-9a-f]*$/commit: HASH/' >actual && | ||
echo 'oci-runtime-tool version 0.0.1, commit: HASH' >expected && | ||
test_cmp expected actual | ||
" | ||
|
||
test_done |
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,26 @@ | ||
#!/bin/sh | ||
|
||
test_description='Test generate output' | ||
|
||
. ./sharness.sh | ||
|
||
test_expect_success CAT,HEAD 'Test oci-runtime-tool generate writing to stdout' " | ||
oci-runtime-tool generate | head -n2 >actual && | ||
cat <<EOF >expected && | ||
{ | ||
\"ociVersion\": \"1.0.0\", | ||
EOF | ||
test_cmp expected actual | ||
" | ||
|
||
test_expect_success CAT,HEAD 'Test oci-runtime-tool generate --output' " | ||
oci-runtime-tool generate --output config.json && | ||
head -n2 config.json >actual && | ||
cat <<EOF >expected && | ||
{ | ||
\"ociVersion\": \"1.0.0\", | ||
EOF | ||
test_cmp expected actual | ||
" | ||
|
||
test_done |
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,51 @@ | ||
#!/bin/sh | ||
|
||
test_description='Test generate template' | ||
|
||
. ./sharness.sh | ||
|
||
test_expect_success CAT,ECHO,HEAD,JQ 'Test oci-runtime-tool generate --template with an empty template' " | ||
echo '{}' >template && | ||
oci-runtime-tool generate --template template | jq . >actual && | ||
cat <<-EOF >expected && | ||
{ | ||
\"ociVersion\": \"1.0.0\", | ||
\"process\": { | ||
\"user\": { | ||
\"uid\": 0, | ||
\"gid\": 0 | ||
}, | ||
\"args\": null, | ||
\"cwd\": \"/\" | ||
}, | ||
\"root\": { | ||
\"path\": \"rootfs\" | ||
} | ||
} | ||
EOF | ||
test_cmp expected actual | ||
" | ||
|
||
test_expect_success CAT,HEAD,JQ 'Test oci-runtime-tool generate --template with a different version' " | ||
echo '{\"ociVersion\": \"1.0.0-rc9\"}' >template && | ||
oci-runtime-tool generate --template template | jq . >actual && | ||
cat <<-EOF >expected && | ||
{ | ||
\"ociVersion\": \"1.0.0-rc9\", | ||
\"process\": { | ||
\"user\": { | ||
\"uid\": 0, | ||
\"gid\": 0 | ||
}, | ||
\"args\": null, | ||
\"cwd\": \"/\" | ||
}, | ||
\"root\": { | ||
\"path\": \"rootfs\" | ||
} | ||
} | ||
EOF | ||
test_cmp expected actual | ||
" | ||
|
||
test_done |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think this will be failed. As from test/README.md, we need do 'git submodule update --init' first. But you didn't do such preparation in travis.yml
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Travis does that for us.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
OK, got it.