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 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77
|
;;; gravatar-tests.el --- tests for gravatar.el -*- lexical-binding: t -*-
;; Copyright (C) 2019-2025 Free Software Foundation, Inc.
;; This file is part of GNU Emacs.
;; GNU Emacs 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.
;; GNU Emacs 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 GNU Emacs. If not, see <https://www.gnu.org/licenses/>.
;;; Code:
(require 'ert)
(require 'gravatar)
(ert-deftest gravatar-hash ()
"Test `gravatar-hash'."
(should (equal (gravatar-hash "") "d41d8cd98f00b204e9800998ecf8427e"))
(let ((hash "acbd18db4cc2f85cedef654fccc4a4d8"))
(should (equal (gravatar-hash "foo") hash))
(should (equal (gravatar-hash "foo ") hash))
(should (equal (gravatar-hash " foo") hash))
(should (equal (gravatar-hash " foo ") hash))))
(ert-deftest gravatar-size ()
"Test query strings for `gravatar-size'."
(let ((gravatar-default-image nil)
(gravatar-force-default nil))
(let ((gravatar-size 2048))
(should (equal (gravatar--query-string) "r=g&s=2048")))
(let ((gravatar-size nil))
(should (equal (gravatar--query-string) "r=g")))))
(ert-deftest gravatar-default-image ()
"Test query strings for `gravatar-default-image'."
(let ((gravatar-force-default nil)
(gravatar-size nil))
(let ((gravatar-default-image nil))
(should (equal (gravatar--query-string) "r=g")))
(let ((gravatar-default-image "404"))
(should (equal (gravatar--query-string) "r=g&d=404")))
(let ((gravatar-default-image "https://foo/bar.png"))
(should (equal (gravatar--query-string)
"r=g&d=https://foo/bar.png")))))
(ert-deftest gravatar-force-default ()
"Test query strings for `gravatar-force-default'."
(let ((gravatar-default-image nil)
(gravatar-size nil))
(let ((gravatar-force-default nil))
(should (equal (gravatar--query-string) "r=g")))
(let ((gravatar-force-default t))
(should (equal (gravatar--query-string) "r=g&f=y")))))
(ert-deftest gravatar-build-url ()
"Test `gravatar-build-url'."
(let ((gravatar-default-image nil)
(gravatar-force-default nil)
(gravatar-size nil)
(gravatar-service 'gravatar)
url)
(gravatar-build-url "foo" (lambda (u) (setq url u)))
(while (not url)
(sleep-for 0.01))
(should (equal url "\
https://www.gravatar.com/avatar/acbd18db4cc2f85cedef654fccc4a4d8?r=g"))))
;;; gravatar-tests.el ends here
|