-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathps_test.go
More file actions
71 lines (63 loc) · 1.84 KB
/
ps_test.go
File metadata and controls
71 lines (63 loc) · 1.84 KB
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
// +build integration
package tests
import (
"os/exec"
"strings"
"testing"
"github.com/deis/deis/tests/utils"
)
var (
psListCmd = "ps:list --app={{.AppName}}"
psScaleCmd = "ps:scale web={{.ProcessNum}} --app={{.AppName}}"
)
func TestPs(t *testing.T) {
params := psSetup(t)
psScaleTest(t, params)
appsOpenTest(t, params)
psListTest(t, params, false)
utils.AppsDestroyTest(t, params)
utils.Execute(t, psScaleCmd, params, true, "404 NOT FOUND")
}
func psSetup(t *testing.T) *utils.DeisTestConfig {
cfg := utils.GetGlobalConfig()
cfg.AppName = "pssample"
utils.Execute(t, authLoginCmd, cfg, false, "")
utils.Execute(t, gitCloneCmd, cfg, false, "")
if err := utils.Chdir(cfg.ExampleApp); err != nil {
t.Fatal(err)
}
utils.Execute(t, appsCreateCmd, cfg, false, "")
utils.Execute(t, gitPushCmd, cfg, false, "")
if err := utils.Chdir(".."); err != nil {
t.Fatal(err)
}
return cfg
}
func psListTest(t *testing.T, params *utils.DeisTestConfig, notflag bool) {
output := "web.2 up (v2)"
if strings.Contains(params.ExampleApp, "dockerfile") {
output = strings.Replace(output, "web", "cmd", 1)
}
utils.CheckList(t, psListCmd, params, output, notflag)
}
func psScaleTest(t *testing.T, params *utils.DeisTestConfig) {
cmd := psScaleCmd
if strings.Contains(params.ExampleApp, "dockerfile") {
cmd = strings.Replace(cmd, "web", "cmd", 1)
}
utils.Execute(t, cmd, params, false, "")
// Regression test for https://github.com/deis/deis/pull/1347
// Ensure that systemd unitfile droppings are cleaned up.
sshCmd := exec.Command("ssh",
"-o", "StrictHostKeyChecking=no",
"-o", "UserKnownHostsFile=/dev/null",
"-o", "PasswordAuthentication=no",
"core@deis."+params.Domain, "ls")
out, err := sshCmd.Output()
if err != nil {
t.Fatal(err)
}
if strings.Contains(string(out), ".service") {
t.Fatalf("systemd files left on filesystem: \n%s", out)
}
}