-
Notifications
You must be signed in to change notification settings - Fork 1
/
examples_test.go
90 lines (80 loc) · 1.9 KB
/
examples_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
package main
import (
"os"
"testing"
"github.com/zakuro9715/z/cli"
)
func init() {
os.Setenv("ZCONFIG", "examples/hello.yaml")
}
func BenchmarkHelloExapmle(b *testing.B) {
os.Setenv("ZSILENT", "1")
b.ResetTimer()
for i := 0; i < b.N; i++ {
cli.Main([]string{})
cli.Main([]string{"arg"})
cli.Main([]string{"hello"})
cli.Main([]string{"hello", "world"})
cli.Main([]string{"hello.world"})
cli.Main([]string{"hello", "script"})
cli.Main([]string{"hello", "python"})
os.Unsetenv("MESSAGE")
cli.Main([]string{"echo.env.message"})
os.Setenv("MESSAGE", "system")
cli.Main([]string{"echo.env.message"})
os.Unsetenv("MESSAGE")
cli.Main([]string{"echo", "env", "message2"})
os.Setenv("MESSAGE", "system")
cli.Main([]string{"echo", "env", "message2"})
cli.Main([]string{"helloworld", "alias"})
}
}
func ExampleHello() {
cli.Main([]string{})
cli.Main([]string{"arg"})
cli.Main([]string{"hello"})
cli.Main([]string{"hello", "world"})
cli.Main([]string{"hello.world"})
cli.Main([]string{"hello", "script"})
cli.Main([]string{"hello", "script", "with_path"})
cli.Main([]string{"hello", "python"})
// Output:
// hello world
// hello world arg
// hello you
// hello world
// hello world
// hello script
// hello script
// hello python
}
func ExampleEcho() {
cli.Main([]string{"echo", "hello"})
cli.Main([]string{"echo", "twice", "hi"})
// Output:
// hello
// hi
// hi
}
func ExampleVarAndEnv() {
cli.Main([]string{"echo.var.value"})
os.Unsetenv("MESSAGE")
cli.Main([]string{"echo.env.message"})
os.Setenv("MESSAGE", "system")
cli.Main([]string{"echo.env.message"})
os.Unsetenv("MESSAGE")
cli.Main([]string{"echo", "env", "message2"})
os.Setenv("MESSAGE", "system")
cli.Main([]string{"echo", "env", "message2"})
// Output:
// value
// message
// system
// message2
// system
}
func ExampleAlias() {
cli.Main([]string{"helloworld", "alias"})
// Output:
// hello world alias
}