func (c *Client) getHostConfig() *godocker.HostConfig { binds := []string{ defaultDockerEndpoint + ":" + defaultDockerEndpoint, config.LogDirectory() + ":" + logDir, config.AgentDataDirectory() + ":" + dataDir, config.AgentConfigDirectory() + ":" + config.AgentConfigDirectory(), config.CacheDirectory() + ":" + config.CacheDirectory(), config.CgroupDirectory() + ":" + config.CgroupDirectory() + readOnly, config.ExecDriverDirectory() + ":" + execDriverDir + readOnly, } portBindings := map[godocker.Port][]godocker.PortBinding{ agentIntrospectionPort + "/tcp": []godocker.PortBinding{ godocker.PortBinding{ HostIP: "127.0.0.1", HostPort: agentIntrospectionPort, }, }, } return &godocker.HostConfig{ Binds: binds, PortBindings: portBindings, } }
func validateCommonCreateContainerOptions(opts godocker.CreateContainerOptions, t *testing.T) { if opts.Name != "ecs-agent" { t.Errorf("Expected container Name to be %s but was %s", "ecs-agent", opts.Name) } cfg := opts.Config if len(cfg.Env) < 3 { t.Errorf("Expected at least 3 elements to be in Env, but was %d", len(cfg.Env)) } envVariables := make(map[string]struct{}) for _, envVar := range cfg.Env { envVariables[envVar] = struct{}{} } expectKey("ECS_DATADIR=/data", envVariables, t) expectKey("ECS_LOGFILE=/log/"+config.AgentLogFile, envVariables, t) expectKey("ECS_AGENT_CONFIG_FILE_PATH="+config.AgentJSONConfigFile(), envVariables, t) expectKey("ECS_UPDATE_DOWNLOAD_DIR="+config.CacheDirectory(), envVariables, t) expectKey("ECS_UPDATES_ENABLED=true", envVariables, t) if len(cfg.ExposedPorts) != 1 { t.Errorf("Expected exactly 1 element to be in ExposedPorts, but was %d", len(cfg.ExposedPorts)) } expectPort("51678/tcp", cfg.ExposedPorts, t) if cfg.Image != config.AgentImageName { t.Errorf("Expected image to be %s", config.AgentImageName) } hostCfg := opts.HostConfig if len(hostCfg.Binds) != 7 { t.Errorf("Expected exactly 7 elements to be in Binds, but was %d", len(hostCfg.Binds)) } binds := make(map[string]struct{}) for _, binding := range hostCfg.Binds { binds[binding] = struct{}{} } expectKey(config.DockerUnixSocket()+":"+config.DockerUnixSocket(), binds, t) expectKey(config.LogDirectory()+":/log", binds, t) expectKey(config.AgentDataDirectory()+":/data", binds, t) expectKey(config.AgentConfigDirectory()+":"+config.AgentConfigDirectory(), binds, t) expectKey(config.CacheDirectory()+":"+config.CacheDirectory(), binds, t) expectKey(config.CgroupDirectory()+":"+config.CgroupDirectory()+":ro", binds, t) expectKey(config.ExecDriverDirectory()+":/var/lib/docker/execdriver:ro", binds, t) if len(hostCfg.PortBindings) != 1 { t.Errorf("Expected exactly 1 element to be in PortBindings, but was %d", len(hostCfg.PortBindings)) } if portBindings, ok := hostCfg.PortBindings["51678/tcp"]; ok { if len(portBindings) != 1 { t.Errorf("Expected exactly 1 element to be in portBindings, but was %d", len(portBindings)) } else { portBinding := portBindings[0] if portBinding.HostIP != "127.0.0.1" { t.Errorf("Expected HostIP to be 127.0.0.1, but was %s", portBinding.HostIP) } if portBinding.HostPort != "51678" { t.Errorf("Expected HostPort to be 51678, but was %s", portBinding.HostPort) } } } else { t.Error("Expected 51678/tcp to be defined") } }