mirror of https://github.com/docker/compose.git
on ACI container ID is `project_service` and name is `service`
Signed-off-by: Nicolas De Loof <nicolas.deloof@gmail.com>
This commit is contained in:
parent
1f5a77e67c
commit
446008a4b6
|
@ -150,9 +150,10 @@ func (cs *aciComposeService) Ps(ctx context.Context, project string) ([]compose.
|
|||
Protocol: string(p.Protocol),
|
||||
})
|
||||
}
|
||||
id := getContainerID(group, container)
|
||||
res = append(res, compose.ContainerSummary{
|
||||
ID: *container.Name,
|
||||
Name: *container.Name,
|
||||
ID: id,
|
||||
Name: id,
|
||||
Project: project,
|
||||
Service: *container.Name,
|
||||
State: convert.GetStatus(container, group),
|
||||
|
|
|
@ -80,8 +80,8 @@ func runPs(ctx context.Context, opts composeOptions) error {
|
|||
ports = append(ports, fmt.Sprintf("%s->%d/%s", p.URL, p.TargetPort, p.Protocol))
|
||||
}
|
||||
}
|
||||
_, _ = fmt.Fprintf(w, "%s\t%s\t%s\n", container.Name, container.State, strings.Join(ports, ", "))
|
||||
_, _ = fmt.Fprintf(w, "%s\t%s\t%s\t%s\n", container.Name, container.Service, container.State, strings.Join(ports, ", "))
|
||||
}
|
||||
},
|
||||
"NAME", "STATE", "PORTS")
|
||||
"NAME", "SERVICE", "STATE", "PORTS")
|
||||
}
|
||||
|
|
|
@ -869,7 +869,7 @@ func (s sdk) DescribeServiceTasks(ctx context.Context, cluster string, project s
|
|||
Name: id.Resource,
|
||||
Project: project,
|
||||
Service: service,
|
||||
State: aws.StringValue(t.LastStatus),
|
||||
State: strings.Title(strings.ToLower(aws.StringValue(t.LastStatus))),
|
||||
})
|
||||
}
|
||||
|
||||
|
|
|
@ -1,143 +0,0 @@
|
|||
/*
|
||||
Copyright 2020 Docker Compose CLI authors
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
*/
|
||||
|
||||
package compose
|
||||
|
||||
import (
|
||||
"path/filepath"
|
||||
"testing"
|
||||
|
||||
composetypes "github.com/compose-spec/compose-go/types"
|
||||
"github.com/docker/docker/api/types"
|
||||
mountTypes "github.com/docker/docker/api/types/mount"
|
||||
"gotest.tools/v3/assert"
|
||||
|
||||
"github.com/docker/compose-cli/api/compose"
|
||||
)
|
||||
|
||||
func TestContainersToStacks(t *testing.T) {
|
||||
containers := []types.Container{
|
||||
{
|
||||
ID: "service1",
|
||||
State: "running",
|
||||
Labels: map[string]string{projectLabel: "project1"},
|
||||
},
|
||||
{
|
||||
ID: "service2",
|
||||
State: "running",
|
||||
Labels: map[string]string{projectLabel: "project1"},
|
||||
},
|
||||
{
|
||||
ID: "service3",
|
||||
State: "running",
|
||||
Labels: map[string]string{projectLabel: "project2"},
|
||||
},
|
||||
}
|
||||
stacks, err := containersToStacks(containers)
|
||||
assert.NilError(t, err)
|
||||
assert.DeepEqual(t, stacks, []compose.Stack{
|
||||
{
|
||||
ID: "project1",
|
||||
Name: "project1",
|
||||
Status: "running(2)",
|
||||
},
|
||||
{
|
||||
ID: "project2",
|
||||
Name: "project2",
|
||||
Status: "running(1)",
|
||||
},
|
||||
})
|
||||
}
|
||||
|
||||
func TestContainersToServiceStatus(t *testing.T) {
|
||||
containers := []types.Container{
|
||||
{
|
||||
ID: "c1",
|
||||
State: "running",
|
||||
Labels: map[string]string{serviceLabel: "service1"},
|
||||
},
|
||||
{
|
||||
ID: "c2",
|
||||
State: "exited",
|
||||
Labels: map[string]string{serviceLabel: "service1"},
|
||||
},
|
||||
{
|
||||
ID: "c3",
|
||||
State: "running",
|
||||
Labels: map[string]string{serviceLabel: "service1"},
|
||||
},
|
||||
{
|
||||
ID: "c4",
|
||||
State: "running",
|
||||
Labels: map[string]string{serviceLabel: "service2"},
|
||||
},
|
||||
}
|
||||
services, err := containersToServiceStatus(containers)
|
||||
assert.NilError(t, err)
|
||||
assert.DeepEqual(t, services, []compose.ServiceStatus{
|
||||
{
|
||||
ID: "service1",
|
||||
Name: "service1",
|
||||
Replicas: 2,
|
||||
Desired: 3,
|
||||
},
|
||||
{
|
||||
ID: "service2",
|
||||
Name: "service2",
|
||||
Replicas: 1,
|
||||
Desired: 1,
|
||||
},
|
||||
})
|
||||
}
|
||||
|
||||
func TestStacksMixedStatus(t *testing.T) {
|
||||
assert.Equal(t, combinedStatus([]string{"running"}), "running(1)")
|
||||
assert.Equal(t, combinedStatus([]string{"running", "running", "running"}), "running(3)")
|
||||
assert.Equal(t, combinedStatus([]string{"running", "exited", "running"}), "exited(1), running(2)")
|
||||
}
|
||||
|
||||
func TestBuildBindMount(t *testing.T) {
|
||||
project := composetypes.Project{}
|
||||
volume := composetypes.ServiceVolumeConfig{
|
||||
Type: composetypes.VolumeTypeBind,
|
||||
Source: "e2e/volume-test",
|
||||
Target: "/data",
|
||||
}
|
||||
mount, err := buildMount(project, volume)
|
||||
assert.NilError(t, err)
|
||||
assert.Assert(t, filepath.IsAbs(mount.Source))
|
||||
assert.Equal(t, mount.Type, mountTypes.TypeBind)
|
||||
}
|
||||
|
||||
func TestBuildVolumeMount(t *testing.T) {
|
||||
project := composetypes.Project{
|
||||
Name: "myProject",
|
||||
Volumes: composetypes.Volumes(map[string]composetypes.VolumeConfig{
|
||||
"myVolume": {
|
||||
Name: "myProject_myVolume",
|
||||
},
|
||||
}),
|
||||
}
|
||||
volume := composetypes.ServiceVolumeConfig{
|
||||
Type: composetypes.VolumeTypeVolume,
|
||||
Source: "myVolume",
|
||||
Target: "/data",
|
||||
}
|
||||
mount, err := buildMount(project, volume)
|
||||
assert.NilError(t, err)
|
||||
assert.Equal(t, mount.Source, "myProject_myVolume")
|
||||
assert.Equal(t, mount.Type, mountTypes.TypeVolume)
|
||||
}
|
|
@ -27,15 +27,36 @@ import (
|
|||
)
|
||||
|
||||
func TestBuildBindMount(t *testing.T) {
|
||||
project := composetypes.Project{}
|
||||
volume := composetypes.ServiceVolumeConfig{
|
||||
Type: composetypes.VolumeTypeBind,
|
||||
Source: "e2e/volume-test",
|
||||
Source: "",
|
||||
Target: "/data",
|
||||
}
|
||||
mount, err := buildMount(volume)
|
||||
mount, err := buildMount(project, volume)
|
||||
assert.NilError(t, err)
|
||||
assert.Assert(t, filepath.IsAbs(mount.Source))
|
||||
_, err = os.Stat(mount.Source)
|
||||
assert.NilError(t, err)
|
||||
assert.Equal(t, mount.Type, mountTypes.TypeBind)
|
||||
}
|
||||
|
||||
func TestBuildVolumeMount(t *testing.T) {
|
||||
project := composetypes.Project{
|
||||
Name: "myProject",
|
||||
Volumes: composetypes.Volumes(map[string]composetypes.VolumeConfig{
|
||||
"myVolume": {
|
||||
Name: "myProject_myVolume",
|
||||
},
|
||||
}),
|
||||
}
|
||||
volume := composetypes.ServiceVolumeConfig{
|
||||
Type: composetypes.VolumeTypeVolume,
|
||||
Source: "myVolume",
|
||||
Target: "/data",
|
||||
}
|
||||
mount, err := buildMount(project, volume)
|
||||
assert.NilError(t, err)
|
||||
assert.Equal(t, mount.Source, "myProject_myVolume")
|
||||
assert.Equal(t, mount.Type, mountTypes.TypeVolume)
|
||||
}
|
||||
|
|
|
@ -734,20 +734,23 @@ func TestUpUpdate(t *testing.T) {
|
|||
var wordsDisplayed, webDisplayed, dbDisplayed bool
|
||||
for _, line := range l {
|
||||
fields := strings.Fields(line)
|
||||
containerID := fields[0]
|
||||
switch containerID {
|
||||
name := fields[0]
|
||||
switch name {
|
||||
case wordsContainer:
|
||||
wordsDisplayed = true
|
||||
assert.DeepEqual(t, fields, []string{containerID, "words", "Running"})
|
||||
assert.Equal(t, fields[2], "Running")
|
||||
case dbContainer:
|
||||
dbDisplayed = true
|
||||
assert.DeepEqual(t, fields, []string{containerID, "db", "Running"})
|
||||
assert.Equal(t, fields[2], "Running")
|
||||
case serverContainer:
|
||||
webDisplayed = true
|
||||
assert.Equal(t, fields[1], "web")
|
||||
assert.Equal(t, fields[2], "Running")
|
||||
assert.Check(t, strings.Contains(fields[3], ":80->80/tcp"))
|
||||
}
|
||||
}
|
||||
assert.Check(t, webDisplayed, "webDisplayed"+res.Stdout())
|
||||
assert.Check(t, wordsDisplayed, "wordsDisplayed"+res.Stdout())
|
||||
assert.Check(t, dbDisplayed, "dbDisplayed"+res.Stdout())
|
||||
assert.Check(t, webDisplayed && wordsDisplayed && dbDisplayed, "\n%s\n", res.Stdout())
|
||||
})
|
||||
|
||||
|
|
|
@ -100,7 +100,7 @@ func TestCompose(t *testing.T) {
|
|||
switch serviceName {
|
||||
case "db":
|
||||
dbDisplayed = true
|
||||
assert.DeepEqual(t, fields, []string{containerID, serviceName, "1/1"})
|
||||
assert.DeepEqual(t, fields, []string{containerID, serviceName, "Running"})
|
||||
case "words":
|
||||
wordsDisplayed = true
|
||||
assert.Check(t, strings.Contains(fields[3], ":8080->8080/tcp"))
|
||||
|
|
Loading…
Reference in New Issue