-
Notifications
You must be signed in to change notification settings - Fork 201
/
Copy pathcontext_test.go
130 lines (117 loc) · 3.94 KB
/
context_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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
// Copyright (c) 2009-present, Alibaba Cloud All rights reserved.
//
// 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 cli
import (
"bytes"
"testing"
"github.com/stretchr/testify/assert"
"github.com/aliyun/aliyun-cli/i18n"
)
var cmd = &Command{
Name: "oss",
flags: NewFlagSet(),
}
func TestHelpFlag(t *testing.T) {
fs := NewFlagSet()
fs.Add(NewHelpFlag())
f := HelpFlag(fs)
assert.Equal(t, &Flag{Name: "help", Short: i18n.T("print help", "打印帮助信息"), AssignedMode: AssignedNone}, f)
}
func TestNewHelpFlag(t *testing.T) {
f := NewHelpFlag()
assert.Equal(t, &Flag{Name: "help", Short: i18n.T("print help", "打印帮助信息"), AssignedMode: AssignedNone}, f)
}
func TestContext_SetUnknownFlags(t *testing.T) {
w := new(bytes.Buffer)
stderr := new(bytes.Buffer)
ctx := NewCommandContext(w, stderr)
ctx.SetUnknownFlags(NewFlagSet())
assert.NotNil(t, ctx.unknownFlags)
}
func TestNewCommandContext(t *testing.T) {
w := new(bytes.Buffer)
stderr := new(bytes.Buffer)
ctx := NewCommandContext(w, stderr)
assert.Equal(t, &Context{
flags: NewFlagSet(),
unknownFlags: nil,
writer: w,
stderr: stderr,
help: false,
command: nil,
completion: nil,
}, ctx)
}
func TestCtx(t *testing.T) {
w := new(bytes.Buffer)
stderr := new(bytes.Buffer)
ctx := NewCommandContext(w, stderr)
assert.False(t, ctx.IsHelp())
assert.Nil(t, ctx.Command())
assert.Nil(t, ctx.Completion())
assert.Equal(t, ctx.flags, ctx.Flags())
assert.Equal(t, w, ctx.Writer())
assert.Nil(t, ctx.UnknownFlags())
ctx.SetCompletion(&Completion{Current: "M", Args: []string{"GOOD", "BAD"}, line: "MrX", point: 2})
assert.Equal(t, &Completion{Current: "M", Args: []string{"GOOD", "BAD"}, line: "MrX", point: 2}, ctx.Completion())
//EnterCommand
ctx.EnterCommand(cmd)
assert.Nil(t, ctx.unknownFlags)
ctx.EnterCommand(cmd)
assert.Equal(t, &Flag{Name: "help", Short: i18n.T("print help", "打印帮助信息"), AssignedMode: AssignedNone}, ctx.flags.Get("help"))
}
func TestCheckFlags(t *testing.T) {
w := new(bytes.Buffer)
stderr := new(bytes.Buffer)
ctx := NewCommandContext(w, stderr)
ctx.flags.AddByName("MrX")
assert.Nil(t, ctx.CheckFlags())
ctx.flags.flags[0].Required = true
assert.EqualError(t, ctx.CheckFlags(), "missing flag --MrX")
ctx.flags.flags[0].assigned = true
ctx.flags.flags[0].Fields = []Field{{Key: "m", Required: true}}
assert.EqualError(t, ctx.CheckFlags(), "bad flag format --MrX with field m= required")
ctx.flags.flags[0].Fields[0].Required = false
ctx.flags.flags[0].ExcludeWith = []string{"MrX"}
ctx.flags.flags[0].value = "M"
assert.EqualError(t, ctx.CheckFlags(), "flag --MrX is exclusive with --MrX")
}
func TestDetectFlag(t *testing.T) {
w := new(bytes.Buffer)
stderr := new(bytes.Buffer)
ctx := NewCommandContext(w, stderr)
ctx.flags.AddByName("MrX")
f, err := ctx.detectFlag("mrx")
assert.Nil(t, f)
assert.NotNil(t, err)
f, err = ctx.detectFlag("MrX")
assert.NotNil(t, f)
assert.Nil(t, err)
ctx.unknownFlags = NewFlagSet()
f, err = ctx.detectFlag("mrx")
assert.NotNil(t, f)
assert.Nil(t, err)
}
func TestDetectFlagByShorthand(t *testing.T) {
w := new(bytes.Buffer)
stderr := new(bytes.Buffer)
ctx := NewCommandContext(w, stderr)
ctx.flags.Add(&Flag{Name: "profile", Shorthand: 'p'})
f, err := ctx.detectFlagByShorthand('p')
assert.Equal(t, &Flag{Name: "profile", Shorthand: 'p'}, f)
assert.Nil(t, err)
f, err = ctx.detectFlagByShorthand('c')
assert.Nil(t, f)
assert.EqualError(t, err, "unknown flag -c")
}