aboutsummaryrefslogtreecommitdiff
path: root/app/tests/test_admin.py
blob: 94e832049d1369e3d19dd6f58cf71de12e1562e0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# -*- coding: utf-8 -*-
"""
Test(s) for Admin Portal
"""
from app import database_cli


def test_admin(app, client):
    """
    Test Admin Portal

    We use the cli-runner to run the admin-create command.
    Then we check if the admin portal is accessible to the newly created superuser.
    """
    runner = app.test_cli_runner()
    assert runner.invoke(database_cli, ["admin-create"]).exit_code == 0

    res = client.post(
        "/signin",
        data=dict(
            email=app.config["ADMIN_EMAIL"], password=app.config["ADMIN_PASSWORD"]
        ),
        follow_redirects=True,
    )

    print(res.data)
    assert b"Supersu" in res.data
    res = client.get("/admin/user/")
    assert res.status_code == 200