2021-06-20 19:25:27 +02:00
|
|
|
from alembic import command
|
|
|
|
import unittest
|
|
|
|
import json
|
|
|
|
|
|
|
|
from app import app, db, migrate
|
2021-06-26 10:51:39 +02:00
|
|
|
from ki.actions import seed
|
|
|
|
from ki.models import User
|
2021-06-20 19:25:27 +02:00
|
|
|
|
|
|
|
|
|
|
|
class TestProfileEndpoint(unittest.TestCase):
|
|
|
|
def setUp(self):
|
|
|
|
app.debug = True
|
2021-06-20 20:13:19 +02:00
|
|
|
app.config["TESTING"] = True
|
2021-06-20 19:25:27 +02:00
|
|
|
app.config["SQLALCHEMY_DATABASE_URI"] = "sqlite:///:memory:"
|
|
|
|
self.client = app.test_client()
|
|
|
|
|
|
|
|
with app.app_context():
|
|
|
|
config = migrate.get_config()
|
|
|
|
command.upgrade(config, "head")
|
|
|
|
|
2021-06-26 10:51:39 +02:00
|
|
|
seed(True)
|
2021-06-20 19:25:27 +02:00
|
|
|
|
2021-06-20 20:13:19 +02:00
|
|
|
def tearDown(self):
|
2021-06-22 17:35:27 +02:00
|
|
|
db.drop_all()
|
2021-06-20 20:13:19 +02:00
|
|
|
db.engine.dispose()
|
|
|
|
|
|
|
|
def test_create_profile(self):
|
|
|
|
login_data = {"username": "peter", "password": "geheim"}
|
|
|
|
login_response = self.client.post("/users/login",
|
|
|
|
data=json.dumps(login_data),
|
|
|
|
content_type="application/json")
|
|
|
|
|
|
|
|
self.assertEqual(login_response.status_code, 200)
|
|
|
|
self.assertIn("token", login_response.json)
|
|
|
|
|
|
|
|
data = {
|
|
|
|
"pronouns": "Herr Dr. Dr.",
|
|
|
|
"volunteerwork": "ja",
|
|
|
|
"freetext": "Hallo",
|
|
|
|
}
|
|
|
|
response = self.client.post("/users/1/profile",
|
|
|
|
data=json.dumps(data),
|
|
|
|
content_type="application/json",
|
|
|
|
headers={
|
|
|
|
"Authorization":
|
|
|
|
"Bearer " +
|
|
|
|
login_response.json["token"]
|
|
|
|
})
|
|
|
|
|
|
|
|
self.assertEqual(response.status_code, 200)
|
2021-06-20 20:21:49 +02:00
|
|
|
with app.app_context():
|
|
|
|
user = User.query.filter(User.id == 1).first()
|
|
|
|
profile = user.profile
|
|
|
|
self.assertEqual("Herr Dr. Dr.", profile.pronouns)
|
|
|
|
self.assertEqual("ja", profile.volunteerwork)
|
|
|
|
self.assertEqual("Hallo", profile.freetext)
|
2021-06-20 20:13:19 +02:00
|
|
|
|
2021-06-20 19:25:27 +02:00
|
|
|
def test_get_profile(self):
|
|
|
|
login_data = {"username": "peter", "password": "geheim"}
|
|
|
|
login_response = self.client.post("/users/login",
|
|
|
|
data=json.dumps(login_data),
|
|
|
|
content_type="application/json")
|
|
|
|
|
|
|
|
self.assertEqual(login_response.status_code, 200)
|
|
|
|
self.assertIn("token", login_response.json)
|
|
|
|
|
|
|
|
response = self.client.get("/users/1/profile",
|
|
|
|
headers={
|
|
|
|
"Authorization":
|
|
|
|
"Bearer " + login_response.json["token"]
|
|
|
|
})
|
|
|
|
|
|
|
|
self.assertEqual(response.status_code, 200)
|
|
|
|
self.assertEqual(
|
|
|
|
response.json, {
|
|
|
|
"profile": {
|
2021-06-26 10:51:39 +02:00
|
|
|
"freetext": "Ich mag Kaffee",
|
|
|
|
"nickname": "peternichtlustig",
|
|
|
|
"pronouns": "Herr Dr. Dr.",
|
|
|
|
"volunteerwork": "Gartenverein"
|
2021-06-20 19:25:27 +02:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
|
|
if __name__ == "main":
|
|
|
|
unittest.main()
|