mirror of
https://github.com/docker/compose.git
synced 2025-07-13 16:54:25 +02:00
Merge pull request #9643 from ulyssessouza/add-gocritic-linter
Add gocritic to linters
This commit is contained in:
commit
58dcfcdfbc
@ -7,6 +7,7 @@ linters:
|
|||||||
- deadcode
|
- deadcode
|
||||||
- depguard
|
- depguard
|
||||||
- errcheck
|
- errcheck
|
||||||
|
- gocritic
|
||||||
- gocyclo
|
- gocyclo
|
||||||
- gofmt
|
- gofmt
|
||||||
- goimports
|
- goimports
|
||||||
@ -32,6 +33,17 @@ linters-settings:
|
|||||||
# The io/ioutil package has been deprecated.
|
# The io/ioutil package has been deprecated.
|
||||||
# https://go.dev/doc/go1.16#ioutil
|
# https://go.dev/doc/go1.16#ioutil
|
||||||
- io/ioutil
|
- io/ioutil
|
||||||
|
gocritic:
|
||||||
|
# Enable multiple checks by tags, run `GL_DEBUG=gocritic golangci-lint run` to see all tags and checks.
|
||||||
|
# Empty list by default. See https://github.com/go-critic/go-critic#usage -> section "Tags".
|
||||||
|
enabled-tags:
|
||||||
|
- diagnostic
|
||||||
|
- opinionated
|
||||||
|
- style
|
||||||
|
disabled-checks:
|
||||||
|
- paramTypeCombine
|
||||||
|
- unnamedResult
|
||||||
|
- whyNoLint
|
||||||
gocyclo:
|
gocyclo:
|
||||||
min-complexity: 16
|
min-complexity: 16
|
||||||
lll:
|
lll:
|
||||||
|
@ -16,9 +16,11 @@
|
|||||||
# limitations under the License.
|
# limitations under the License.
|
||||||
|
|
||||||
ARG GO_VERSION=1.18.4-alpine
|
ARG GO_VERSION=1.18.4-alpine
|
||||||
ARG GOLANGCI_LINT_VERSION=v1.40.1-alpine
|
ARG GOLANGCI_LINT_VERSION=v1.46.2-alpine
|
||||||
ARG PROTOC_GEN_GO_VERSION=v1.4.3
|
ARG PROTOC_GEN_GO_VERSION=v1.4.3
|
||||||
|
|
||||||
|
FROM --platform=${BUILDPLATFORM} golangci/golangci-lint:${GOLANGCI_LINT_VERSION} AS local-golangci-lint
|
||||||
|
|
||||||
FROM --platform=${BUILDPLATFORM} golang:${GO_VERSION} AS base
|
FROM --platform=${BUILDPLATFORM} golang:${GO_VERSION} AS base
|
||||||
WORKDIR /compose-cli
|
WORKDIR /compose-cli
|
||||||
RUN apk add --no-cache -vv \
|
RUN apk add --no-cache -vv \
|
||||||
@ -34,7 +36,7 @@ RUN --mount=type=cache,target=/go/pkg/mod \
|
|||||||
|
|
||||||
FROM base AS lint
|
FROM base AS lint
|
||||||
ENV CGO_ENABLED=0
|
ENV CGO_ENABLED=0
|
||||||
COPY --from=golangci/golangci-lint /usr/bin/golangci-lint /usr/bin/golangci-lint
|
COPY --from=local-golangci-lint /usr/bin/golangci-lint /usr/bin/golangci-lint
|
||||||
ARG BUILD_TAGS
|
ARG BUILD_TAGS
|
||||||
ARG GIT_TAG
|
ARG GIT_TAG
|
||||||
RUN --mount=target=. \
|
RUN --mount=target=. \
|
||||||
|
@ -239,11 +239,11 @@ func RootCommand(dockerCli command.Cli, backend api.Service) *cobra.Command {
|
|||||||
verbose bool
|
verbose bool
|
||||||
version bool
|
version bool
|
||||||
)
|
)
|
||||||
command := &cobra.Command{
|
c := &cobra.Command{
|
||||||
Short: "Docker Compose",
|
Short: "Docker Compose",
|
||||||
Use: PluginName,
|
Use: PluginName,
|
||||||
TraverseChildren: true,
|
TraverseChildren: true,
|
||||||
// By default (no Run/RunE in parent command) for typos in subcommands, cobra displays the help of parent command but exit(0) !
|
// By default (no Run/RunE in parent c) for typos in subcommands, cobra displays the help of parent c but exit(0) !
|
||||||
RunE: func(cmd *cobra.Command, args []string) error {
|
RunE: func(cmd *cobra.Command, args []string) error {
|
||||||
if len(args) == 0 {
|
if len(args) == 0 {
|
||||||
return cmd.Help()
|
return cmd.Help()
|
||||||
@ -300,7 +300,7 @@ func RootCommand(dockerCli command.Cli, backend api.Service) *cobra.Command {
|
|||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
command.AddCommand(
|
c.AddCommand(
|
||||||
upCommand(&opts, backend),
|
upCommand(&opts, backend),
|
||||||
downCommand(&opts, backend),
|
downCommand(&opts, backend),
|
||||||
startCommand(&opts, backend),
|
startCommand(&opts, backend),
|
||||||
@ -327,16 +327,16 @@ func RootCommand(dockerCli command.Cli, backend api.Service) *cobra.Command {
|
|||||||
createCommand(&opts, backend),
|
createCommand(&opts, backend),
|
||||||
copyCommand(&opts, backend),
|
copyCommand(&opts, backend),
|
||||||
)
|
)
|
||||||
command.Flags().SetInterspersed(false)
|
c.Flags().SetInterspersed(false)
|
||||||
opts.addProjectFlags(command.Flags())
|
opts.addProjectFlags(c.Flags())
|
||||||
command.Flags().StringVar(&ansi, "ansi", "auto", `Control when to print ANSI control characters ("never"|"always"|"auto")`)
|
c.Flags().StringVar(&ansi, "ansi", "auto", `Control when to print ANSI control characters ("never"|"always"|"auto")`)
|
||||||
command.Flags().BoolVarP(&version, "version", "v", false, "Show the Docker Compose version information")
|
c.Flags().BoolVarP(&version, "version", "v", false, "Show the Docker Compose version information")
|
||||||
command.Flags().MarkHidden("version") //nolint:errcheck
|
c.Flags().MarkHidden("version") //nolint:errcheck
|
||||||
command.Flags().BoolVar(&noAnsi, "no-ansi", false, `Do not print ANSI control characters (DEPRECATED)`)
|
c.Flags().BoolVar(&noAnsi, "no-ansi", false, `Do not print ANSI control characters (DEPRECATED)`)
|
||||||
command.Flags().MarkHidden("no-ansi") //nolint:errcheck
|
c.Flags().MarkHidden("no-ansi") //nolint:errcheck
|
||||||
command.Flags().BoolVar(&verbose, "verbose", false, "Show more output")
|
c.Flags().BoolVar(&verbose, "verbose", false, "Show more output")
|
||||||
command.Flags().MarkHidden("verbose") //nolint:errcheck
|
c.Flags().MarkHidden("verbose") //nolint:errcheck
|
||||||
return command
|
return c
|
||||||
}
|
}
|
||||||
|
|
||||||
func setEnvWithDotEnv(prjOpts *projectOptions) error {
|
func setEnvWithDotEnv(prjOpts *projectOptions) error {
|
||||||
@ -355,7 +355,7 @@ func setEnvWithDotEnv(prjOpts *projectOptions) error {
|
|||||||
}
|
}
|
||||||
for k, v := range envFromFile {
|
for k, v := range envFromFile {
|
||||||
if _, ok := os.LookupEnv(k); !ok {
|
if _, ok := os.LookupEnv(k); !ok {
|
||||||
if err = os.Setenv(k, v); err != nil {
|
if err := os.Setenv(k, v); err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -69,8 +69,7 @@ func downCommand(p *projectOptions, backend api.Service) *cobra.Command {
|
|||||||
flags.BoolVarP(&opts.volumes, "volumes", "v", false, " Remove named volumes declared in the `volumes` section of the Compose file and anonymous volumes attached to containers.")
|
flags.BoolVarP(&opts.volumes, "volumes", "v", false, " Remove named volumes declared in the `volumes` section of the Compose file and anonymous volumes attached to containers.")
|
||||||
flags.StringVar(&opts.images, "rmi", "", `Remove images used by services. "local" remove only images that don't have a custom tag ("local"|"all")`)
|
flags.StringVar(&opts.images, "rmi", "", `Remove images used by services. "local" remove only images that don't have a custom tag ("local"|"all")`)
|
||||||
flags.SetNormalizeFunc(func(f *pflag.FlagSet, name string) pflag.NormalizedName {
|
flags.SetNormalizeFunc(func(f *pflag.FlagSet, name string) pflag.NormalizedName {
|
||||||
switch name {
|
if name == "volume" {
|
||||||
case "volume":
|
|
||||||
name = "volumes"
|
name = "volumes"
|
||||||
logrus.Warn("--volume is deprecated, please use --volumes")
|
logrus.Warn("--volume is deprecated, please use --volumes")
|
||||||
}
|
}
|
||||||
|
@ -39,19 +39,19 @@ type lsOptions struct {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func listCommand(backend api.Service) *cobra.Command {
|
func listCommand(backend api.Service) *cobra.Command {
|
||||||
opts := lsOptions{Filter: opts.NewFilterOpt()}
|
lsOpts := lsOptions{Filter: opts.NewFilterOpt()}
|
||||||
lsCmd := &cobra.Command{
|
lsCmd := &cobra.Command{
|
||||||
Use: "ls",
|
Use: "ls",
|
||||||
Short: "List running compose projects",
|
Short: "List running compose projects",
|
||||||
RunE: Adapt(func(ctx context.Context, args []string) error {
|
RunE: Adapt(func(ctx context.Context, args []string) error {
|
||||||
return runList(ctx, backend, opts)
|
return runList(ctx, backend, lsOpts)
|
||||||
}),
|
}),
|
||||||
ValidArgsFunction: noCompletion(),
|
ValidArgsFunction: noCompletion(),
|
||||||
}
|
}
|
||||||
lsCmd.Flags().StringVar(&opts.Format, "format", "pretty", "Format the output. Values: [pretty | json].")
|
lsCmd.Flags().StringVar(&lsOpts.Format, "format", "pretty", "Format the output. Values: [pretty | json].")
|
||||||
lsCmd.Flags().BoolVarP(&opts.Quiet, "quiet", "q", false, "Only display IDs.")
|
lsCmd.Flags().BoolVarP(&lsOpts.Quiet, "quiet", "q", false, "Only display IDs.")
|
||||||
lsCmd.Flags().Var(&opts.Filter, "filter", "Filter output based on conditions provided.")
|
lsCmd.Flags().Var(&lsOpts.Filter, "filter", "Filter output based on conditions provided.")
|
||||||
lsCmd.Flags().BoolVarP(&opts.All, "all", "a", false, "Show all stopped Compose projects")
|
lsCmd.Flags().BoolVarP(&lsOpts.All, "all", "a", false, "Show all stopped Compose projects")
|
||||||
|
|
||||||
return lsCmd
|
return lsCmd
|
||||||
}
|
}
|
||||||
@ -60,18 +60,18 @@ var acceptedListFilters = map[string]bool{
|
|||||||
"name": true,
|
"name": true,
|
||||||
}
|
}
|
||||||
|
|
||||||
func runList(ctx context.Context, backend api.Service, opts lsOptions) error {
|
func runList(ctx context.Context, backend api.Service, lsOpts lsOptions) error {
|
||||||
filters := opts.Filter.Value()
|
filters := lsOpts.Filter.Value()
|
||||||
err := filters.Validate(acceptedListFilters)
|
err := filters.Validate(acceptedListFilters)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
stackList, err := backend.List(ctx, api.ListOptions{All: opts.All})
|
stackList, err := backend.List(ctx, api.ListOptions{All: lsOpts.All})
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
if opts.Quiet {
|
if lsOpts.Quiet {
|
||||||
for _, s := range stackList {
|
for _, s := range stackList {
|
||||||
fmt.Println(s.Name)
|
fmt.Println(s.Name)
|
||||||
}
|
}
|
||||||
@ -90,7 +90,7 @@ func runList(ctx context.Context, backend api.Service, opts lsOptions) error {
|
|||||||
}
|
}
|
||||||
|
|
||||||
view := viewFromStackList(stackList)
|
view := viewFromStackList(stackList)
|
||||||
return formatter.Print(view, opts.Format, os.Stdout, func(w io.Writer) {
|
return formatter.Print(view, lsOpts.Format, os.Stdout, func(w io.Writer) {
|
||||||
for _, stack := range view {
|
for _, stack := range view {
|
||||||
_, _ = fmt.Fprintf(w, "%s\t%s\t%s\n", stack.Name, stack.Status, stack.ConfigFiles)
|
_, _ = fmt.Fprintf(w, "%s\t%s\t%s\n", stack.Name, stack.Status, stack.ConfigFiles)
|
||||||
}
|
}
|
||||||
|
@ -219,7 +219,10 @@ func runUp(ctx context.Context, backend api.Service, createOptions createOptions
|
|||||||
|
|
||||||
func setServiceScale(project *types.Project, name string, replicas uint64) error {
|
func setServiceScale(project *types.Project, name string, replicas uint64) error {
|
||||||
for i, s := range project.Services {
|
for i, s := range project.Services {
|
||||||
if s.Name == name {
|
if s.Name != name {
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
|
||||||
service, err := project.GetService(name)
|
service, err := project.GetService(name)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
@ -231,6 +234,5 @@ func setServiceScale(project *types.Project, name string, replicas uint64) error
|
|||||||
project.Services[i] = service
|
project.Services[i] = service
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
}
|
|
||||||
return fmt.Errorf("unknown service %q", name)
|
return fmt.Errorf("unknown service %q", name)
|
||||||
}
|
}
|
||||||
|
@ -27,6 +27,16 @@ import (
|
|||||||
"github.com/docker/compose/v2/pkg/api"
|
"github.com/docker/compose/v2/pkg/api"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
// LogConsumer consume logs from services and format them
|
||||||
|
type logConsumer struct {
|
||||||
|
ctx context.Context
|
||||||
|
presenters sync.Map // map[string]*presenter
|
||||||
|
width int
|
||||||
|
writer io.Writer
|
||||||
|
color bool
|
||||||
|
prefix bool
|
||||||
|
}
|
||||||
|
|
||||||
// NewLogConsumer creates a new LogConsumer
|
// NewLogConsumer creates a new LogConsumer
|
||||||
func NewLogConsumer(ctx context.Context, w io.Writer, color bool, prefix bool) api.LogConsumer {
|
func NewLogConsumer(ctx context.Context, w io.Writer, color bool, prefix bool) api.LogConsumer {
|
||||||
return &logConsumer{
|
return &logConsumer{
|
||||||
@ -101,16 +111,6 @@ func (l *logConsumer) computeWidth() {
|
|||||||
l.width = width + 1
|
l.width = width + 1
|
||||||
}
|
}
|
||||||
|
|
||||||
// LogConsumer consume logs from services and format them
|
|
||||||
type logConsumer struct {
|
|
||||||
ctx context.Context
|
|
||||||
presenters sync.Map // map[string]*presenter
|
|
||||||
width int
|
|
||||||
writer io.Writer
|
|
||||||
color bool
|
|
||||||
prefix bool
|
|
||||||
}
|
|
||||||
|
|
||||||
type presenter struct {
|
type presenter struct {
|
||||||
colors colorFunc
|
colors colorFunc
|
||||||
name string
|
name string
|
||||||
|
@ -61,7 +61,9 @@ func (s *composeService) build(ctx context.Context, project *types.Project, opti
|
|||||||
}
|
}
|
||||||
|
|
||||||
for _, service := range services {
|
for _, service := range services {
|
||||||
if service.Build != nil {
|
if service.Build == nil {
|
||||||
|
continue
|
||||||
|
}
|
||||||
imageName := getImageName(service, project.Name)
|
imageName := getImageName(service, project.Name)
|
||||||
imagesToBuild = append(imagesToBuild, imageName)
|
imagesToBuild = append(imagesToBuild, imageName)
|
||||||
buildOptions, err := s.toBuildOptions(project, service, imageName, options.SSHs)
|
buildOptions, err := s.toBuildOptions(project, service, imageName, options.SSHs)
|
||||||
@ -84,7 +86,6 @@ func (s *composeService) build(ctx context.Context, project *types.Project, opti
|
|||||||
}
|
}
|
||||||
opts[imageName] = buildOptions
|
opts[imageName] = buildOptions
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
_, err = s.doBuild(ctx, project, opts, options.Progress)
|
_, err = s.doBuild(ctx, project, opts, options.Progress)
|
||||||
if err == nil {
|
if err == nil {
|
||||||
@ -312,11 +313,11 @@ func mergeArgs(m ...types.Mapping) types.Mapping {
|
|||||||
return merged
|
return merged
|
||||||
}
|
}
|
||||||
|
|
||||||
func dockerFilePath(context string, dockerfile string) string {
|
func dockerFilePath(ctxName string, dockerfile string) string {
|
||||||
if urlutil.IsGitURL(context) || filepath.IsAbs(dockerfile) {
|
if urlutil.IsGitURL(ctxName) || filepath.IsAbs(dockerfile) {
|
||||||
return dockerfile
|
return dockerfile
|
||||||
}
|
}
|
||||||
return filepath.Join(context, dockerfile)
|
return filepath.Join(ctxName, dockerfile)
|
||||||
}
|
}
|
||||||
|
|
||||||
func sshAgentProvider(sshKeys types.SSHConfig) (session.Attachable, error) {
|
func sshAgentProvider(sshKeys types.SSHConfig) (session.Attachable, error) {
|
||||||
|
@ -214,7 +214,7 @@ func (s *composeService) doBuildClassicSimpleImage(ctx context.Context, options
|
|||||||
if imageID == "" {
|
if imageID == "" {
|
||||||
return "", errors.Errorf("Server did not provide an image ID. Cannot write %s", options.ImageIDFile)
|
return "", errors.Errorf("Server did not provide an image ID. Cannot write %s", options.ImageIDFile)
|
||||||
}
|
}
|
||||||
if err := os.WriteFile(options.ImageIDFile, []byte(imageID), 0666); err != nil {
|
if err := os.WriteFile(options.ImageIDFile, []byte(imageID), 0o666); err != nil {
|
||||||
return "", err
|
return "", err
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -553,7 +553,7 @@ func (s composeService) getLinks(ctx context.Context, projectName string, servic
|
|||||||
containerName := getCanonicalContainerName(c)
|
containerName := getCanonicalContainerName(c)
|
||||||
links = append(links,
|
links = append(links,
|
||||||
format(containerName, linkName),
|
format(containerName, linkName),
|
||||||
format(containerName, strings.Join([]string{linkServiceName, strconv.Itoa(number)}, Separator)),
|
format(containerName, linkServiceName+Separator+strconv.Itoa(number)),
|
||||||
format(containerName, strings.Join([]string{projectName, linkServiceName, strconv.Itoa(number)}, Separator)),
|
format(containerName, strings.Join([]string{projectName, linkServiceName, strconv.Itoa(number)}, Separator)),
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
@ -263,7 +263,7 @@ func (s *composeService) copyFromContainer(ctx context.Context, containerID, src
|
|||||||
}
|
}
|
||||||
|
|
||||||
preArchive := content
|
preArchive := content
|
||||||
if len(srcInfo.RebaseName) != 0 {
|
if srcInfo.RebaseName != "" {
|
||||||
_, srcBase := archive.SplitPathDirEntry(srcInfo.Path)
|
_, srcBase := archive.SplitPathDirEntry(srcInfo.Path)
|
||||||
preArchive = archive.RebaseArchiveEntries(content, srcBase, srcInfo.RebaseName)
|
preArchive = archive.RebaseArchiveEntries(content, srcBase, srcInfo.RebaseName)
|
||||||
}
|
}
|
||||||
|
@ -893,7 +893,7 @@ func buildContainerSecretMounts(p types.Project, s types.ServiceConfig) ([]mount
|
|||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
|
|
||||||
mount, err := buildMount(p, types.ServiceVolumeConfig{
|
mnt, err := buildMount(p, types.ServiceVolumeConfig{
|
||||||
Type: types.VolumeTypeBind,
|
Type: types.VolumeTypeBind,
|
||||||
Source: definedSecret.File,
|
Source: definedSecret.File,
|
||||||
Target: target,
|
Target: target,
|
||||||
@ -902,7 +902,7 @@ func buildContainerSecretMounts(p types.Project, s types.ServiceConfig) ([]mount
|
|||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
mounts[target] = mount
|
mounts[target] = mnt
|
||||||
}
|
}
|
||||||
values := make([]mount.Mount, 0, len(mounts))
|
values := make([]mount.Mount, 0, len(mounts))
|
||||||
for _, v := range mounts {
|
for _, v := range mounts {
|
||||||
@ -911,8 +911,8 @@ func buildContainerSecretMounts(p types.Project, s types.ServiceConfig) ([]mount
|
|||||||
return values, nil
|
return values, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func isUnixAbs(path string) bool {
|
func isUnixAbs(p string) bool {
|
||||||
return strings.HasPrefix(path, "/")
|
return strings.HasPrefix(p, "/")
|
||||||
}
|
}
|
||||||
|
|
||||||
func buildMount(project types.Project, volume types.ServiceVolumeConfig) (mount.Mount, error) {
|
func buildMount(project types.Project, volume types.ServiceVolumeConfig) (mount.Mount, error) {
|
||||||
|
@ -22,7 +22,6 @@ import (
|
|||||||
"sort"
|
"sort"
|
||||||
"testing"
|
"testing"
|
||||||
|
|
||||||
"github.com/compose-spec/compose-go/types"
|
|
||||||
composetypes "github.com/compose-spec/compose-go/types"
|
composetypes "github.com/compose-spec/compose-go/types"
|
||||||
"github.com/docker/compose/v2/pkg/api"
|
"github.com/docker/compose/v2/pkg/api"
|
||||||
moby "github.com/docker/docker/api/types"
|
moby "github.com/docker/docker/api/types"
|
||||||
@ -66,17 +65,17 @@ func TestBuildVolumeMount(t *testing.T) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func TestServiceImageName(t *testing.T) {
|
func TestServiceImageName(t *testing.T) {
|
||||||
assert.Equal(t, getImageName(types.ServiceConfig{Image: "myImage"}, "myProject"), "myImage")
|
assert.Equal(t, getImageName(composetypes.ServiceConfig{Image: "myImage"}, "myProject"), "myImage")
|
||||||
assert.Equal(t, getImageName(types.ServiceConfig{Name: "aService"}, "myProject"), "myProject_aService")
|
assert.Equal(t, getImageName(composetypes.ServiceConfig{Name: "aService"}, "myProject"), "myProject_aService")
|
||||||
}
|
}
|
||||||
|
|
||||||
func TestPrepareNetworkLabels(t *testing.T) {
|
func TestPrepareNetworkLabels(t *testing.T) {
|
||||||
project := types.Project{
|
project := composetypes.Project{
|
||||||
Name: "myProject",
|
Name: "myProject",
|
||||||
Networks: types.Networks(map[string]types.NetworkConfig{"skynet": {}}),
|
Networks: composetypes.Networks(map[string]composetypes.NetworkConfig{"skynet": {}}),
|
||||||
}
|
}
|
||||||
prepareNetworks(&project)
|
prepareNetworks(&project)
|
||||||
assert.DeepEqual(t, project.Networks["skynet"].Labels, types.Labels(map[string]string{
|
assert.DeepEqual(t, project.Networks["skynet"].Labels, composetypes.Labels(map[string]string{
|
||||||
"com.docker.compose.network": "skynet",
|
"com.docker.compose.network": "skynet",
|
||||||
"com.docker.compose.project": "myProject",
|
"com.docker.compose.project": "myProject",
|
||||||
"com.docker.compose.version": api.ComposeVersion,
|
"com.docker.compose.version": api.ComposeVersion,
|
||||||
|
@ -106,9 +106,9 @@ func combinedStatus(statuses []string) string {
|
|||||||
for _, status := range keys {
|
for _, status := range keys {
|
||||||
nb := nbByStatus[status]
|
nb := nbByStatus[status]
|
||||||
if result != "" {
|
if result != "" {
|
||||||
result = result + ", "
|
result += ", "
|
||||||
}
|
}
|
||||||
result = result + fmt.Sprintf("%s(%d)", status, nb)
|
result += fmt.Sprintf("%s(%d)", status, nb)
|
||||||
}
|
}
|
||||||
return result
|
return result
|
||||||
}
|
}
|
||||||
|
@ -32,6 +32,11 @@ type logPrinter interface {
|
|||||||
Cancel()
|
Cancel()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
type printer struct {
|
||||||
|
queue chan api.ContainerEvent
|
||||||
|
consumer api.LogConsumer
|
||||||
|
}
|
||||||
|
|
||||||
// newLogPrinter builds a LogPrinter passing containers logs to LogConsumer
|
// newLogPrinter builds a LogPrinter passing containers logs to LogConsumer
|
||||||
func newLogPrinter(consumer api.LogConsumer) logPrinter {
|
func newLogPrinter(consumer api.LogConsumer) logPrinter {
|
||||||
queue := make(chan api.ContainerEvent)
|
queue := make(chan api.ContainerEvent)
|
||||||
@ -48,11 +53,6 @@ func (p *printer) Cancel() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
type printer struct {
|
|
||||||
queue chan api.ContainerEvent
|
|
||||||
consumer api.LogConsumer
|
|
||||||
}
|
|
||||||
|
|
||||||
func (p *printer) HandleEvent(event api.ContainerEvent) {
|
func (p *printer) HandleEvent(event api.ContainerEvent) {
|
||||||
p.queue <- event
|
p.queue <- event
|
||||||
}
|
}
|
||||||
|
@ -57,7 +57,7 @@ func createTar(env string, config types.ServiceSecretConfig) (bytes.Buffer, erro
|
|||||||
value := []byte(env)
|
value := []byte(env)
|
||||||
b := bytes.Buffer{}
|
b := bytes.Buffer{}
|
||||||
tarWriter := tar.NewWriter(&b)
|
tarWriter := tar.NewWriter(&b)
|
||||||
mode := uint32(0400)
|
mode := uint32(0o400)
|
||||||
if config.Mode != nil {
|
if config.Mode != nil {
|
||||||
mode = *config.Mode
|
mode = *config.Mode
|
||||||
}
|
}
|
||||||
|
@ -46,13 +46,16 @@ var (
|
|||||||
|
|
||||||
// DockerScanExecutableName is the OS dependent Docker CLI binary name
|
// DockerScanExecutableName is the OS dependent Docker CLI binary name
|
||||||
DockerScanExecutableName = "docker-scan"
|
DockerScanExecutableName = "docker-scan"
|
||||||
|
|
||||||
|
// WindowsExecutableSuffix is the Windows executable suffix
|
||||||
|
WindowsExecutableSuffix = ".exe"
|
||||||
)
|
)
|
||||||
|
|
||||||
func init() {
|
func init() {
|
||||||
if runtime.GOOS == "windows" {
|
if runtime.GOOS == "windows" {
|
||||||
DockerExecutableName = DockerExecutableName + ".exe"
|
DockerExecutableName += WindowsExecutableSuffix
|
||||||
DockerComposeExecutableName = DockerComposeExecutableName + ".exe"
|
DockerComposeExecutableName += WindowsExecutableSuffix
|
||||||
DockerScanExecutableName = DockerScanExecutableName + ".exe"
|
DockerScanExecutableName += WindowsExecutableSuffix
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -124,7 +127,7 @@ func initializePlugins(t testing.TB, configDir string) {
|
|||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
require.NoError(t, os.MkdirAll(filepath.Join(configDir, "cli-plugins"), 0755),
|
require.NoError(t, os.MkdirAll(filepath.Join(configDir, "cli-plugins"), 0o755),
|
||||||
"Failed to create cli-plugins directory")
|
"Failed to create cli-plugins directory")
|
||||||
composePlugin, err := findExecutable(DockerComposeExecutableName, []string{"../../bin", "../../../bin"})
|
composePlugin, err := findExecutable(DockerComposeExecutableName, []string{"../../bin", "../../../bin"})
|
||||||
if os.IsNotExist(err) {
|
if os.IsNotExist(err) {
|
||||||
@ -172,7 +175,7 @@ func CopyFile(t testing.TB, sourceFile string, destinationFile string) {
|
|||||||
//nolint: errcheck
|
//nolint: errcheck
|
||||||
defer src.Close()
|
defer src.Close()
|
||||||
|
|
||||||
dst, err := os.OpenFile(destinationFile, os.O_RDWR|os.O_CREATE|os.O_TRUNC, 0755)
|
dst, err := os.OpenFile(destinationFile, os.O_RDWR|os.O_CREATE|os.O_TRUNC, 0o755)
|
||||||
require.NoError(t, err, "Failed to open destination file: %s", destinationFile)
|
require.NoError(t, err, "Failed to open destination file: %s", destinationFile)
|
||||||
//nolint: errcheck
|
//nolint: errcheck
|
||||||
defer dst.Close()
|
defer dst.Close()
|
||||||
@ -213,7 +216,7 @@ func (c *CLI) NewCmdWithEnv(envvars []string, command string, args ...string) ic
|
|||||||
|
|
||||||
// MetricsSocket get the path where test metrics will be sent
|
// MetricsSocket get the path where test metrics will be sent
|
||||||
func (c *CLI) MetricsSocket() string {
|
func (c *CLI) MetricsSocket() string {
|
||||||
return filepath.Join(c.ConfigDir, "./docker-cli.sock")
|
return filepath.Join(c.ConfigDir, "docker-cli.sock")
|
||||||
}
|
}
|
||||||
|
|
||||||
// NewDockerCmd creates a docker cmd without running it
|
// NewDockerCmd creates a docker cmd without running it
|
||||||
|
@ -71,9 +71,9 @@ func TestDisplayScanMessageAfterBuild(t *testing.T) {
|
|||||||
})
|
})
|
||||||
|
|
||||||
t.Run("do not display if scan already invoked", func(t *testing.T) {
|
t.Run("do not display if scan already invoked", func(t *testing.T) {
|
||||||
_ = os.MkdirAll(filepath.Join(c.ConfigDir, "scan"), 0755)
|
_ = os.MkdirAll(filepath.Join(c.ConfigDir, "scan"), 0o755)
|
||||||
scanConfigFile := filepath.Join(c.ConfigDir, "scan", "config.json")
|
scanConfigFile := filepath.Join(c.ConfigDir, "scan", "config.json")
|
||||||
err := os.WriteFile(scanConfigFile, []byte(`{"optin":true}`), 0644)
|
err := os.WriteFile(scanConfigFile, []byte(`{"optin":true}`), 0o644)
|
||||||
assert.NilError(t, err)
|
assert.NilError(t, err)
|
||||||
|
|
||||||
res := c.RunDockerCmd(t, "build", "-t", "test-image-scan-msg", "fixtures/simple-build-test/nginx-build")
|
res := c.RunDockerCmd(t, "build", "-t", "test-image-scan-msg", "fixtures/simple-build-test/nginx-build")
|
||||||
|
@ -44,99 +44,99 @@ type Event struct {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// ErrorMessageEvent creates a new Error Event with message
|
// ErrorMessageEvent creates a new Error Event with message
|
||||||
func ErrorMessageEvent(ID string, msg string) Event {
|
func ErrorMessageEvent(id string, msg string) Event {
|
||||||
return NewEvent(ID, Error, msg)
|
return NewEvent(id, Error, msg)
|
||||||
}
|
}
|
||||||
|
|
||||||
// ErrorEvent creates a new Error Event
|
// ErrorEvent creates a new Error Event
|
||||||
func ErrorEvent(ID string) Event {
|
func ErrorEvent(id string) Event {
|
||||||
return NewEvent(ID, Error, "Error")
|
return NewEvent(id, Error, "Error")
|
||||||
}
|
}
|
||||||
|
|
||||||
// CreatingEvent creates a new Create in progress Event
|
// CreatingEvent creates a new Create in progress Event
|
||||||
func CreatingEvent(ID string) Event {
|
func CreatingEvent(id string) Event {
|
||||||
return NewEvent(ID, Working, "Creating")
|
return NewEvent(id, Working, "Creating")
|
||||||
}
|
}
|
||||||
|
|
||||||
// StartingEvent creates a new Starting in progress Event
|
// StartingEvent creates a new Starting in progress Event
|
||||||
func StartingEvent(ID string) Event {
|
func StartingEvent(id string) Event {
|
||||||
return NewEvent(ID, Working, "Starting")
|
return NewEvent(id, Working, "Starting")
|
||||||
}
|
}
|
||||||
|
|
||||||
// StartedEvent creates a new Started in progress Event
|
// StartedEvent creates a new Started in progress Event
|
||||||
func StartedEvent(ID string) Event {
|
func StartedEvent(id string) Event {
|
||||||
return NewEvent(ID, Done, "Started")
|
return NewEvent(id, Done, "Started")
|
||||||
}
|
}
|
||||||
|
|
||||||
// Waiting creates a new waiting event
|
// Waiting creates a new waiting event
|
||||||
func Waiting(ID string) Event {
|
func Waiting(id string) Event {
|
||||||
return NewEvent(ID, Working, "Waiting")
|
return NewEvent(id, Working, "Waiting")
|
||||||
}
|
}
|
||||||
|
|
||||||
// Healthy creates a new healthy event
|
// Healthy creates a new healthy event
|
||||||
func Healthy(ID string) Event {
|
func Healthy(id string) Event {
|
||||||
return NewEvent(ID, Done, "Healthy")
|
return NewEvent(id, Done, "Healthy")
|
||||||
}
|
}
|
||||||
|
|
||||||
// Exited creates a new exited event
|
// Exited creates a new exited event
|
||||||
func Exited(ID string) Event {
|
func Exited(id string) Event {
|
||||||
return NewEvent(ID, Done, "Exited")
|
return NewEvent(id, Done, "Exited")
|
||||||
}
|
}
|
||||||
|
|
||||||
// RestartingEvent creates a new Restarting in progress Event
|
// RestartingEvent creates a new Restarting in progress Event
|
||||||
func RestartingEvent(ID string) Event {
|
func RestartingEvent(id string) Event {
|
||||||
return NewEvent(ID, Working, "Restarting")
|
return NewEvent(id, Working, "Restarting")
|
||||||
}
|
}
|
||||||
|
|
||||||
// RestartedEvent creates a new Restarted in progress Event
|
// RestartedEvent creates a new Restarted in progress Event
|
||||||
func RestartedEvent(ID string) Event {
|
func RestartedEvent(id string) Event {
|
||||||
return NewEvent(ID, Done, "Restarted")
|
return NewEvent(id, Done, "Restarted")
|
||||||
}
|
}
|
||||||
|
|
||||||
// RunningEvent creates a new Running in progress Event
|
// RunningEvent creates a new Running in progress Event
|
||||||
func RunningEvent(ID string) Event {
|
func RunningEvent(id string) Event {
|
||||||
return NewEvent(ID, Done, "Running")
|
return NewEvent(id, Done, "Running")
|
||||||
}
|
}
|
||||||
|
|
||||||
// CreatedEvent creates a new Created (done) Event
|
// CreatedEvent creates a new Created (done) Event
|
||||||
func CreatedEvent(ID string) Event {
|
func CreatedEvent(id string) Event {
|
||||||
return NewEvent(ID, Done, "Created")
|
return NewEvent(id, Done, "Created")
|
||||||
}
|
}
|
||||||
|
|
||||||
// StoppingEvent creates a new Stopping in progress Event
|
// StoppingEvent creates a new Stopping in progress Event
|
||||||
func StoppingEvent(ID string) Event {
|
func StoppingEvent(id string) Event {
|
||||||
return NewEvent(ID, Working, "Stopping")
|
return NewEvent(id, Working, "Stopping")
|
||||||
}
|
}
|
||||||
|
|
||||||
// StoppedEvent creates a new Stopping in progress Event
|
// StoppedEvent creates a new Stopping in progress Event
|
||||||
func StoppedEvent(ID string) Event {
|
func StoppedEvent(id string) Event {
|
||||||
return NewEvent(ID, Done, "Stopped")
|
return NewEvent(id, Done, "Stopped")
|
||||||
}
|
}
|
||||||
|
|
||||||
// KillingEvent creates a new Killing in progress Event
|
// KillingEvent creates a new Killing in progress Event
|
||||||
func KillingEvent(ID string) Event {
|
func KillingEvent(id string) Event {
|
||||||
return NewEvent(ID, Working, "Killing")
|
return NewEvent(id, Working, "Killing")
|
||||||
}
|
}
|
||||||
|
|
||||||
// KilledEvent creates a new Killed in progress Event
|
// KilledEvent creates a new Killed in progress Event
|
||||||
func KilledEvent(ID string) Event {
|
func KilledEvent(id string) Event {
|
||||||
return NewEvent(ID, Done, "Killed")
|
return NewEvent(id, Done, "Killed")
|
||||||
}
|
}
|
||||||
|
|
||||||
// RemovingEvent creates a new Removing in progress Event
|
// RemovingEvent creates a new Removing in progress Event
|
||||||
func RemovingEvent(ID string) Event {
|
func RemovingEvent(id string) Event {
|
||||||
return NewEvent(ID, Working, "Removing")
|
return NewEvent(id, Working, "Removing")
|
||||||
}
|
}
|
||||||
|
|
||||||
// RemovedEvent creates a new removed (done) Event
|
// RemovedEvent creates a new removed (done) Event
|
||||||
func RemovedEvent(ID string) Event {
|
func RemovedEvent(id string) Event {
|
||||||
return NewEvent(ID, Done, "Removed")
|
return NewEvent(id, Done, "Removed")
|
||||||
}
|
}
|
||||||
|
|
||||||
// NewEvent new event
|
// NewEvent new event
|
||||||
func NewEvent(ID string, status EventStatus, statusText string) Event {
|
func NewEvent(id string, status EventStatus, statusText string) Event {
|
||||||
return Event{
|
return Event{
|
||||||
ID: ID,
|
ID: id,
|
||||||
Status: status,
|
Status: status,
|
||||||
StatusText: statusText,
|
StatusText: statusText,
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user