forked from tzmfreedom/spm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathspm_test.go
87 lines (76 loc) · 3.21 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
package main
import (
"bytes"
"fmt"
"github.com/stretchr/testify/assert"
"os"
"strings"
"testing"
)
const (
FAILURE_PACKAGE_YML_BLANK = "./test/blank.yml"
FAILURE_PACKAGE_YML_REPO_BLANK = "./test/repo-blank.yml"
)
func before() (*CLI, *bytes.Buffer, *bytes.Buffer) {
outStream, errStream := new(bytes.Buffer), new(bytes.Buffer)
cli := &CLI{Logger: NewLogger(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 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")
}