This repository has been archived by the owner on Jan 16, 2021. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 139
/
list_test.go
86 lines (73 loc) · 2.71 KB
/
list_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
package main
import (
"io/ioutil"
"strings"
"testing"
"github.com/ParsePlatform/parse-cli/parsecli"
"github.com/facebookgo/ensure"
)
func newListCmdHarness(t testing.TB) (*parsecli.Harness, *listCmd) {
h := parsecli.NewHarness(t)
l := &listCmd{}
return h, l
}
func TestPrintListOneAppNoDefaultKey(t *testing.T) {
t.Parallel()
conf := &parsecli.ParseConfig{Applications: map[string]*parsecli.ParseAppConfig{"first": {}}}
h := parsecli.NewHarness(t)
defer h.Stop()
conf.PrettyPrintApps(h.Env)
ensure.DeepEqual(t, h.Out.String(), "The following apps are associated with Cloud Code in the current directory:\n first\n")
}
func TestPrintListOneAppWithDefaultKey(t *testing.T) {
t.Parallel()
conf := &parsecli.ParseConfig{Applications: map[string]*parsecli.ParseAppConfig{"first": {}}}
conf.Applications[parsecli.DefaultKey] = &parsecli.ParseAppConfig{Link: "first"}
h := parsecli.NewHarness(t)
defer h.Stop()
conf.PrettyPrintApps(h.Env)
ensure.DeepEqual(t, h.Out.String(), "The following apps are associated with Cloud Code in the current directory:\n* first\n")
}
func TestPrintListTwoAppsWithDefaultKey(t *testing.T) {
t.Parallel()
conf := &parsecli.ParseConfig{Applications: map[string]*parsecli.ParseAppConfig{"first": {}, "second": {}}}
conf.Applications[parsecli.DefaultKey] = &parsecli.ParseAppConfig{Link: "first"}
h := parsecli.NewHarness(t)
defer h.Stop()
conf.PrettyPrintApps(h.Env)
ensure.DeepEqual(t, h.Out.String(), "The following apps are associated with Cloud Code in the current directory:\n* first\n second\n")
}
func TestPrintListTwoAppsWithLinks(t *testing.T) {
t.Parallel()
conf := &parsecli.ParseConfig{Applications: map[string]*parsecli.ParseAppConfig{"first": {}, "second": {Link: "first"}}}
conf.Applications[parsecli.DefaultKey] = &parsecli.ParseAppConfig{Link: "first"}
h := parsecli.NewHarness(t)
defer h.Stop()
conf.PrettyPrintApps(h.Env)
ensure.DeepEqual(t, h.Out.String(), "The following apps are associated with Cloud Code in the current directory:\n* first\n second -> first\n")
}
func TestPrintListNoConfig(t *testing.T) {
t.Parallel()
h, l := newListCmdHarness(t)
h.MakeEmptyRoot()
defer h.Stop()
ensure.NotNil(t, l.printListOfApps(h.Env))
ensure.DeepEqual(t, h.Out.String(), "")
}
func TestPrintListNoApps(t *testing.T) {
t.Parallel()
h, l := newListCmdHarness(t)
h.MakeEmptyRoot()
defer h.Stop()
parsecli.CloneSampleCloudCode(h.Env, true)
ensure.Nil(t, l.printListOfApps(h.Env))
}
func TestRunListCmd(t *testing.T) {
t.Parallel()
h, _ := parsecli.NewAppHarness(t)
defer h.Stop()
l := &listCmd{}
h.Env.In = ioutil.NopCloser(strings.NewReader("email\npassword\n"))
ensure.Nil(t, l.run(h.Env, []string{"A"}))
ensure.StringContains(t, h.Out.String(), `Properties of the app "A"`)
}