diff options
author | Matthew Heon <matthew.heon@gmail.com> | 2018-02-10 14:27:04 -0500 |
---|---|---|
committer | Atomic Bot <atomic-devel@projectatomic.io> | 2018-02-12 14:28:07 +0000 |
commit | 3962d10bd482d1c57707465e8f76e76b4abc9a9f (patch) | |
tree | 223428702f715dee366fd6c5e346e98a4a147869 /libpod | |
parent | a7889f8d6a6d78f91d9d12576398f468195b7abd (diff) | |
download | podman-3962d10bd482d1c57707465e8f76e76b4abc9a9f.tar.gz podman-3962d10bd482d1c57707465e8f76e76b4abc9a9f.tar.bz2 podman-3962d10bd482d1c57707465e8f76e76b4abc9a9f.zip |
Fix gofmt and lint
Signed-off-by: Matthew Heon <matthew.heon@gmail.com>
Closes: #184
Approved by: baude
Diffstat (limited to 'libpod')
-rw-r--r-- | libpod/boltdb_state_internal.go | 2 | ||||
-rw-r--r-- | libpod/state_test.go | 16 | ||||
-rw-r--r-- | libpod/test_common.go | 6 |
3 files changed, 11 insertions, 13 deletions
diff --git a/libpod/boltdb_state_internal.go b/libpod/boltdb_state_internal.go index b8b6b558d..ac7a9e166 100644 --- a/libpod/boltdb_state_internal.go +++ b/libpod/boltdb_state_internal.go @@ -23,8 +23,6 @@ const ( dependenciesName = "dependencies" netNSName = "netns" containersName = "containers" - - dbExistName = "ok" ) var ( diff --git a/libpod/state_test.go b/libpod/state_test.go index 33eb3ae13..718da8392 100644 --- a/libpod/state_test.go +++ b/libpod/state_test.go @@ -1073,7 +1073,7 @@ func TestHasPodCtrIDFalse(t *testing.T) { func TestAddPodInvalidPodErrors(t *testing.T) { runForAllStates(t, func(t *testing.T, state State, lockPath string) { - err := state.AddPod(&Pod{config: &PodConfig{},}) + err := state.AddPod(&Pod{config: &PodConfig{}}) assert.Error(t, err) }) } @@ -1197,7 +1197,7 @@ func TestAddPodCtrNameConflictFails(t *testing.T) { func TestRemovePodInvalidPodErrors(t *testing.T) { runForAllStates(t, func(t *testing.T, state State, lockPath string) { - err := state.RemovePod(&Pod{config: &PodConfig{},}) + err := state.RemovePod(&Pod{config: &PodConfig{}}) assert.Error(t, err) }) } @@ -1372,7 +1372,7 @@ func TestAllPodsMultiplePods(t *testing.T) { func TestPodHasContainerNoSuchPod(t *testing.T) { runForAllStates(t, func(t *testing.T, state State, lockPath string) { - _, err := state.PodHasContainer(&Pod{config: &PodConfig{},}, strings.Repeat("0", 32)) + _, err := state.PodHasContainer(&Pod{config: &PodConfig{}}, strings.Repeat("0", 32)) assert.Error(t, err) }) } @@ -1448,7 +1448,7 @@ func TestPodHasContainerSucceeds(t *testing.T) { func TestPodContainersByIDInvalidPod(t *testing.T) { runForAllStates(t, func(t *testing.T, state State, lockPath string) { - _, err := state.PodContainersByID(&Pod{config: &PodConfig{},}) + _, err := state.PodContainersByID(&Pod{config: &PodConfig{}}) assert.Error(t, err) }) } @@ -1550,7 +1550,7 @@ func TestPodContainersByIDMultipleContainers(t *testing.T) { func TestPodContainersInvalidPod(t *testing.T) { runForAllStates(t, func(t *testing.T, state State, lockPath string) { - _, err := state.PodContainers(&Pod{config: &PodConfig{},}) + _, err := state.PodContainers(&Pod{config: &PodConfig{}}) assert.Error(t, err) }) } @@ -1657,7 +1657,7 @@ func TestPodContainersMultipleContainers(t *testing.T) { func TestRemovePodContainersInvalidPod(t *testing.T) { runForAllStates(t, func(t *testing.T, state State, lockPath string) { - err := state.RemovePodContainers(&Pod{config: &PodConfig{},}) + err := state.RemovePodContainers(&Pod{config: &PodConfig{}}) assert.Error(t, err) }) } @@ -1848,7 +1848,7 @@ func TestAddContainerToPodInvalidPod(t *testing.T) { testCtr, err := getTestCtr1(lockPath) assert.NoError(t, err) - err = state.AddContainerToPod(&Pod{config: &PodConfig{},}, testCtr) + err = state.AddContainerToPod(&Pod{config: &PodConfig{}}, testCtr) assert.Error(t, err) }) } @@ -2179,7 +2179,7 @@ func TestRemoveContainerFromPodBadPodFails(t *testing.T) { testCtr, err := getTestCtr1(lockPath) assert.NoError(t, err) - err = state.RemoveContainerFromPod(&Pod{config: &PodConfig{},}, testCtr) + err = state.RemoveContainerFromPod(&Pod{config: &PodConfig{}}, testCtr) assert.Error(t, err) }) } diff --git a/libpod/test_common.go b/libpod/test_common.go index 0d4199037..28053eacb 100644 --- a/libpod/test_common.go +++ b/libpod/test_common.go @@ -78,11 +78,11 @@ func getTestContainer(id, name, locksDir string) (*Container, error) { func getTestPod(id, name, locksDir string) (*Pod, error) { pod := &Pod{ config: &PodConfig{ - ID: id, - Name: name, + ID: id, + Name: name, Labels: map[string]string{"a": "b", "c": "d"}, }, - valid: true, + valid: true, } lockPath := filepath.Join(locksDir, id) |