Skip to content

Commit 4496e16

Browse files
author
Zhang Handi
committed
test
1 parent c70c4c2 commit 4496e16

File tree

4 files changed

+70
-0
lines changed

4 files changed

+70
-0
lines changed

.travis.yml

+21
Original file line numberDiff line numberDiff line change
@@ -18,3 +18,24 @@ script:
1818
cache:
1919
directories:
2020
- "$HOME/.m2/repository"
21+
22+
# Environment variables are strings (double quotes)
23+
# Example:
24+
# - secure: "DpR1th9rZvLMX0......"
25+
env:
26+
global:
27+
- secure: <ENCRYPTED_TOKEN>
28+
29+
# The pipe (|) is useful to create multiline scripts
30+
script:
31+
- |
32+
mvn clean install sonar:sonar \
33+
-Dsonar.projectKey=<SONAR_PROJECT_KEY> \
34+
-Dsonar.organization=<SONAR_ORGANISATION_KEY> \
35+
-Dsonar.host.url=https://sonarcloud.io \
36+
-Dsonar.login=$SONAR_TOKEN
37+
38+
# Send an email to the commiter if the pipeline failed at some point
39+
notifications:
40+
email:
41+
on_failure: always

test/Dockerfile

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# Use an official Python runtime as a parent image
2+
FROM python:2.7-slim
3+
4+
# Set the working directory to /app
5+
WORKDIR /app
6+
7+
# Copy the current directory contents into the container at /app
8+
COPY . /app
9+
10+
# Install any needed packages specified in requirements.txt
11+
RUN pip install --trusted-host pypi.python.org -r requirements.txt --proxy=http://proxy.insa-rouen.fr:3128/
12+
13+
14+
# Make port 80 available to the world outside this container
15+
EXPOSE 80
16+
17+
# Define environment variable
18+
ENV NAME World
19+
20+
# Run app.py when the container launches
21+
CMD ["python", "app.py"]
22+

test/app.py

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
from flask import Flask
2+
from redis import Redis, RedisError
3+
import os
4+
import socket
5+
6+
# Connect to Redis
7+
redis = Redis(host="redis", db=0, socket_connect_timeout=2, socket_timeout=2)
8+
9+
app = Flask(__name__)
10+
11+
@app.route("/")
12+
def hello():
13+
try:
14+
visits = redis.incr("counter")
15+
except RedisError:
16+
visits = "<i>cannot connect to Redis, counter disabled</i>"
17+
18+
html = "<h3>Hello {name}!</h3>" \
19+
"<b>Hostname:</b> {hostname}<br/>" \
20+
"<b>Visits:</b> {visits}"
21+
return html.format(name=os.getenv("NAME", "world"), hostname=socket.gethostname(), visits=visits)
22+
23+
if __name__ == "__main__":
24+
app.run(host='0.0.0.0', port=80)
25+

test/requirements.txt

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
Flask
2+
Redis

0 commit comments

Comments
 (0)