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.
26 lines
732 B
Go
26 lines
732 B
Go
6 years ago
|
package container
|
||
|
|
||
|
import (
|
||
|
"github.com/stretchr/testify/assert"
|
||
|
"testing"
|
||
|
)
|
||
|
|
||
|
func TestContainsWatchtowerLabel_ShouldReturnTrueIfTheWatchtowerLabelExistsOnTheContainer(t *testing.T) {
|
||
|
labelMap := map[string]string {
|
||
|
"com.centurylinklabs.watchtower": "true",
|
||
|
}
|
||
|
assert.True(t, ContainsWatchtowerLabel(labelMap))
|
||
|
}
|
||
|
|
||
|
func TestContainsWatchtowerLabel_ShouldReturnFalseIfTheWatchtowerLabelDoesntExistOnTheContainer(t *testing.T) {
|
||
|
labelMap := map[string]string {
|
||
|
"com.containrrr.watchtower": "lost",
|
||
|
}
|
||
|
assert.False(t, ContainsWatchtowerLabel(labelMap))
|
||
|
}
|
||
|
|
||
|
func TestContainsWatchtowerLabel_ShouldReturnFalseIfLabelsIsEmpty(t *testing.T) {
|
||
|
labelMap := map[string]string {}
|
||
|
assert.False(t, ContainsWatchtowerLabel(labelMap))
|
||
|
}
|