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 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194
|
;;; clojure-mode-cycling-test.el --- Clojure Mode: cycling things tests -*- lexical-binding: t; -*-
;; Copyright (C) 2016-2021 Benedek Fazekas <benedek.fazekas@gmail.com>
;; This file is not part of GNU Emacs.
;; 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:
;; The cycling privacy and if/if-not code is ported from
;; clj-refactor.el and the work of the clj-reafctor.el team.
;;; Code:
(require 'clojure-mode)
(require 'buttercup)
(describe "clojure-cycle-privacy"
(when-refactoring-it "should turn a public defn into a private defn"
"(defn add [a b]
(+ a b))"
"(defn- add [a b]
(+ a b))"
(clojure-cycle-privacy))
(when-refactoring-it "should also work from the beginning of a sexp"
"(defn- add [a b]
(+ a b))"
"(defn add [a b]
(+ a b))"
(backward-sexp)
(clojure-cycle-privacy))
(when-refactoring-it "should use metadata when clojure-use-metadata-for-privacy is set to true"
"(defn add [a b]
(+ a b))"
"(defn ^:private add [a b]
(+ a b))"
(let ((clojure-use-metadata-for-privacy t))
(clojure-cycle-privacy)))
(when-refactoring-it "should turn a private defn into a public defn"
"(defn- add [a b]
(+ a b))"
"(defn add [a b]
(+ a b))"
(clojure-cycle-privacy))
(when-refactoring-it "should turn a private defn with metadata into a public defn"
"(defn ^:private add [a b]
(+ a b))"
"(defn add [a b]
(+ a b))"
(let ((clojure-use-metadata-for-privacy t))
(clojure-cycle-privacy)))
(when-refactoring-it "should also work with pre-existing metadata"
"(def ^:dynamic config
\"docs\"
{:env \"staging\"})"
"(def ^:private ^:dynamic config
\"docs\"
{:env \"staging\"})"
(clojure-cycle-privacy))
(when-refactoring-it "should turn a private def with metadata into a public def"
"(def ^:private config
\"docs\"
{:env \"staging\"})"
"(def config
\"docs\"
{:env \"staging\"})"
(clojure-cycle-privacy)))
(describe "clojure-cycle-if"
(when-refactoring-it "should cycle inner if"
"(if this
(if that
(then AAA)
(else BBB))
(otherwise CCC))"
"(if this
(if-not that
(else BBB)
(then AAA))
(otherwise CCC))"
(beginning-of-buffer)
(search-forward "BBB)")
(clojure-cycle-if))
(when-refactoring-it "should cycle outer if"
"(if-not this
(if that
(then AAA)
(else BBB))
(otherwise CCC))"
"(if this
(otherwise CCC)
(if that
(then AAA)
(else BBB)))"
(beginning-of-buffer)
(search-forward "BBB))")
(clojure-cycle-if)))
(describe "clojure-cycle-when"
(when-refactoring-it "should cycle inner when"
"(when this
(when that
(aaa)
(bbb))
(ccc))"
"(when this
(when-not that
(aaa)
(bbb))
(ccc))"
(beginning-of-buffer)
(search-forward "bbb)")
(clojure-cycle-when))
(when-refactoring-it "should cycle outer when"
"(when-not this
(when that
(aaa)
(bbb))
(ccc))"
"(when this
(when that
(aaa)
(bbb))
(ccc))"
(beginning-of-buffer)
(search-forward "bbb))")
(clojure-cycle-when)))
(describe "clojure-cycle-not"
(when-refactoring-it "should add a not when missing"
"(ala bala portokala)"
"(not (ala bala portokala))"
(beginning-of-buffer)
(search-forward "bala")
(clojure-cycle-not))
(when-refactoring-it "should remove a not when present"
"(not (ala bala portokala))"
"(ala bala portokala)"
(beginning-of-buffer)
(search-forward "bala")
(clojure-cycle-not)))
(provide 'clojure-mode-cycling-test)
;;; clojure-mode-cycling-test.el ends here
|