Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Convert extract tests, fix test setup #595

Merged
merged 2 commits into from
Aug 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
193 changes: 193 additions & 0 deletions fnl/conjure-spec/extract_spec.fnl
Original file line number Diff line number Diff line change
@@ -0,0 +1,193 @@
(local {: describe : it} (require :plenary.busted))
(local assert (require :luassert.assert))
(local extract (require :conjure.extract))
(local nvim (require :conjure.aniseed.nvim))

(describe "extract"
(fn []
;; Three functions to approximate the functionality in
;; legacy-aniseed-tests/fnl/conjure/test/buffer.fnl.

;; A function to position the cursor in the buffer.
(fn at [cursor]
(nvim.win_set_cursor 0 cursor))

;; Set up a buffer with lines to use for tests.
(fn setup [lines]
(nvim.ex.silent_ :syntax :on)
(nvim.ex.silent_ :filetype :on)
(nvim.ex.silent_ :set :filetype :clojure)
(nvim.ex.silent_ :edit (.. (nvim.fn.tempname) "_test.clj"))
(nvim.buf_set_lines 0 0 -1 false lines))

;; Delete the buffer used for tests.
(fn teardown []
(nvim.ex.silent_ :bdelete!))

;; Test groups.
(describe "current-form"
(fn []
(setup ["(ns foo)"
""
"(+ 10 20 (* 10 2))"])

(it "inside the form"
(fn []
(at [3 10])
(assert.same {:range {:start [3 9]
:end [3 16]}
:content "(* 10 2)"}
(extract.form {}))))

(it "on the opening paren"
(fn []
(at [3 9])
(assert.same {:range {:start [3 9]
:end [3 16]}
:content "(* 10 2)"}
(extract.form {}))))

(it "on the closing paren"
(fn []
(at [3 16])
(assert.same {:range {:start [3 9]
:end [3 16]}
:content "(* 10 2)"}
(extract.form {}))))

(it "one before the inner form"
(fn []
(at [3 8])
(assert.same {:range {:start [3 0]
:end [3 17]}
:content "(+ 10 20 (* 10 2))"}
(extract.form {}))))

(it "on the last paren of the outer form"
(fn []
(at [3 17])
(assert.same {:range {:start [3 0]
:end [3 17]}
:content "(+ 10 20 (* 10 2))"}
(extract.form {}))))

(it "matching nothing"
(fn []
(at [2 0])
(assert.are.equals nil (extract.form {}))))

(it "ns form"
(fn []
(at [1 0])
(assert.same {:range {:start [1 0]
:end [1 7]}
:content "(ns foo)"}
(extract.form {}))))

(teardown)))

(describe "root-form"
(fn []
(setup ["(ns foo)"
""
"(+ 10 20 (* 10 2))"])

(it "root from inside a child form"
(fn []
(at [3 10])
(assert.same {:range {:start [3 0]
:end [3 17]}
:content "(+ 10 20 (* 10 2))"}
(extract.form {:root? true}))))

(it "root from the root"
(fn []
(at [3 6])
(assert.same {:range {:start [3 0]
:end [3 17]}
:content "(+ 10 20 (* 10 2))"}
(extract.form {:root? true}))))

(it "root from the opening paren of the root"
(fn []
(at [3 0])
(assert.same {:range {:start [3 0]
:end [3 17]}
:content "(+ 10 20 (* 10 2))"}
(extract.form {:root? true}))))

(it "root from the opening paren of the child form"
(fn []
(at [3 9])
(assert.same {:range {:start [3 0]
:end [3 17]}
:content "(+ 10 20 (* 10 2))"}
(extract.form {:root? true}))))

(it "matching nothing for root"
(fn []
(at [2 0])
(assert.equals nil (extract.form {:root? true}))))

(teardown)))

(describe "ignoring-comments"
(fn []
(setup ["(ns ohno)"
""
"(inc"
" ; ()"
" 5)"])

(it "skips the comment paren with current form"
(fn []
(at [4 0])
(assert.same {:range {:start [3 0]
:end [5 2]}
:content "(inc\n ; ()\n 5)"}
(extract.form {}))))

(it "skips the comment paren with root form"
(fn []
(at [4 0])
(assert.same {:range {:start [3 0]
:end [5 2]}
:content "(inc\n ; ()\n 5)"}
(extract.form {:root? true}))))

(teardown)))

(describe "escaped-parens"
(fn []
(setup ["(str \\))"])

(it "escaped parens are skipped over"
(fn []
(at [1 0])
(assert.same {:range {:start [1 0]
:end [1 7]}
:content "(str \\))"}
(extract.form {}))))

(teardown)

;; https://github.com/Olical/conjure/issues/246
(setup ["(ns foo)"
""
"(+ 10 20 (* 10 2))"
""
"(+ 1 2)"
"; )"
""
"(+ 4 6)"])

(it "root from a form with a commented closing paren on the next line"
(fn []
(at [5 2])
(assert.same {:range {:start [5 0]
:end [5 6]}
:content "(+ 1 2)"}
(extract.form {:root? true}))))

(teardown)))))

125 changes: 125 additions & 0 deletions lua/conjure-spec/extract_spec.lua

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion scripts/setup-test-deps
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ fi
if [ -d "$PACK_DIR/aniseed" ]; then
echo "aniseed already exists"
else
git clone https://github.com/bakpakin/fennel.vim.git "$PACK_DIR/aniseed"
git clone https://github.com/Olical/aniseed.git "$PACK_DIR/aniseed"
fi

if [ -d "$PACK_DIR/conjure" ]; then
Expand Down