2014-12-16 18:06:35 -05:00
|
|
|
package daemon
|
|
|
|
|
|
|
|
import (
|
|
|
|
"os"
|
|
|
|
"path"
|
|
|
|
"testing"
|
2015-05-26 15:01:15 -04:00
|
|
|
|
|
|
|
"github.com/docker/docker/pkg/graphdb"
|
|
|
|
"github.com/docker/docker/pkg/truncindex"
|
2015-07-28 03:36:29 -04:00
|
|
|
"github.com/docker/docker/runconfig"
|
2015-06-12 09:25:32 -04:00
|
|
|
volumedrivers "github.com/docker/docker/volume/drivers"
|
2015-06-03 12:26:41 -04:00
|
|
|
"github.com/docker/docker/volume/local"
|
2015-09-18 19:58:05 -04:00
|
|
|
"github.com/docker/docker/volume/store"
|
2014-12-16 18:06:35 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
//
|
|
|
|
// https://github.com/docker/docker/issues/8069
|
|
|
|
//
|
|
|
|
|
|
|
|
func TestGet(t *testing.T) {
|
|
|
|
c1 := &Container{
|
2015-04-29 18:53:35 -04:00
|
|
|
CommonContainer: CommonContainer{
|
|
|
|
ID: "5a4ff6a163ad4533d22d69a2b8960bf7fafdcba06e72d2febdba229008b0bf57",
|
|
|
|
Name: "tender_bardeen",
|
|
|
|
},
|
2014-12-16 18:06:35 -05:00
|
|
|
}
|
2015-04-29 18:53:35 -04:00
|
|
|
|
2014-12-16 18:06:35 -05:00
|
|
|
c2 := &Container{
|
2015-04-29 18:53:35 -04:00
|
|
|
CommonContainer: CommonContainer{
|
|
|
|
ID: "3cdbd1aa394fd68559fd1441d6eff2ab7c1e6363582c82febfaa8045df3bd8de",
|
|
|
|
Name: "drunk_hawking",
|
|
|
|
},
|
2014-12-16 18:06:35 -05:00
|
|
|
}
|
2015-04-29 18:53:35 -04:00
|
|
|
|
2014-12-16 18:06:35 -05:00
|
|
|
c3 := &Container{
|
2015-04-29 18:53:35 -04:00
|
|
|
CommonContainer: CommonContainer{
|
|
|
|
ID: "3cdbd1aa394fd68559fd1441d6eff2abfafdcba06e72d2febdba229008b0bf57",
|
|
|
|
Name: "3cdbd1aa",
|
|
|
|
},
|
2014-12-16 18:06:35 -05:00
|
|
|
}
|
2015-04-29 18:53:35 -04:00
|
|
|
|
2014-12-16 18:06:35 -05:00
|
|
|
c4 := &Container{
|
2015-04-29 18:53:35 -04:00
|
|
|
CommonContainer: CommonContainer{
|
|
|
|
ID: "75fb0b800922abdbef2d27e60abcdfaf7fb0698b2a96d22d3354da361a6ff4a5",
|
|
|
|
Name: "5a4ff6a163ad4533d22d69a2b8960bf7fafdcba06e72d2febdba229008b0bf57",
|
|
|
|
},
|
2014-12-16 18:06:35 -05:00
|
|
|
}
|
2015-04-29 18:53:35 -04:00
|
|
|
|
2014-12-16 18:06:35 -05:00
|
|
|
c5 := &Container{
|
2015-04-29 18:53:35 -04:00
|
|
|
CommonContainer: CommonContainer{
|
|
|
|
ID: "d22d69a2b8960bf7fafdcba06e72d2febdba960bf7fafdcba06e72d2f9008b060b",
|
|
|
|
Name: "d22d69a2b896",
|
|
|
|
},
|
2014-12-16 18:06:35 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
store := &contStore{
|
|
|
|
s: map[string]*Container{
|
|
|
|
c1.ID: c1,
|
|
|
|
c2.ID: c2,
|
|
|
|
c3.ID: c3,
|
|
|
|
c4.ID: c4,
|
|
|
|
c5.ID: c5,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
index := truncindex.NewTruncIndex([]string{})
|
|
|
|
index.Add(c1.ID)
|
|
|
|
index.Add(c2.ID)
|
|
|
|
index.Add(c3.ID)
|
|
|
|
index.Add(c4.ID)
|
|
|
|
index.Add(c5.ID)
|
|
|
|
|
|
|
|
daemonTestDbPath := path.Join(os.TempDir(), "daemon_test.db")
|
|
|
|
graph, err := graphdb.NewSqliteConn(daemonTestDbPath)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("Failed to create daemon test sqlite database at %s", daemonTestDbPath)
|
|
|
|
}
|
|
|
|
graph.Set(c1.Name, c1.ID)
|
|
|
|
graph.Set(c2.Name, c2.ID)
|
|
|
|
graph.Set(c3.Name, c3.ID)
|
|
|
|
graph.Set(c4.Name, c4.ID)
|
|
|
|
graph.Set(c5.Name, c5.ID)
|
|
|
|
|
|
|
|
daemon := &Daemon{
|
2015-07-30 17:01:53 -04:00
|
|
|
containers: store,
|
|
|
|
idIndex: index,
|
|
|
|
containerGraphDB: graph,
|
2014-12-16 18:06:35 -05:00
|
|
|
}
|
|
|
|
|
2015-09-29 13:51:40 -04:00
|
|
|
if container, _ := daemon.Get("3cdbd1aa394fd68559fd1441d6eff2ab7c1e6363582c82febfaa8045df3bd8de"); container != c2 {
|
2014-12-16 18:06:35 -05:00
|
|
|
t.Fatal("Should explicitly match full container IDs")
|
|
|
|
}
|
|
|
|
|
2015-09-29 13:51:40 -04:00
|
|
|
if container, _ := daemon.Get("75fb0b8009"); container != c4 {
|
2014-12-16 18:06:35 -05:00
|
|
|
t.Fatal("Should match a partial ID")
|
|
|
|
}
|
|
|
|
|
2015-09-29 13:51:40 -04:00
|
|
|
if container, _ := daemon.Get("drunk_hawking"); container != c2 {
|
2014-12-16 18:06:35 -05:00
|
|
|
t.Fatal("Should match a full name")
|
|
|
|
}
|
|
|
|
|
|
|
|
// c3.Name is a partial match for both c3.ID and c2.ID
|
2015-09-29 13:51:40 -04:00
|
|
|
if c, _ := daemon.Get("3cdbd1aa"); c != c3 {
|
2014-12-16 18:06:35 -05:00
|
|
|
t.Fatal("Should match a full name even though it collides with another container's ID")
|
|
|
|
}
|
|
|
|
|
2015-09-29 13:51:40 -04:00
|
|
|
if container, _ := daemon.Get("d22d69a2b896"); container != c5 {
|
2014-12-16 18:06:35 -05:00
|
|
|
t.Fatal("Should match a container where the provided prefix is an exact match to the it's name, and is also a prefix for it's ID")
|
|
|
|
}
|
|
|
|
|
2015-09-29 13:51:40 -04:00
|
|
|
if _, err := daemon.Get("3cdbd1"); err == nil {
|
2014-12-16 18:06:35 -05:00
|
|
|
t.Fatal("Should return an error when provided a prefix that partially matches multiple container ID's")
|
|
|
|
}
|
|
|
|
|
2015-09-29 13:51:40 -04:00
|
|
|
if _, err := daemon.Get("nothing"); err == nil {
|
2014-12-16 18:06:35 -05:00
|
|
|
t.Fatal("Should return an error when provided a prefix that is neither a name or a partial match to an ID")
|
|
|
|
}
|
|
|
|
|
|
|
|
os.Remove(daemonTestDbPath)
|
|
|
|
}
|
2015-05-26 15:01:15 -04:00
|
|
|
|
2015-11-06 17:22:48 -05:00
|
|
|
func initDaemonWithVolumeStore(tmp string) (*Daemon, error) {
|
2015-06-03 12:26:41 -04:00
|
|
|
daemon := &Daemon{
|
|
|
|
repository: tmp,
|
|
|
|
root: tmp,
|
2015-09-18 19:58:05 -04:00
|
|
|
volumes: store.New(),
|
2015-06-03 12:26:41 -04:00
|
|
|
}
|
|
|
|
|
2015-10-08 11:51:41 -04:00
|
|
|
volumesDriver, err := local.New(tmp, 0, 0)
|
2015-06-03 12:26:41 -04:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
volumedrivers.Register(volumesDriver, volumesDriver.Name())
|
|
|
|
|
|
|
|
return daemon, nil
|
|
|
|
}
|
2015-07-28 03:36:29 -04:00
|
|
|
|
|
|
|
func TestParseSecurityOpt(t *testing.T) {
|
|
|
|
container := &Container{}
|
|
|
|
config := &runconfig.HostConfig{}
|
|
|
|
|
|
|
|
// test apparmor
|
|
|
|
config.SecurityOpt = []string{"apparmor:test_profile"}
|
|
|
|
if err := parseSecurityOpt(container, config); err != nil {
|
|
|
|
t.Fatalf("Unexpected parseSecurityOpt error: %v", err)
|
|
|
|
}
|
|
|
|
if container.AppArmorProfile != "test_profile" {
|
|
|
|
t.Fatalf("Unexpected AppArmorProfile, expected: \"test_profile\", got %q", container.AppArmorProfile)
|
|
|
|
}
|
|
|
|
|
|
|
|
// test valid label
|
|
|
|
config.SecurityOpt = []string{"label:user:USER"}
|
|
|
|
if err := parseSecurityOpt(container, config); err != nil {
|
|
|
|
t.Fatalf("Unexpected parseSecurityOpt error: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// test invalid label
|
|
|
|
config.SecurityOpt = []string{"label"}
|
|
|
|
if err := parseSecurityOpt(container, config); err == nil {
|
|
|
|
t.Fatal("Expected parseSecurityOpt error, got nil")
|
|
|
|
}
|
|
|
|
|
|
|
|
// test invalid opt
|
|
|
|
config.SecurityOpt = []string{"test"}
|
|
|
|
if err := parseSecurityOpt(container, config); err == nil {
|
|
|
|
t.Fatal("Expected parseSecurityOpt error, got nil")
|
|
|
|
}
|
|
|
|
}
|
2015-11-04 09:27:23 -05:00
|
|
|
|
|
|
|
func TestNetworkOptions(t *testing.T) {
|
|
|
|
daemon := &Daemon{}
|
|
|
|
dconfigCorrect := &Config{
|
|
|
|
CommonConfig: CommonConfig{
|
|
|
|
ClusterStore: "consul://localhost:8500",
|
|
|
|
ClusterAdvertise: "192.168.0.1:8000",
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
if _, err := daemon.networkOptions(dconfigCorrect); err != nil {
|
|
|
|
t.Fatalf("Expect networkOptions sucess, got error: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
dconfigWrong := &Config{
|
|
|
|
CommonConfig: CommonConfig{
|
|
|
|
ClusterStore: "consul://localhost:8500://test://bbb",
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
if _, err := daemon.networkOptions(dconfigWrong); err == nil {
|
|
|
|
t.Fatalf("Expected networkOptions error, got nil")
|
|
|
|
}
|
|
|
|
}
|