Skip to content

Commit 06d90a9

Browse files
rohanKanojiapraveenkumar
authored andcommitted
fix (daemon) : Refine error message for clarity when daemon already started (#2696)
Updated the error message as suggested in the linked issue to make it more user friendly. Signed-off-by: Rohan Kumar <[email protected]>
1 parent 1f358e8 commit 06d90a9

File tree

2 files changed

+48
-6
lines changed

2 files changed

+48
-6
lines changed

cmd/crc/cmd/daemon.go

+17-6
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,16 @@ import (
1313
"syscall"
1414
"time"
1515

16+
"github.com/crc-org/crc/v2/pkg/crc/api/client"
17+
"github.com/crc-org/crc/v2/pkg/crc/daemonclient"
18+
1619
"github.com/containers/gvisor-tap-vsock/pkg/types"
1720
"github.com/containers/gvisor-tap-vsock/pkg/virtualnetwork"
1821
"github.com/crc-org/crc/v2/pkg/crc/adminhelper"
1922
"github.com/crc-org/crc/v2/pkg/crc/api"
2023
"github.com/crc-org/crc/v2/pkg/crc/api/events"
2124
crcConfig "github.com/crc-org/crc/v2/pkg/crc/config"
2225
"github.com/crc-org/crc/v2/pkg/crc/constants"
23-
"github.com/crc-org/crc/v2/pkg/crc/daemonclient"
2426
"github.com/crc-org/crc/v2/pkg/crc/logging"
2527
"github.com/docker/go-units"
2628
"github.com/gorilla/handlers"
@@ -29,18 +31,27 @@ import (
2931
"github.com/spf13/cobra"
3032
)
3133

32-
var watchdog bool
34+
var (
35+
watchdog bool
36+
daemonVersionSupplier func() (client.VersionResult, error)
37+
)
3338

3439
func init() {
40+
daemonVersionSupplier = func() (client.VersionResult, error) {
41+
return daemonclient.New().APIClient.Version()
42+
}
3543
daemonCmd.Flags().BoolVar(&watchdog, "watchdog", false, "Monitor stdin and shutdown the daemon if stdin is closed")
3644
rootCmd.AddCommand(daemonCmd)
3745
}
3846

39-
const hostVirtualIP = "192.168.127.254"
47+
const (
48+
hostVirtualIP = "192.168.127.254"
49+
ErrDaemonAlreadyRunning = "daemon has been started in the background"
50+
)
4051

4152
func checkDaemonVersion() (bool, error) {
42-
if _, err := daemonclient.New().APIClient.Version(); err == nil {
43-
return true, errors.New("daemon is already running")
53+
if _, err := daemonVersionSupplier(); err == nil {
54+
return true, errors.New(ErrDaemonAlreadyRunning)
4455
}
4556
return false, nil
4657
}
@@ -52,7 +63,7 @@ var daemonCmd = &cobra.Command{
5263
Hidden: true,
5364
RunE: func(_ *cobra.Command, _ []string) error {
5465
if running, _ := checkIfDaemonIsRunning(); running {
55-
return errors.New("daemon is already running")
66+
return errors.New(ErrDaemonAlreadyRunning)
5667
}
5768

5869
virtualNetworkConfig := types.Configuration{

cmd/crc/cmd/daemon_test.go

+31
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,14 @@ package cmd
22

33
import (
44
"bytes"
5+
"errors"
56
"net/http"
67
"net/url"
78
"os"
89
"testing"
910

11+
"github.com/crc-org/crc/v2/pkg/crc/api/client"
12+
1013
"github.com/sirupsen/logrus"
1114
"github.com/stretchr/testify/assert"
1215
)
@@ -53,3 +56,31 @@ func TestLogResponseBodyLogsNothingWhenResponseSuccessful(t *testing.T) {
5356
// Then
5457
assert.Equal(t, logBuffer.Len(), 0)
5558
}
59+
60+
func TestCheckDaemonVersion_WhenNoErrorWhileFetchingVersion_ThenThrowDaemonAlreadyStartedError(t *testing.T) {
61+
// Given
62+
daemonVersionSupplier = func() (client.VersionResult, error) {
63+
return client.VersionResult{}, nil
64+
}
65+
66+
// When
67+
result, err := checkDaemonVersion()
68+
69+
// Then
70+
assert.Equal(t, true, result)
71+
assert.Errorf(t, err, "daemon has been started in the background")
72+
}
73+
74+
func TestCheckDaemonVersion_WhenErrorReturnedWhileFetchingVersion_ThenReturnFalse(t *testing.T) {
75+
// Given
76+
daemonVersionSupplier = func() (client.VersionResult, error) {
77+
return client.VersionResult{}, errors.New("daemon not started")
78+
}
79+
80+
// When
81+
result, err := checkDaemonVersion()
82+
83+
// Then
84+
assert.NoError(t, err)
85+
assert.Equal(t, false, result)
86+
}

0 commit comments

Comments
 (0)