blob: 4372047e7942e4a0940f0c0fa12766ed5ef865df (
plain) (
blame)
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
|
;;; mastodon-auth--test.el --- Tests for mastodon-auth -*- lexical-binding: t; -*-
;; Copyright (C) 2020 Ian Eure
;; Author: Ian Eure <ian@retrospec.tv>
;; Version: 0.9.1
;; Homepage: https://github.com/jdenen/mastodon.el
;; Package-Requires: ((emacs "26.1"))
;; This file is not part of GNU Emacs.
;; This file is part of mastodon.el.
;; This program is free software; you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by
;; the Free Software Foundation, either version 3 of the License, or
;; (at your option) any later version.
;; This program is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
;; GNU General Public License for more details.
;; You should have received a copy of the GNU General Public License
;; along with this program. If not, see <https://www.gnu.org/licenses/>.
;;; Commentary:
;; mastodon-auth--test.el provides ERT tests for mastodon-auth.el
;;; Code:
(require 'ert)
(ert-deftest mastodon-auth--handle-token-response--good ()
(should (string= "foo" (mastodon-auth--handle-token-response '(:access_token "foo" :token_type "Bearer" :scope "read write follow" :created_at 0)))))
(ert-deftest mastodon-auth--handle-token-response--unknown ()
(should
(equal
'(error "Unknown response from mastodon-auth--get-token!")
(condition-case error
(progn
(mastodon-auth--handle-token-response '(:herp "derp"))
nil)
(t error)))))
(ert-deftest mastodon-auth--handle-token-response--failure ()
(let ((error-message "The provided authorization grant is invalid, expired, revoked, does not match the redirection URI used in the authorization request, or was issued to another client."))
(should
(equal
`(error ,(format "Mastodon-auth--access-token: invalid_grant: %s" error-message))
(condition-case error
(mastodon-auth--handle-token-response
`(:error "invalid_grant" :error_description ,error-message))
(t error))))))
(provide 'mastodon-auth--test)
;;; mastodon-auth--test.el ends here
|