moving test apps into place with proper check_deploy scripts

This commit is contained in:
Jeff Lindsay
2013-06-23 17:17:56 -07:00
parent 67c727a935
commit ef7ac5bbdb
12 changed files with 10 additions and 12 deletions

2
tests/apps/go/check_deploy Executable file
View File

@@ -0,0 +1,2 @@
#!/bin/bash
set -e; test "$(curl -s $1)" == "go"

View File

@@ -16,5 +16,5 @@ func main() {
}
func hello(res http.ResponseWriter, req *http.Request) {
fmt.Fprintln(res, "hello, world")
fmt.Fprintln(res, "go")
}

View File

@@ -1,3 +1,2 @@
#!/bin/bash
set -e
test "$(curl $1)" == "nodejs/express2"
set -e; test "$(curl -s $1)" == "nodejs/express"

2
tests/apps/php/check_deploy Executable file
View File

@@ -0,0 +1,2 @@
#!/bin/bash
set -e; test "$(curl -s $1)" == "<html><h3>php</h3></html>"

1
tests/apps/php/index.php Normal file
View File

@@ -0,0 +1 @@
<html><?php echo '<h3>php</h3>'; ?></html>

View File

@@ -0,0 +1,2 @@
#!/bin/bash
set -e; test "$(curl -s $1)" == "python/flask"

View File

@@ -5,4 +5,4 @@ app = Flask(__name__)
@app.route('/')
def hello():
return 'Hello World!'
return 'python/flask'

View File

@@ -1,8 +0,0 @@
<html>
<head>
<title>PHP Test</title>
</head>
<body>
<?php echo '<h3>Hello World</h3>'; ?>
</body>
</html>