forked from Github-Mirrors/canaille
52 lines
1.5 KiB
Python
52 lines
1.5 KiB
Python
import json
|
|
from unittest import mock
|
|
|
|
from canaille.commands import cli
|
|
|
|
|
|
def test_dump_stdout(testclient, backend, user, foo_group):
|
|
"""Test the full database dump command."""
|
|
|
|
runner = testclient.app.test_cli_runner()
|
|
res = runner.invoke(cli, ["dump"], catch_exceptions=False)
|
|
assert res.exit_code == 0, res.stdout
|
|
assert json.loads(res.stdout) == {
|
|
"authorizationcode": [],
|
|
"client": [],
|
|
"consent": [],
|
|
"group": [
|
|
{
|
|
"created": mock.ANY,
|
|
"display_name": "foo",
|
|
"id": foo_group.id,
|
|
"last_modified": mock.ANY,
|
|
"members": [
|
|
user.id,
|
|
],
|
|
},
|
|
],
|
|
"token": [],
|
|
"user": [
|
|
{
|
|
"created": mock.ANY,
|
|
"display_name": "Johnny",
|
|
"emails": [
|
|
"john@doe.test",
|
|
],
|
|
"family_name": "Doe",
|
|
"formatted_address": "1235, somewhere",
|
|
"formatted_name": "John (johnny) Doe",
|
|
"given_name": "John",
|
|
"groups": [foo_group.id],
|
|
"id": user.id,
|
|
"last_modified": mock.ANY,
|
|
"password": mock.ANY,
|
|
"phone_numbers": [
|
|
"555-000-000",
|
|
],
|
|
"preferred_language": "en",
|
|
"profile_url": "https://john.test",
|
|
"user_name": "user",
|
|
},
|
|
],
|
|
}
|