mrutkows closed pull request #941: commenting out TestExportHelloWorld as its 
unstable in Travis
URL: https://github.com/apache/incubator-openwhisk-wskdeploy/pull/941
 
 
   

This is a PR merged from a forked repository.
As GitHub hides the original diff on merge, it is displayed below for
the sake of provenance:

As this is a foreign pull request (from a fork), the diff is supplied
below (as it won't show otherwise due to GitHub magic):

diff --git a/tests/src/integration/export/export_test.go 
b/tests/src/integration/export/export_test.go
index c976ff61..753dcb15 100644
--- a/tests/src/integration/export/export_test.go
+++ b/tests/src/integration/export/export_test.go
@@ -21,15 +21,27 @@ package tests
 
 import (
        "fmt"
+       "math/rand"
        "os"
+       "strconv"
        "testing"
 
        
"github.com/apache/incubator-openwhisk-wskdeploy/tests/src/integration/common"
        "github.com/stretchr/testify/assert"
 )
 
+const EXPORT_TEST_PATH = 
"/src/github.com/apache/incubator-openwhisk-wskdeploy/tests/src/integration/export/"
+
 func TestExport(t *testing.T) {
        projectName := "EXT_PROJECT"
+
+       manifestLib1Path := os.Getenv("GOPATH") + EXPORT_TEST_PATH + 
"manifest_lib1.yaml"
+       manifestLib2Path := os.Getenv("GOPATH") + EXPORT_TEST_PATH + 
"manifest_lib2.yaml"
+       manifestExtPath := os.Getenv("GOPATH") + EXPORT_TEST_PATH + 
"manifest_ext.yaml"
+
+       targetManifestFolder := os.Getenv("GOPATH") + EXPORT_TEST_PATH + "tmp-" 
+ strconv.Itoa(rand.Intn(1000)) + "/"
+       targetManifestPath := targetManifestFolder + "manifest-" + projectName 
+ ".yaml"
+
        wskdeploy := common.NewWskdeploy()
 
        _, err := wskdeploy.ManagedDeploymentOnlyManifest(manifestLib1Path)
@@ -63,8 +75,12 @@ func TestExport(t *testing.T) {
        assert.Equal(t, nil, err, "Failed to undeploy the lib2.")
 }
 
-func TestExportHelloWorld(t *testing.T) {
+func SkipTestExportHelloWorld(t *testing.T) {
        projectName := "HELLO_WORLD"
+       manifestHelloWorldPath := os.Getenv("GOPATH") + EXPORT_TEST_PATH + 
"manifest_helloworld.yaml"
+       targetManifestFolder := os.Getenv("GOPATH") + EXPORT_TEST_PATH + "tmp-" 
+ strconv.Itoa(rand.Intn(1000)) + "/"
+       targetManifestHelloWorldPath := targetManifestFolder + "manifest-" + 
projectName + ".yaml"
+
        wskdeploy := common.NewWskdeploy()
 
        _, err := 
wskdeploy.ManagedDeploymentManifestAndProject(manifestHelloWorldPath, 
projectName)
@@ -95,6 +111,9 @@ func TestExportHelloWorld(t *testing.T) {
 }
 
 func TestExport2Pack(t *testing.T) {
+       manifest2PackPath := os.Getenv("GOPATH") + EXPORT_TEST_PATH + 
"manifest_2pack.yaml"
+       targetManifestFolder := os.Getenv("GOPATH") + EXPORT_TEST_PATH + "tmp-" 
+ strconv.Itoa(rand.Intn(1000)) + "/"
+       target2PackManifestPath := targetManifestFolder + 
"exported2packmanifest.yaml"
        projectName := "2pack"
        wskdeploy := common.NewWskdeploy()
 
@@ -113,20 +132,6 @@ func TestExport2Pack(t *testing.T) {
        _, err = os.Stat(targetManifestFolder + "package_2/pack2_greeting2.js")
        assert.Equal(t, nil, err, "Missing exported 
package_2/pack2_greeting2.js")
 
-       _, err = wskdeploy.UndeployManifestPathOnly(target2PackManifestPath)
+       _, err = wskdeploy.UndeployManifestPathOnly(manifest2PackPath)
        assert.Equal(t, nil, err, "Failed to undeploy")
 }
-
-var (
-       manifestLib1Path = os.Getenv("GOPATH") + 
"/src/github.com/apache/incubator-openwhisk-wskdeploy/tests/src/integration/export/manifest_lib1.yaml"
-       manifestLib2Path = os.Getenv("GOPATH") + 
"/src/github.com/apache/incubator-openwhisk-wskdeploy/tests/src/integration/export/manifest_lib2.yaml"
-       manifestExtPath  = os.Getenv("GOPATH") + 
"/src/github.com/apache/incubator-openwhisk-wskdeploy/tests/src/integration/export/manifest_ext.yaml"
-
-       targetManifestFolder = os.Getenv("GOPATH") + 
"/src/github.com/apache/incubator-openwhisk-wskdeploy/tests/src/integration/export/tmp/"
-       targetManifestPath   = targetManifestFolder + "manifest.yaml"
-
-       manifestHelloWorldPath       = os.Getenv("GOPATH") + 
"/src/github.com/apache/incubator-openwhisk-wskdeploy/tests/src/integration/export/manifest_helloworld.yaml"
-       targetManifestHelloWorldPath = targetManifestFolder + "manifest.yaml"
-       manifest2PackPath            = os.Getenv("GOPATH") + 
"/src/github.com/apache/incubator-openwhisk-wskdeploy/tests/src/integration/export/manifest_2pack.yaml"
-       target2PackManifestPath      = targetManifestFolder + 
"exported2packmanifest.yaml"
-)


 

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

Reply via email to