2020-05-18 14:38:21 +02:00
|
|
|
/*
|
2020-09-22 12:13:00 +02:00
|
|
|
Copyright 2020 Docker Compose CLI authors
|
2020-06-18 16:13:24 +02:00
|
|
|
|
|
|
|
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.
|
2020-05-18 14:38:21 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"io/ioutil"
|
|
|
|
"os"
|
|
|
|
"path/filepath"
|
|
|
|
"testing"
|
|
|
|
|
2020-08-04 14:03:24 +02:00
|
|
|
"gotest.tools/v3/assert"
|
|
|
|
|
2020-08-21 17:24:53 +02:00
|
|
|
"github.com/docker/compose-cli/cli/cmd"
|
|
|
|
"github.com/docker/compose-cli/cli/cmd/context"
|
|
|
|
"github.com/docker/compose-cli/cli/cmd/login"
|
|
|
|
"github.com/docker/compose-cli/cli/cmd/run"
|
|
|
|
"github.com/docker/compose-cli/config"
|
2020-05-18 14:38:21 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
var contextSetConfig = []byte(`{
|
|
|
|
"currentContext": "some-context"
|
|
|
|
}`)
|
|
|
|
|
|
|
|
func TestDetermineCurrentContext(t *testing.T) {
|
|
|
|
d, err := ioutil.TempDir("", "")
|
2020-05-18 15:12:52 +02:00
|
|
|
// nolint errcheck
|
2020-05-18 14:38:21 +02:00
|
|
|
defer os.RemoveAll(d)
|
2020-08-04 14:03:24 +02:00
|
|
|
assert.NilError(t, err)
|
2020-05-18 14:38:21 +02:00
|
|
|
err = ioutil.WriteFile(filepath.Join(d, config.ConfigFileName), contextSetConfig, 0644)
|
2020-08-04 14:03:24 +02:00
|
|
|
assert.NilError(t, err)
|
2020-05-18 14:38:21 +02:00
|
|
|
|
|
|
|
// If nothing set, fallback to default
|
2020-06-15 10:04:01 +02:00
|
|
|
c := determineCurrentContext("", "")
|
2020-08-04 14:03:24 +02:00
|
|
|
assert.Equal(t, c, "default")
|
2020-05-18 14:38:21 +02:00
|
|
|
|
|
|
|
// If context flag set, use that
|
2020-06-15 10:04:01 +02:00
|
|
|
c = determineCurrentContext("other-context", "")
|
2020-08-04 14:03:24 +02:00
|
|
|
assert.Equal(t, c, "other-context")
|
2020-05-18 14:38:21 +02:00
|
|
|
|
|
|
|
// If no context flag, use config
|
2020-06-15 10:04:01 +02:00
|
|
|
c = determineCurrentContext("", d)
|
2020-08-04 14:03:24 +02:00
|
|
|
assert.Equal(t, c, "some-context")
|
2020-05-18 14:38:21 +02:00
|
|
|
|
|
|
|
// Ensure context flag overrides config
|
2020-06-15 10:04:01 +02:00
|
|
|
c = determineCurrentContext("other-context", d)
|
2020-08-04 14:03:24 +02:00
|
|
|
assert.Equal(t, "other-context", c)
|
2020-05-18 14:38:21 +02:00
|
|
|
}
|
2020-05-29 17:07:48 +02:00
|
|
|
|
|
|
|
func TestCheckOwnCommand(t *testing.T) {
|
2020-09-04 10:19:40 +02:00
|
|
|
assert.Assert(t, isContextAgnosticCommand(login.Command()))
|
|
|
|
assert.Assert(t, isContextAgnosticCommand(context.Command()))
|
|
|
|
assert.Assert(t, isContextAgnosticCommand(cmd.ServeCommand()))
|
2020-09-21 15:39:05 +02:00
|
|
|
assert.Assert(t, !isContextAgnosticCommand(run.Command("default")))
|
2020-09-04 10:19:40 +02:00
|
|
|
assert.Assert(t, !isContextAgnosticCommand(cmd.ExecCommand()))
|
|
|
|
assert.Assert(t, !isContextAgnosticCommand(cmd.LogsCommand()))
|
|
|
|
assert.Assert(t, !isContextAgnosticCommand(cmd.PsCommand()))
|
2020-05-29 17:07:48 +02:00
|
|
|
}
|
2020-10-29 15:22:44 +01:00
|
|
|
|
|
|
|
func TestAppendPaths(t *testing.T) {
|
|
|
|
assert.Equal(t, appendPaths("", "/bin/path"), "/bin/path")
|
|
|
|
assert.Equal(t, appendPaths("path1", "binaryPath"), "path1"+string(os.PathListSeparator)+"binaryPath")
|
|
|
|
}
|