testExec: error exec with a fakeid
[src/xds/xds-server.git] / test / exec_test.go
index 8759dbd..39f00c6 100644 (file)
@@ -22,14 +22,13 @@ import (
        "os/exec"
        "path"
        "testing"
-       "time"
 
        "gerrit.automotivelinux.org/gerrit/src/xds/xds-server/lib/xsapiv1"
        "github.com/stretchr/testify/assert"
 )
 
 func InitExec(t *testing.T) string {
-       t.Logf("Create helloworld directory with app-templates")
+       Debugf(t, "Create helloworld directory with app-templates")
        /*copy helloworld from fixtures to envRootCfgDir*/
        helloworldDir := path.Join(os.Getenv(envRootCfgDir), "helloworld")
        cmd := exec.Command("cp", "-r", helloworldFixturesDir, helloworldDir)
@@ -39,22 +38,13 @@ func InitExec(t *testing.T) string {
 
        /*clone submodules app templates into helloworld*/
        subHelloworldAppTemplateDir := path.Join(helloworldDir, "conf.d", "app-templates")
-       cmd = exec.Command("git", "clone", "https://gerrit.automotivelinux.org/gerrit/p/apps/app-templates.git", subHelloworldAppTemplateDir)
+       cmd = exec.Command("git", "clone", "-b", "flounder",
+               "https://gerrit.automotivelinux.org/gerrit/p/apps/app-templates.git",
+               subHelloworldAppTemplateDir)
        assert.Nil(t, cmd.Run())
        return helloworldDir
 }
 
-/*flush channel with timeout*/
-func flushChannelExec(channel chan xsapiv1.ExecOutMsg, ms time.Duration) {
-       timeoutB := false
-       for !timeoutB {
-               select {
-               case <-channel:
-               case <-time.After(ms * time.Millisecond):
-                       timeoutB = true
-               }
-       }
-}
 func TestExec(t *testing.T) {
        helloworldDir := InitExec(t)
        /*channel for SDK events*/
@@ -87,21 +77,45 @@ func TestExec(t *testing.T) {
        assert.Nil(t, HTTPCli.Post("/folders", fPrj, &cfg))
        assert.NotNil(t, cfg)
 
-       /*channel for ExecOutMsg*/
-       chExec := make(chan xsapiv1.ExecOutMsg)
+       /*channel for ExecExitMsg*/
+       chExec := make(chan xsapiv1.ExecExitMsg)
        defer close(chExec)
-       /*connect to ExecOutEvent*/
-       sCli.Conn.On(xsapiv1.ExecOutEvent, func(ev xsapiv1.ExecOutMsg) {
+       sCli.Conn.On(xsapiv1.ExecExitEvent, func(ev xsapiv1.ExecExitMsg) {
                chExec <- ev
        })
 
+       /*Collect commands output in */
+       cmdOut := ""
+       sCli.Conn.On(xsapiv1.ExecOutEvent, func(ev xsapiv1.ExecOutMsg) {
+               cmdOut += ev.Stdout + ev.Stderr
+       })
+       /*error when exec with fakeid*/
+       var execRes xsapiv1.ExecArgs
+       cmd := "pwd && echo \"SDKTARGETSYSROOT=<$SDKTARGETSYSROOT>\""
+       exec := xsapiv1.ExecArgs{
+               ID:    cfg.ID,
+               Cmd:   cmd,
+               SdkID: "11111-invalid",
+       }
+       Debugf(t, "exec cmake cmd(%v)", cmd)
+       cmdOut = ""
+       assert.NotNil(t, HTTPCli.Post("/exec", exec, &execRes))
+
+       /*basic check: verify that environment is set correctly (use the right sdk)*/
+       cmd = "pwd && echo \"SDKTARGETSYSROOT=<$SDKTARGETSYSROOT>\""
+       exec = xsapiv1.ExecArgs{
+               ID:    cfg.ID,
+               Cmd:   cmd,
+               SdkID: sdkRes.ID,
+       }
+       Debugf(t, "exec cmake cmd(%v)", cmd)
+       cmdOut = ""
+       assert.Nil(t, HTTPCli.Post("/exec", exec, &execRes))
+       exitMsg := <-chExec
+       assert.Equal(t, exitMsg.Code, 0)
+
        /*cmake helloworld project with fake sdk*/
-       sdkSourceFile := path.Join(sdkRes.Path, "environment-setup-corei7-64-native-linux")
-       cmd := "source " + sdkSourceFile
-       cmd = cmd + " && "
-       cmd = cmd + "unset SDKTARGETSYSROOT"
-       cmd = cmd + " && "
-       cmd = cmd + "cd " + fPrj.ClientPath
+       cmd = "cd " + fPrj.ClientPath
        cmd = cmd + " && "
        cmd = cmd + "mkdir -p build"
        cmd = cmd + " && "
@@ -110,33 +124,30 @@ func TestExec(t *testing.T) {
        cmd = cmd + "cmake .."
 
        /*post exec cmd cmake*/
-       exec := xsapiv1.ExecArgs{
+       exec = xsapiv1.ExecArgs{
                ID:  cfg.ID,
                Cmd: cmd,
        }
-       var execRes xsapiv1.ExecArgs
-       t.Logf("exec cmake cmd(%v)", cmd)
+       Debugf(t, "exec cmake cmd(%v)", cmd)
        assert.Nil(t, HTTPCli.Post("/exec", exec, &execRes))
-       flushChannelExec(chExec, 1000) //waiting for execOutMsg
+       exitMsg = <-chExec
+       assert.Equal(t, exitMsg.Code, 0)
 
        /*make helloworld project with fake sdk*/
-       cmd = "source " + sdkSourceFile
-       cmd = cmd + " && "
-       cmd = cmd + "unset SDKTARGETSYSROOT"
-       cmd = cmd + " && "
-       cmd = cmd + "cd " + fPrj.ClientPath
+       cmd = "cd " + fPrj.ClientPath
        cmd = cmd + "&&"
        cmd = cmd + "cd build"
        cmd = cmd + "&&"
        cmd = cmd + "make"
        exec.Cmd = cmd
        /*post exec cmd make*/
-       t.Logf("exec make cmd(%v)", cmd)
+       Debugf(t, "exec make cmd(%v)", cmd)
        assert.Nil(t, HTTPCli.Post("/exec", exec, &execRes))
-       flushChannelExec(chExec, 1000) //waiting for execOutMsg
+       exitMsg = <-chExec
+       assert.Equal(t, exitMsg.Code, 0)
 
        /*check if helloworld.so exists*/
-       t.Log("check that helloworld.so exists")
+       Debug(t, "check that helloworld.so exists")
        _, err := os.Stat(path.Join(fPrj.ClientPath, "build/helloworld/helloworld.so"))
        assert.Nil(t, err)