;;;; mirror-img/tests: Tests for the mirror-img package. ;; Copyright © 2024 Jaidyn Ann ;; ;; 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 . (defpackage :mirror-img/tests (:use :cl :lisp-unit2)) (in-package :mirror-img/tests) (define-test mirrored-pathname (:tags '(base)) (assert-equal (mirror-img::mirrored-pathname "https://invalid.tld/dir/bird apple.txt" #p"base/") #p"base/invalid.tld/bird apple.txt")) (define-test url-encode-uri.space (:tags '(util)) (assert-equal (mirror-img::url-encode-uri "https://invalid.tld/dad alive.jpg") "https://invalid.tld/dad%20alive.jpg")) (define-test url-encode-path.space+exclamation (:tags '(util)) (assert-equal (mirror-img::url-encode-path "/images!/dad alive.jpg") "/images%21/dad%20alive.jpg"))