summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/data/my-webapp/app.config1
-rwxr-xr-x[-rw-r--r--]test/data/my-webapp/root/bin/app.js (renamed from test/data/my-webapp/root/app.js)2
-rw-r--r--test/it.bats8
3 files changed, 8 insertions, 3 deletions
diff --git a/test/data/my-webapp/app.config b/test/data/my-webapp/app.config
new file mode 100644
index 0000000..40cbaa0
--- /dev/null
+++ b/test/data/my-webapp/app.config
@@ -0,0 +1 @@
+app.bin=app.js
diff --git a/test/data/my-webapp/root/app.js b/test/data/my-webapp/root/bin/app.js
index 29298b3..992a701 100644..100755
--- a/test/data/my-webapp/root/app.js
+++ b/test/data/my-webapp/root/bin/app.js
@@ -1,3 +1,5 @@
+#!/usr/bin/env nodejs
+
var http = require("http"),
url = require("url"),
path = require("path"),
diff --git a/test/it.bats b/test/it.bats
index d594049..406d5fc 100644
--- a/test/it.bats
+++ b/test/it.bats
@@ -6,7 +6,7 @@ load utils
@test "Happy day" {
mkzip my-webapp
install_artifact "my-webapp"
- install_artifact "my-webapp" 1.0
+# install_artifact "my-webapp" 1.0
cd $BATS_TMPDIR
cd appstore
@@ -20,9 +20,11 @@ load utils
git config user.name "Test Case"
git config user.email tester@example.org
- echo "app-1,maven,org.example:app-a:1.0-SNAPSHOT,1.0-SNAPSHOT,enabled" >> apps.csv
+ echo "frontend,maven,org.example:my-webapp:1.0-SNAPSHOT,1.0-SNAPSHOT,enabled" >> apps.csv
+ echo "backend,maven,org.example:my-webapp:1.0-SNAPSHOT,1.0-SNAPSHOT,enabled" >> apps.csv
+ echo "left,maven,org.example:my-webapp:1.0-SNAPSHOT,1.0-SNAPSHOT,disabled" >> apps.csv
git commit -m "o Adding app-1." -a
git push cloud master
- eq "ssh://localhost$BATS_TMPDIR/appstore/server/mysetup" `git config remote.cloud.url`
+ eq "ssh://localhost$BATS_TMPDIR/appstore/server/repos/mysetup" `git config remote.cloud.url`
eq 1 2
}