Mastodonplus.py/tests/setup_app.sql
codl 4b60a0d3cf
add tests for json hooks
including a failing test for that thing i fixed earlier which isn't
in this branch 😓
2017-11-27 03:12:02 +01:00

38 líneas
787 B
SQL

WITH new_app AS (
INSERT INTO oauth_applications (
name,
uid,
secret,
redirect_uri,
scopes,
owner_type,
owner_id,
created_at,
updated_at
) VALUES (
'Mastodon.py test suite',
'__MASTODON_PY_TEST_ID',
'__MASTODON_PY_TEST_SECRET',
'urn:itef:wg:oauth:2.0:oob',
'read write follow',
'User',
1,
now(),
now()
)
RETURNING id
)
INSERT INTO oauth_access_tokens (
token,
scopes,
application_id,
resource_owner_id,
created_at
) SELECT
'__MASTODON_PY_TEST_TOKEN',
'read write follow',
new_app.id,
1,
now()
FROM new_app;