diff --git a/cmd/compose/events.go b/cmd/compose/events.go index 7f8a4a77df..ff1fb86aa7 100644 --- a/cmd/compose/events.go +++ b/cmd/compose/events.go @@ -57,7 +57,7 @@ func eventsCommand(p *ProjectOptions, dockerCli command.Cli, backendOptions *Bac } func runEvents(ctx context.Context, dockerCli command.Cli, backendOptions *BackendOptions, opts eventsOpts, services []string) error { - name, err := opts.toProjectName(ctx, dockerCli) + _, name, err := opts.projectOrName(ctx, dockerCli, services...) if err != nil { return err } diff --git a/pkg/e2e/events_test.go b/pkg/e2e/events_test.go new file mode 100644 index 0000000000..1c9b19334a --- /dev/null +++ b/pkg/e2e/events_test.go @@ -0,0 +1,33 @@ +/* + 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 e2e + +import ( + "testing" + "time" + + "gotest.tools/v3/icmd" +) + +func TestEventsUnknownService(t *testing.T) { + c := NewParallelCLI(t) + + cmd := c.NewDockerComposeCmd(t, "-f", "./fixtures/simple-composefile/compose.yaml", "events", "not-a-service") + cmd.Timeout = 10 * time.Second + res := icmd.RunCmd(cmd) + res.Assert(t, icmd.Expected{ExitCode: 1, Err: "no such service: not-a-service"}) +}