-
Notifications
You must be signed in to change notification settings - Fork 0
/
arguments_test.go
77 lines (64 loc) · 1.25 KB
/
arguments_test.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
// SPDX-FileCopyrightText: 2024 Comcast Cable Communications Management, LLC
// SPDX-License-Identifier: Apache-2.0
package clifx
import (
"os"
"testing"
"github.com/stretchr/testify/suite"
"go.uber.org/fx"
)
type ArgumentsTestSuite struct {
suite.Suite
}
func (suite *ArgumentsTestSuite) TestGetArguments() {
suite.Run("Empty", func() {
suite.Equal(
Arguments{},
getArguments(Arguments{}),
)
})
suite.Run("NotEmpty", func() {
custom := Arguments{
"-f", "somefile.txt",
}
suite.Equal(custom, getArguments(custom))
})
suite.Run("Empty", func() {
suite.Equal(
Arguments(os.Args[1:]),
getArguments(nil),
)
})
}
func (suite *ArgumentsTestSuite) TestSupplyArguments() {
suite.Run("Empty", func() {
var args Arguments
app := fx.New(
fx.NopLogger,
SupplyArguments(),
fx.Populate(&args),
)
suite.NoError(app.Err())
suite.NotNil(args)
suite.Empty(args)
})
suite.Run("NotEmpty", func() {
var args Arguments
app := fx.New(
fx.NopLogger,
SupplyArguments(
"-f", "somefile.yml",
),
fx.Populate(&args),
)
suite.NoError(app.Err())
suite.NotNil(args)
suite.Equal(
Arguments{"-f", "somefile.yml"},
args,
)
})
}
func TestArguments(t *testing.T) {
suite.Run(t, new(ArgumentsTestSuite))
}