12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- (ns logseq.graph-parser.extract-test
- (:require [cljs.test :refer [deftest is]]
- [logseq.graph-parser.extract :as extract]
- [clojure.pprint :as pprint]))
- (defn- extract
- [text]
- (let [result (extract/extract-blocks-pages "a.md" text {:block-pattern "-"})
- result (last result)
- lefts (map (juxt :block/parent :block/left) result)]
- (if (not= (count lefts) (count (distinct lefts)))
- (do
- (pprint/pprint (map (fn [x] (select-keys x [:block/uuid :block/level :block/content :block/left])) result))
- (throw (js/Error. ":block/parent && :block/left conflicts")))
- (mapv :block/content result))))
- (deftest test-extract-blocks-pages
- []
- (is (= ["a" "b" "c"]
- (extract
- "- a
- - b
- - c")))
- (is (= ["## hello" "world" "nice" "nice" "bingo" "world"]
- (extract "## hello
- - world
- - nice
- - nice
- - bingo
- - world")))
- (is (= ["# a" "## b" "### c" "#### d" "### e" "f" "g" "h" "i" "j"]
- (extract "# a
- ## b
- ### c
- #### d
- ### e
- - f
- - g
- - h
- - i
- - j"))))
- (deftest test-regression-1902
- []
- (is (= ["line1" "line2" "line3" "line4"]
- (extract
- "- line1
- - line2
- - line3
- - line4"))))
|