Update breaking test cases

Signed-off-by: Vedant Koditkar <vedant.koditkar@outlook.com>
This commit is contained in:
Vedant Koditkar 2022-02-14 20:30:26 +05:30 committed by Nicolas De loof
parent fb3f9e270f
commit 90ca37344f
1 changed files with 11 additions and 9 deletions

View File

@ -30,31 +30,33 @@ func TestContainersToStacks(t *testing.T) {
{ {
ID: "service1", ID: "service1",
State: "running", State: "running",
Labels: map[string]string{api.ProjectLabel: "project1"}, Labels: map[string]string{api.ProjectLabel: "project1", api.ConfigFilesLabel: "/home/docker-compose.yaml"},
}, },
{ {
ID: "service2", ID: "service2",
State: "running", State: "running",
Labels: map[string]string{api.ProjectLabel: "project1"}, Labels: map[string]string{api.ProjectLabel: "project1", api.ConfigFilesLabel: "/home/docker-compose.yaml"},
}, },
{ {
ID: "service3", ID: "service3",
State: "running", State: "running",
Labels: map[string]string{api.ProjectLabel: "project2"}, Labels: map[string]string{api.ProjectLabel: "project2", api.ConfigFilesLabel: "/home/project2-docker-compose.yaml"},
}, },
} }
stacks, err := containersToStacks(containers) stacks, err := containersToStacks(containers)
assert.NilError(t, err) assert.NilError(t, err)
assert.DeepEqual(t, stacks, []api.Stack{ assert.DeepEqual(t, stacks, []api.Stack{
{ {
ID: "project1", ID: "project1",
Name: "project1", Name: "project1",
Status: "running(2)", Status: "running(2)",
ConfigFiles: "/home/docker-compose.yaml",
}, },
{ {
ID: "project2", ID: "project2",
Name: "project2", Name: "project2",
Status: "running(1)", Status: "running(1)",
ConfigFiles: "/home/project2-docker-compose.yaml",
}, },
}) })
} }