/tests/apps_test.go
https://gitlab.com/seacoastboy/deis · Go · 119 lines · 102 code · 14 blank · 3 comment · 18 complexity · 98868d4f2239cae1b630d19a50d46614 MD5 · raw file
- // +build integration
- package tests
- import (
- "math/rand"
- "os"
- "testing"
- "github.com/deis/deis/tests/utils"
- )
- var (
- appsCreateCmd = "apps:create {{.AppName}}"
- appsCreateCmdNoRemote = "apps:create {{.AppName}} --no-remote"
- appsListCmd = "apps:list"
- appsRunCmd = "apps:run echo hello"
- appsOpenCmd = "apps:open --app={{.AppName}}"
- appsLogsCmd = "apps:logs --app={{.AppName}}"
- appsInfoCmd = "apps:info --app={{.AppName}}"
- appsDestroyCmd = "apps:destroy --app={{.AppName}} --confirm={{.AppName}}"
- )
- func randomString(n int) string {
- var letters = []rune("abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ")
- b := make([]rune, n)
- for i := range b {
- b[i] = letters[rand.Intn(len(letters))]
- }
- return string(b)
- }
- func TestApps(t *testing.T) {
- params := appsSetup(t)
- appsCreateTest(t, params)
- appsListTest(t, params, false)
- appsLogsTest(t, params)
- appsInfoTest(t, params)
- appsRunTest(t, params)
- appsOpenTest(t, params)
- appsDestroyTest(t, params)
- appsListTest(t, params, true)
- }
- func appsSetup(t *testing.T) *utils.DeisTestConfig {
- cfg := utils.GetGlobalConfig()
- cfg.AppName = "appssample"
- utils.Execute(t, authLoginCmd, cfg, false, "")
- utils.Execute(t, gitCloneCmd, cfg, false, "")
- return cfg
- }
- func appsCreateTest(t *testing.T, params *utils.DeisTestConfig) {
- wd, _ := os.Getwd()
- defer os.Chdir(wd)
- if err := utils.Chdir(params.ExampleApp); err != nil {
- t.Fatal(err)
- }
- cmd := appsCreateCmd
- utils.Execute(t, cmd, params, false, "")
- utils.Execute(t, cmd, params, true, "App with this Id already exists")
- }
- func appsDestroyTest(t *testing.T, params *utils.DeisTestConfig) {
- if err := utils.Chdir(params.ExampleApp); err != nil {
- t.Fatal(err)
- }
- utils.Execute(t, appsDestroyCmd, params, false, "")
- if err := utils.Chdir(".."); err != nil {
- t.Fatal(err)
- }
- if err := utils.Rmdir(params.ExampleApp); err != nil {
- t.Fatal(err)
- }
- }
- func appsInfoTest(t *testing.T, params *utils.DeisTestConfig) {
- utils.Execute(t, appsInfoCmd, params, false, "")
- }
- func appsListTest(t *testing.T, params *utils.DeisTestConfig, notflag bool) {
- utils.CheckList(t, appsListCmd, params, params.AppName, notflag)
- }
- func appsLogsTest(t *testing.T, params *utils.DeisTestConfig) {
- cmd := appsLogsCmd
- // test for application lifecycle logs
- utils.Execute(t, cmd, params, false, "204 NO CONTENT")
- if err := utils.Chdir(params.ExampleApp); err != nil {
- t.Fatal(err)
- }
- utils.Execute(t, gitPushCmd, params, false, "")
- utils.Curl(t, params)
- utils.Execute(t, cmd, params, false, "created initial release")
- utils.Execute(t, cmd, params, false, "listening on 5000...")
- if err := utils.Chdir(".."); err != nil {
- t.Fatal(err)
- }
- }
- func appsOpenTest(t *testing.T, params *utils.DeisTestConfig) {
- utils.Curl(t, params)
- }
- func appsRunTest(t *testing.T, params *utils.DeisTestConfig) {
- cmd := appsRunCmd
- if err := utils.Chdir(params.ExampleApp); err != nil {
- t.Fatal(err)
- }
- utils.Execute(t, cmd, params, false, "hello")
- utils.Execute(t, "apps:run env", params, true, "GIT_SHA")
- // run a REALLY large command to test https://github.com/deis/deis/issues/2046
- largeString := randomString(1024)
- utils.Execute(t, "apps:run echo "+largeString, params, false, largeString)
- if err := utils.Chdir(".."); err != nil {
- t.Fatal(err)
- }
- utils.Execute(t, cmd, params, true, "Not found")
- }