| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109 |
- /*
- 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 (
- "slices"
- "testing"
- "github.com/compose-spec/compose-go/v2/types"
- "gotest.tools/v3/assert"
- )
- func Test_dockerFilePath(t *testing.T) {
- tests := []struct {
- name string
- ctxName string
- dockerfile string
- expected string
- }{
- {
- name: "empty dockerfile",
- ctxName: "/some/local/dir",
- dockerfile: "",
- expected: "",
- },
- {
- name: "local dir with relative dockerfile",
- ctxName: "/some/local/dir",
- dockerfile: "Dockerfile",
- expected: "/some/local/dir/Dockerfile",
- },
- {
- name: "local dir with absolute dockerfile",
- ctxName: "/some/local/dir",
- dockerfile: "/absolute/path/Dockerfile",
- expected: "/absolute/path/Dockerfile",
- },
- {
- name: "ssh URL preserves double slash",
- ctxName: "ssh://[email protected]:22/docker/welcome-to-docker.git",
- dockerfile: "Dockerfile",
- expected: "Dockerfile",
- },
- {
- name: "git:// URL returns dockerfile as-is",
- ctxName: "git://github.com/docker/compose.git",
- dockerfile: "Dockerfile",
- expected: "Dockerfile",
- },
- {
- name: "https git URL returns dockerfile as-is",
- ctxName: "https://github.com/docker/compose.git",
- dockerfile: "Dockerfile",
- expected: "Dockerfile",
- },
- }
- for _, tt := range tests {
- t.Run(tt.name, func(t *testing.T) {
- result := dockerFilePath(tt.ctxName, tt.dockerfile)
- assert.Equal(t, tt.expected, result)
- })
- }
- }
- func Test_addBuildDependencies(t *testing.T) {
- project := &types.Project{Services: types.Services{
- "test": types.ServiceConfig{
- Build: &types.BuildConfig{
- AdditionalContexts: map[string]string{
- "foo": "service:foo",
- "bar": "service:bar",
- },
- },
- },
- "foo": types.ServiceConfig{
- Build: &types.BuildConfig{
- AdditionalContexts: map[string]string{
- "zot": "service:zot",
- },
- },
- },
- "bar": types.ServiceConfig{
- Build: &types.BuildConfig{},
- },
- "zot": types.ServiceConfig{
- Build: &types.BuildConfig{},
- },
- }}
- services := addBuildDependencies([]string{"test"}, project)
- expected := []string{"test", "foo", "bar", "zot"}
- slices.Sort(services)
- slices.Sort(expected)
- assert.DeepEqual(t, services, expected)
- }
|