diff options
author | Johnson Denen <johnson.denen@gmail.com> | 2017-04-12 09:41:17 -0400 |
---|---|---|
committer | Johnson Denen <johnson.denen@gmail.com> | 2017-04-12 18:11:48 -0400 |
commit | 59390fba8c795973069064f4216550f4e088a98f (patch) | |
tree | 6f445ae5d7d2a2c3e3abb4d1e334427b338187ec /test/mastodon-auth-tests.el | |
parent | 24e038facf1a17d4996a9bca400aa6fe5ebf310b (diff) |
Add mastodon--client-app tests
Diffstat (limited to 'test/mastodon-auth-tests.el')
-rw-r--r-- | test/mastodon-auth-tests.el | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/test/mastodon-auth-tests.el b/test/mastodon-auth-tests.el index 0012e3e..95ba597 100644 --- a/test/mastodon-auth-tests.el +++ b/test/mastodon-auth-tests.el @@ -66,3 +66,24 @@ (should (eq app-plist (mastodon--store-client-id-and-secret))) (should (string= (helper:read-plstore (mastodon-auth--token-file) :client_id) "id-val")) (should (string= (helper:read-plstore (mastodon-auth--token-file) :client_secret) "secret-val"))))) + +(ert-deftest mastodon-auth:client-app:memoized () + "Should return `mastodon--client-app-plist' if it has a :client_secret." + (with-mock + (mock (plist-get mastodon--client-app-plist :client_secret) => t) + (should (eq (mastodon--client-app) mastodon--client-app-plist)))) + +(ert-deftest mastodon-auth:client-app:stored () + "Should retrieve from `mastodon-token-file' if not memoized." + (with-mock + (stub plist-get) + (mock (mastodon-auth--token-file) => "fixture/client.plstore") + (should (equal (mastodon--client-app) '(:client_id "id" :client_secret "secret"))))) + +(ert-deftest mastodon-auth:client-app:generated () + "Should generate `mastodon--client-app-plist' if not memoized or stored." + (with-mock + (stub plist-get) + (mock (mastodon-auth--token-file) => "fixture/empty.plstore") + (mock (mastodon--store-client-id-and-secret)) + (mastodon--client-app))) |