diff options
Diffstat (limited to 'test/mastodon-auth-tests.el')
-rw-r--r-- | test/mastodon-auth-tests.el | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/test/mastodon-auth-tests.el b/test/mastodon-auth-tests.el index 4560e27..6e8b10c 100644 --- a/test/mastodon-auth-tests.el +++ b/test/mastodon-auth-tests.el @@ -101,3 +101,19 @@ (with-mock (mock (mastodon--http-response-triage "status" 'mastodon-auth--get-token-success)) (mastodon--get-access-token-triage "status"))) + +(ert-deftest mastodon-auth:get-access-token () + "Should POST auth data to retreive access token." + (let ((client-app '(:client_id "id" :client_secret "secret"))) + (with-mock + (mock (mastodon-auth--user-and-passwd) => (cons "email" "password")) + (mock (mastodon--client-app) => client-app) + (mock (mastodon--http-post "https://mastodon.social/oauth/token" + 'mastodon--get-access-token-triage + '(("client_id" . "id") + ("client_secret" . "secret") + ("grant_type" . "password") + ("username" . "email") + ("password" . "password") + ("scope" . "read write follow")))) + (mastodon--get-access-token)))) |