diff options
author | W. Trevor King <wking@tremily.us> | 2018-05-11 13:03:28 -0700 |
---|---|---|
committer | Atomic Bot <atomic-devel@projectatomic.io> | 2018-05-14 21:36:48 +0000 |
commit | 45838b9561977f3e79cf2e61c7ed0dfd9badb303 (patch) | |
tree | 40dc9cd883b07f47b36589ff7b77c32c6304f669 /pkg/hooks/read_test.go | |
parent | 69a6cb255ca98bc7a9e6d47c7a0ccaacab895a25 (diff) | |
download | podman-45838b9561977f3e79cf2e61c7ed0dfd9badb303.tar.gz podman-45838b9561977f3e79cf2e61c7ed0dfd9badb303.tar.bz2 podman-45838b9561977f3e79cf2e61c7ed0dfd9badb303.zip |
hooks: Add package support for extension stages
We aren't consuming this yet, but these pkg/hooks changes lay the
groundwork for future libpod changes to support post-exit hooks [1,2].
[1]: https://github.com/projectatomic/libpod/issues/730
[2]: https://github.com/opencontainers/runc/issues/1797
Signed-off-by: W. Trevor King <wking@tremily.us>
Closes: #758
Approved by: rhatdan
Diffstat (limited to 'pkg/hooks/read_test.go')
-rw-r--r-- | pkg/hooks/read_test.go | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/pkg/hooks/read_test.go b/pkg/hooks/read_test.go index 5e77f5228..69e7aff44 100644 --- a/pkg/hooks/read_test.go +++ b/pkg/hooks/read_test.go @@ -13,12 +13,12 @@ import ( ) func TestNoJSONSuffix(t *testing.T) { - _, err := Read("abc") + _, err := Read("abc", []string{}) assert.Equal(t, err, ErrNoJSONSuffix) } func TestUnknownPath(t *testing.T) { - _, err := Read(filepath.Join("does", "not", "exist.json")) + _, err := Read(filepath.Join("does", "not", "exist.json"), []string{}) if err == nil { t.Fatal("unexpected success") } @@ -41,7 +41,7 @@ func TestGoodFile(t *testing.T) { t.Fatal(err) } - hook, err := Read(jsonPath) + hook, err := Read(jsonPath, []string{}) if err != nil { t.Fatal(err) } @@ -71,7 +71,7 @@ func TestBadFile(t *testing.T) { t.Fatal(err) } - _, err = Read(path) + _, err = Read(path, []string{}) if err == nil { t.Fatal("unexpected success") } @@ -139,7 +139,7 @@ func TestGoodDir(t *testing.T) { } hooks := map[string]*current.Hook{} - err = ReadDir(dir, hooks) + err = ReadDir(dir, []string{}, hooks) if err != nil { t.Fatal(err) } @@ -161,7 +161,7 @@ func TestGoodDir(t *testing.T) { func TestUnknownDir(t *testing.T) { hooks := map[string]*current.Hook{} - err := ReadDir(filepath.Join("does", "not", "exist"), hooks) + err := ReadDir(filepath.Join("does", "not", "exist"), []string{}, hooks) if err == nil { t.Fatal("unexpected success") } @@ -185,7 +185,7 @@ func TestBadDir(t *testing.T) { } hooks := map[string]*current.Hook{} - err = ReadDir(dir, hooks) + err = ReadDir(dir, []string{}, hooks) if err == nil { t.Fatal("unexpected success") } |