from flask import Flask, jsonify, request
import time
calcapp = Flask(__name__)
@calcapp.route("/")
def main():
return 'Post JSON to /api/calc'
@calcapp.route("/api/calc")
def add():
a = int(request.args.get('a', 0))
b = int(request.args.get('b', 0))
return jsonify({
"a" : a,
"b" : b,
"add" : a+b,
})
import app
def test_app():
web = app.calcapp.test_client()
rv = web.get('/')
assert rv.status == '200 OK'
assert b'Post JSON to /api/calc' == rv.data
def test_calc():
web = app.calcapp.test_client()
rv = web.get('/api/calc?a=10&b=2')
assert rv.status == '200 OK'
assert rv.headers['Content-Type'] == 'application/json'
resp = rv.json
assert resp == {
"a" : 10,
"b" : 2,
"add" : 12,
}