You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
69 lines
1.3 KiB
Go
69 lines
1.3 KiB
Go
9 years ago
|
package container
|
||
10 years ago
|
|
||
|
import (
|
||
|
"testing"
|
||
|
|
||
|
"github.com/samalba/dockerclient"
|
||
|
"github.com/stretchr/testify/assert"
|
||
|
)
|
||
|
|
||
|
func TestName(t *testing.T) {
|
||
|
c := Container{
|
||
|
containerInfo: &dockerclient.ContainerInfo{Name: "foo"},
|
||
|
}
|
||
|
|
||
|
name := c.Name()
|
||
|
|
||
|
assert.Equal(t, "foo", name)
|
||
|
}
|
||
|
|
||
|
func TestLinks(t *testing.T) {
|
||
|
c := Container{
|
||
|
containerInfo: &dockerclient.ContainerInfo{
|
||
|
HostConfig: &dockerclient.HostConfig{
|
||
|
Links: []string{"foo:foo", "bar:bar"},
|
||
|
},
|
||
|
},
|
||
|
}
|
||
|
|
||
|
links := c.Links()
|
||
|
|
||
|
assert.Equal(t, []string{"foo", "bar"}, links)
|
||
|
}
|
||
9 years ago
|
|
||
|
func TestIsWatchtower_True(t *testing.T) {
|
||
|
c := Container{
|
||
|
containerInfo: &dockerclient.ContainerInfo{
|
||
|
Config: &dockerclient.ContainerConfig{
|
||
|
Labels: map[string]string{"com.centurylinklabs.watchtower": "true"},
|
||
|
},
|
||
|
},
|
||
|
}
|
||
|
|
||
|
assert.True(t, c.IsWatchtower())
|
||
|
}
|
||
|
|
||
|
func TestIsWatchtower_WrongLabelValue(t *testing.T) {
|
||
|
c := Container{
|
||
|
containerInfo: &dockerclient.ContainerInfo{
|
||
|
Config: &dockerclient.ContainerConfig{
|
||
|
Labels: map[string]string{"com.centurylinklabs.watchtower": "false"},
|
||
|
},
|
||
|
},
|
||
|
}
|
||
|
|
||
|
assert.False(t, c.IsWatchtower())
|
||
|
}
|
||
|
|
||
|
func TestIsWatchtower_NoLabel(t *testing.T) {
|
||
|
c := Container{
|
||
|
containerInfo: &dockerclient.ContainerInfo{
|
||
|
Config: &dockerclient.ContainerConfig{
|
||
|
Labels: map[string]string{},
|
||
|
},
|
||
|
},
|
||
|
}
|
||
|
|
||
|
assert.False(t, c.IsWatchtower())
|
||
|
}
|