-
Notifications
You must be signed in to change notification settings - Fork 164
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
It seems we spend time more than limit for testing, so: 1. Reduce size of the image for mount test 2. Ensure that we download the same eclient per test 3. Merge reboot and shutdown tests 4. Move update eve image test from http to large and gcp tests Signed-off-by: Petr Fedchenkov <giggsoff@gmail.com>
- Loading branch information
1 parent
dcf1fd7
commit 177b641
Showing
13 changed files
with
78 additions
and
36 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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
lfedge/eden:0.5.0 | ||
lfedge/eden:0.6.1 |
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,23 +1,27 @@ | ||
{{$reset := EdenGetEnv "EDEN_FAIL_RESET"}} | ||
|
||
{{$eden_root := EdenConfig "eden.root"}} | ||
{{$eden_bin_dist := EdenConfig "eden.bin-dist"}} | ||
{{$EDEN_DIST_BIN := (printf "%s/%s" $eden_root $eden_bin_dist) }} | ||
|
||
/bin/echo Default test fail scenario | ||
|
||
/bin/echo eden status | ||
eden status | ||
{{$EDEN_DIST_BIN}}/eden status | ||
/bin/echo eden pod ps | ||
eden pod ps | ||
{{$EDEN_DIST_BIN}}/eden pod ps | ||
/bin/echo eden network ls | ||
eden network ls | ||
{{$EDEN_DIST_BIN}}/eden network ls | ||
/bin/echo eden volume ls | ||
eden volume ls | ||
{{$EDEN_DIST_BIN}}/eden volume ls | ||
|
||
# stay for 10 seconds to keep additional logs | ||
/bin/sleep 10 | ||
|
||
/bin/echo check fatal_stacks in logs | ||
eden log --format=json content:fatal_stacks | ||
{{$EDEN_DIST_BIN}}/eden log --format=json content:fatal_stacks | ||
|
||
{{ if (ne $reset "") }} | ||
/bin/echo EDEN's reset | ||
eden.escript.test -test.run TestEdenScripts/eden_reset -testdata {{EdenConfig "eden.root"}}/../tests/workflow/testdata/ | ||
{{$EDEN_DIST_BIN}}/eden.escript.test -test.run TestEdenScripts/eden_reset -testdata {{EdenConfig "eden.root"}}/../tests/workflow/testdata/ | ||
{{end}} |
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,4 +1,4 @@ | ||
exec sleep 5s | ||
! exec -t 5s sleep 10s | ||
exec -t 10s sleep 5s | ||
exec sleep 15s | ||
exec sleep 5 | ||
! exec -t 5s sleep 10 | ||
exec -t 10s sleep 5 | ||
exec sleep 15 |
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