-
Notifications
You must be signed in to change notification settings - Fork 3
/
spm_test.go
134 lines (117 loc) · 5.11 KB
/
spm_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
131
132
133
134
package main
import (
"bytes"
"fmt"
"os"
"strings"
"testing"
"github.com/stretchr/testify/assert"
)
const (
FAILURE_PACKAGE_YML_BLANK = "./test/fixture/blank.yml"
FAILURE_PACKAGE_YML_REPO_BLANK = "./test/fixture/repo-blank.yml"
SUCCESS_PACKAGE_TOML = "./test/fixture/package.toml"
)
func before() (*CLI, *bytes.Buffer, *bytes.Buffer) {
outStream, errStream := new(bytes.Buffer), new(bytes.Buffer)
cli := NewCli()
cli.logger.Reset(outStream, errStream)
return cli, outStream, errStream
}
func TestInstallSuccess(t *testing.T) {
cli, outStream, _ := before()
args := strings.Split(fmt.Sprintf("spm install %s -u %s -p %s", os.Getenv("REPOSITORY"), os.Getenv("USERNAME"), os.Getenv("PASSWORD")), " ")
cli.Run(args)
outString := outStream.String()
assert.Contains(t, outString, fmt.Sprintf("Clone repository from https://github.com/%s (branch: %s)", os.Getenv("REPOSITORY"), "master"))
assert.Contains(t, outString, "Check Deploy Result...")
assert.Contains(t, outString, "Deploy is successful")
}
func TestInstallSuccessForSubdir(t *testing.T) {
cli, outStream, _ := before()
args := strings.Split(fmt.Sprintf("spm install %s -u %s -p %s", os.Getenv("REPOSITORY_SUBDIR"), os.Getenv("USERNAME"), os.Getenv("PASSWORD")), " ")
cli.Run(args)
outString := outStream.String()
assert.Contains(t, outString, fmt.Sprintf("Clone repository from https://github.com/"))
assert.Contains(t, outString, "Check Deploy Result...")
assert.Contains(t, outString, "Deploy is successful")
}
func TestInstallFailureNoUsername(t *testing.T) {
cli, outStream, _ := before()
args := strings.Split(fmt.Sprintf("spm install %s -p %s", os.Getenv("REPOSITORY"), os.Getenv("PASSWORD")), " ")
_ = cli.Run(args)
outString := outStream.String()
assert.Contains(t, outString, "Username is required")
}
func TestInstallFailureNoPassword(t *testing.T) {
cli, outStream, _ := before()
args := strings.Split(fmt.Sprintf("spm install %s -u %s", os.Getenv("REPOSITORY"), os.Getenv("USERNAME")), " ")
_ = cli.Run(args)
outString := outStream.String()
assert.Contains(t, outString, "Password is required")
}
func TestInstallFailureNoRepository(t *testing.T) {
cli, outStream, _ := before()
args := strings.Split(fmt.Sprintf("spm install -u %s -p %s", os.Getenv("USERNAME"), os.Getenv("PASSWORD")), " ")
_ = cli.Run(args)
outString := outStream.String()
assert.Contains(t, outString, "Repository not specified")
}
func TestInstallFailureNoPackageYML(t *testing.T) {
cli, outStream, _ := before()
args := strings.Split(fmt.Sprintf("spm install -u %s -p %s -P %s", os.Getenv("USERNAME"), os.Getenv("PASSWORD"), "NOPACKAGE.yml"), " ")
_ = cli.Run(args)
outString := outStream.String()
assert.Contains(t, outString, "open NOPACKAGE.yml: no such file or directory")
}
func TestInstallFailureInvalidCredentials(t *testing.T) {
cli, outStream, _ := before()
args := strings.Split(fmt.Sprintf("spm install %s -u hoge -p fuga", os.Getenv("REPOSITORY")), " ")
_ = cli.Run(args)
outString := outStream.String()
assert.Contains(t, outString, "INVALID_LOGIN: Invalid username, password, security token; or user locked out.")
}
func TestInstallFailurePackageYmlBlank(t *testing.T) {
cli, outStream, _ := before()
args := strings.Split(fmt.Sprintf("spm install -u %s -p %s -P %s", os.Getenv("USERNAME"), os.Getenv("PASSWORD"), FAILURE_PACKAGE_YML_BLANK), " ")
_ = cli.Run(args)
outString := outStream.String()
assert.Contains(t, outString, "Repository not specified")
}
func TestInstallFailurePackageYmlRepoBlank(t *testing.T) {
cli, outStream, _ := before()
args := strings.Split(fmt.Sprintf("spm install -u %s -p %s -P %s", os.Getenv("USERNAME"), os.Getenv("PASSWORD"), FAILURE_PACKAGE_YML_REPO_BLANK), " ")
_ = cli.Run(args)
outString := outStream.String()
assert.Contains(t, outString, "Repository not specified")
}
func TestDownloadSuccess(t *testing.T) {
cli, outStream, _ := before()
args := strings.Split(fmt.Sprintf("spm clone sf://%s:%s@login.salesforce.com?path=%s", os.Getenv("USERNAME"), os.Getenv("PASSWORD"), SUCCESS_PACKAGE_TOML), " ")
cli.Run(args)
outString := outStream.String()
assert.Contains(t, outString, "Start Retrieve Request...")
assert.Contains(t, outString, "Check Retrieve Status...")
assertIsExists(t, "tmp/unpackaged/classes/HelloSpm_Dep.cls")
assertIsExists(t, "tmp/unpackaged/classes/HelloSpm_Dep.cls-meta.xml")
assertIsExists(t, "tmp/unpackaged/package.xml")
assert.Nil(t, os.RemoveAll("./tmp"))
}
func TestDownloadFailureNoUsername(t *testing.T) {
cli, outStream, _ := before()
args := strings.Split(fmt.Sprintf("spm clone sf://:%s@login.salesforce.com?path=%s", os.Getenv("PASSWORD"), SUCCESS_PACKAGE_TOML), " ")
_ = cli.Run(args)
outString := outStream.String()
assert.Contains(t, outString, "Username is required")
}
func TestDownloadFailureNoPassword(t *testing.T) {
cli, outStream, _ := before()
args := strings.Split(fmt.Sprintf("spm clone sf://%s:@login.salesforce.com?path=%s", os.Getenv("USERNAME"), SUCCESS_PACKAGE_TOML), " ")
_ = cli.Run(args)
outString := outStream.String()
assert.Contains(t, outString, "Password is required")
}
func assertIsExists(t *testing.T, filename string) {
_, err := os.Stat(filename)
assert.Nil(t, err)
}