2017-11-30 02:05:09 +01:00
|
|
|
DELETE FROM settings WHERE id = 1234567890123456;
|
2017-11-29 21:42:20 +01:00
|
|
|
DELETE FROM oauth_access_tokens WHERE id = 6543210987654321;
|
|
|
|
DELETE FROM oauth_access_tokens WHERE id = 1234567890123456;
|
|
|
|
DELETE FROM oauth_applications WHERE id = 1234567890123456;
|
|
|
|
DELETE FROM users WHERE id = 1234567890123456;
|
|
|
|
DELETE FROM accounts WHERE id = 1234567890123456;
|
|
|
|
|
|
|
|
INSERT INTO accounts (
|
|
|
|
id,
|
|
|
|
username,
|
2017-11-30 01:54:52 +01:00
|
|
|
locked,
|
2017-11-29 21:42:20 +01:00
|
|
|
created_at,
|
|
|
|
updated_at
|
|
|
|
) VALUES (
|
|
|
|
1234567890123456,
|
|
|
|
'mastodonpy_test',
|
2017-11-30 01:54:52 +01:00
|
|
|
't',
|
2017-11-29 21:42:20 +01:00
|
|
|
now(),
|
|
|
|
now()
|
|
|
|
);
|
|
|
|
|
|
|
|
INSERT INTO users (
|
|
|
|
id,
|
|
|
|
email,
|
|
|
|
account_id,
|
|
|
|
created_at,
|
|
|
|
updated_at,
|
|
|
|
confirmed_at,
|
|
|
|
locale
|
|
|
|
) VALUES (
|
|
|
|
1234567890123456,
|
|
|
|
'mastodonpy_test@localhost:3000',
|
|
|
|
1234567890123456,
|
|
|
|
now(),
|
|
|
|
now(),
|
|
|
|
now(),
|
|
|
|
'ja' -- japanese locale for unicode testing :p
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
INSERT INTO oauth_applications (
|
|
|
|
id,
|
|
|
|
name,
|
|
|
|
uid,
|
|
|
|
secret,
|
|
|
|
redirect_uri,
|
|
|
|
scopes,
|
|
|
|
owner_type,
|
|
|
|
owner_id,
|
|
|
|
created_at,
|
|
|
|
updated_at
|
|
|
|
) VALUES (
|
|
|
|
1234567890123456,
|
|
|
|
'Mastodon.py test suite',
|
|
|
|
'__MASTODON_PY_TEST_CLIENT_ID',
|
|
|
|
'__MASTODON_PY_TEST_CLIENT_SECRET',
|
|
|
|
'urn:ietf:wg:oauth:2.0:oob',
|
|
|
|
'read write follow',
|
|
|
|
'User',
|
|
|
|
1234567890123456,
|
|
|
|
now(),
|
|
|
|
now()
|
|
|
|
);
|
|
|
|
|
2017-11-27 02:25:33 +01:00
|
|
|
INSERT INTO oauth_access_tokens (
|
2017-11-29 21:42:20 +01:00
|
|
|
id,
|
2017-11-27 02:25:33 +01:00
|
|
|
token,
|
|
|
|
scopes,
|
|
|
|
application_id,
|
|
|
|
resource_owner_id,
|
|
|
|
created_at
|
2017-11-29 21:42:20 +01:00
|
|
|
) VALUES (
|
|
|
|
1234567890123456,
|
|
|
|
'__MASTODON_PY_TEST_ACCESS_TOKEN',
|
|
|
|
'read write follow',
|
|
|
|
1234567890123456,
|
|
|
|
1234567890123456,
|
|
|
|
now()
|
|
|
|
), (
|
|
|
|
6543210987654321,
|
|
|
|
'__MASTODON_PY_TEST_ACCESS_TOKEN_2',
|
2017-11-27 02:25:33 +01:00
|
|
|
'read write follow',
|
2017-11-29 21:42:20 +01:00
|
|
|
1234567890123456,
|
2017-11-27 02:25:33 +01:00
|
|
|
1,
|
|
|
|
now()
|
2017-11-29 21:42:20 +01:00
|
|
|
);
|
2017-11-30 02:05:09 +01:00
|
|
|
|
|
|
|
INSERT INTO settings (
|
|
|
|
id,
|
|
|
|
var,
|
|
|
|
value,
|
|
|
|
thing_type,
|
|
|
|
thing_id,
|
|
|
|
created_at,
|
|
|
|
updated_at
|
|
|
|
) VALUES (
|
|
|
|
1234567890123456,
|
|
|
|
'notification_emails',
|
|
|
|
E'---\nfollow_request: false',
|
|
|
|
'User',
|
|
|
|
1234567890123456,
|
|
|
|
now(),
|
|
|
|
now()
|
|
|
|
)
|