| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251 |
- /*
- 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 (
- "context"
- "fmt"
- "testing"
- "github.com/compose-spec/compose-go/types"
- "github.com/stretchr/testify/require"
- "gotest.tools/assert"
- )
- var project = types.Project{
- Services: []types.ServiceConfig{
- {
- Name: "test1",
- DependsOn: map[string]types.ServiceDependency{
- "test2": {},
- },
- },
- {
- Name: "test2",
- DependsOn: map[string]types.ServiceDependency{
- "test3": {},
- },
- },
- {
- Name: "test3",
- },
- },
- }
- func TestInDependencyUpCommandOrder(t *testing.T) {
- ctx, cancel := context.WithCancel(context.Background())
- t.Cleanup(cancel)
- var order []string
- err := InDependencyOrder(ctx, &project, func(ctx context.Context, service string) error {
- order = append(order, service)
- return nil
- })
- require.NoError(t, err, "Error during iteration")
- require.Equal(t, []string{"test3", "test2", "test1"}, order)
- }
- func TestInDependencyReverseDownCommandOrder(t *testing.T) {
- ctx, cancel := context.WithCancel(context.Background())
- t.Cleanup(cancel)
- var order []string
- err := InReverseDependencyOrder(ctx, &project, func(ctx context.Context, service string) error {
- order = append(order, service)
- return nil
- })
- require.NoError(t, err, "Error during iteration")
- require.Equal(t, []string{"test1", "test2", "test3"}, order)
- }
- func TestBuildGraph(t *testing.T) {
- testCases := []struct {
- desc string
- services types.Services
- expectedVertices map[string]*Vertex
- }{
- {
- desc: "builds graph with single service",
- services: types.Services{
- {
- Name: "test",
- DependsOn: types.DependsOnConfig{},
- },
- },
- expectedVertices: map[string]*Vertex{
- "test": {
- Key: "test",
- Service: "test",
- Status: ServiceStopped,
- Children: map[string]*Vertex{},
- Parents: map[string]*Vertex{},
- },
- },
- },
- {
- desc: "builds graph with two separate services",
- services: types.Services{
- {
- Name: "test",
- DependsOn: types.DependsOnConfig{},
- },
- {
- Name: "another",
- DependsOn: types.DependsOnConfig{},
- },
- },
- expectedVertices: map[string]*Vertex{
- "test": {
- Key: "test",
- Service: "test",
- Status: ServiceStopped,
- Children: map[string]*Vertex{},
- Parents: map[string]*Vertex{},
- },
- "another": {
- Key: "another",
- Service: "another",
- Status: ServiceStopped,
- Children: map[string]*Vertex{},
- Parents: map[string]*Vertex{},
- },
- },
- },
- {
- desc: "builds graph with a service and a dependency",
- services: types.Services{
- {
- Name: "test",
- DependsOn: types.DependsOnConfig{
- "another": types.ServiceDependency{},
- },
- },
- {
- Name: "another",
- DependsOn: types.DependsOnConfig{},
- },
- },
- expectedVertices: map[string]*Vertex{
- "test": {
- Key: "test",
- Service: "test",
- Status: ServiceStopped,
- Children: map[string]*Vertex{
- "another": {},
- },
- Parents: map[string]*Vertex{},
- },
- "another": {
- Key: "another",
- Service: "another",
- Status: ServiceStopped,
- Children: map[string]*Vertex{},
- Parents: map[string]*Vertex{
- "test": {},
- },
- },
- },
- },
- {
- desc: "builds graph with multiple dependency levels",
- services: types.Services{
- {
- Name: "test",
- DependsOn: types.DependsOnConfig{
- "another": types.ServiceDependency{},
- },
- },
- {
- Name: "another",
- DependsOn: types.DependsOnConfig{
- "another_dep": types.ServiceDependency{},
- },
- },
- {
- Name: "another_dep",
- DependsOn: types.DependsOnConfig{},
- },
- },
- expectedVertices: map[string]*Vertex{
- "test": {
- Key: "test",
- Service: "test",
- Status: ServiceStopped,
- Children: map[string]*Vertex{
- "another": {},
- },
- Parents: map[string]*Vertex{},
- },
- "another": {
- Key: "another",
- Service: "another",
- Status: ServiceStopped,
- Children: map[string]*Vertex{
- "another_dep": {},
- },
- Parents: map[string]*Vertex{
- "test": {},
- },
- },
- "another_dep": {
- Key: "another_dep",
- Service: "another_dep",
- Status: ServiceStopped,
- Children: map[string]*Vertex{},
- Parents: map[string]*Vertex{
- "another": {},
- },
- },
- },
- },
- }
- for _, tC := range testCases {
- t.Run(tC.desc, func(t *testing.T) {
- project := types.Project{
- Services: tC.services,
- }
- graph, err := NewGraph(project.Services, ServiceStopped)
- assert.NilError(t, err, fmt.Sprintf("failed to build graph for: %s", tC.desc))
- for k, vertex := range graph.Vertices {
- expected, ok := tC.expectedVertices[k]
- assert.Equal(t, true, ok)
- assert.Equal(t, true, isVertexEqual(*expected, *vertex))
- }
- })
- }
- }
- func isVertexEqual(a, b Vertex) bool {
- childrenEquality := true
- for c := range a.Children {
- if _, ok := b.Children[c]; !ok {
- childrenEquality = false
- }
- }
- parentEquality := true
- for p := range a.Parents {
- if _, ok := b.Parents[p]; !ok {
- parentEquality = false
- }
- }
- return a.Key == b.Key &&
- a.Service == b.Service &&
- childrenEquality &&
- parentEquality
- }
|