mirror of
https://github.com/logseq/logseq.git
synced 2026-04-29 08:26:40 +00:00
enhance: asset import supports multiple assets
per block and preserves text around assets. These were both enabled by moving asset blocks to Asset page
This commit is contained in:
committed by
Tienson Qin
parent
501063e625
commit
ace71b2b25
@@ -1,7 +1,7 @@
|
||||
(ns ^:node-only logseq.graph-parser.exporter-test
|
||||
(:require ["fs" :as fs]
|
||||
["path" :as node-path]
|
||||
[cljs.test :refer [testing is]]
|
||||
[cljs.test :refer [testing is are deftest]]
|
||||
[clojure.set :as set]
|
||||
[clojure.string :as string]
|
||||
[datascript.core :as d]
|
||||
@@ -10,6 +10,7 @@
|
||||
[logseq.common.util.date-time :as date-time-util]
|
||||
[logseq.db :as ldb]
|
||||
[logseq.db.common.entity-plus :as entity-plus]
|
||||
[logseq.db.frontend.asset :as db-asset]
|
||||
[logseq.db.frontend.content :as db-content]
|
||||
[logseq.db.frontend.malli-schema :as db-malli-schema]
|
||||
[logseq.db.frontend.rules :as rules]
|
||||
@@ -20,8 +21,7 @@
|
||||
[logseq.graph-parser.test.docs-graph-helper :as docs-graph-helper]
|
||||
[logseq.graph-parser.test.helper :as test-helper :include-macros true :refer [deftest-async]]
|
||||
[logseq.outliner.db-pipeline :as db-pipeline]
|
||||
[promesa.core :as p]
|
||||
[logseq.db.frontend.asset :as db-asset]))
|
||||
[promesa.core :as p]))
|
||||
|
||||
;; Helpers
|
||||
;; =======
|
||||
@@ -145,6 +145,24 @@
|
||||
;; Tests
|
||||
;; =====
|
||||
|
||||
(deftest update-asset-links-in-block-title
|
||||
(are [x y]
|
||||
(= y (@#'gp-exporter/update-asset-links-in-block-title (first x) {(second x) "UUID"} (atom {})))
|
||||
;; Standard image link with metadata
|
||||
["{:height 288, :width 100} says pop"
|
||||
"assets/greg-popovich-thumbs-up_1704749687791_0.png"]
|
||||
"[[UUID]] says pop"
|
||||
|
||||
;; Image link with no metadata
|
||||
[""
|
||||
"assets/CleanShot_2022-10-12_at_15.53.20@2x_1665561216083_0.png"]
|
||||
"[[UUID]]"
|
||||
|
||||
;; 2nd link
|
||||
["[[FIRST UUID]] and "
|
||||
"assets/subdir/partydino.gif"]
|
||||
"[[FIRST UUID]] and [[UUID]]"))
|
||||
|
||||
(deftest-async ^:integration export-docs-graph-with-convert-all-tags
|
||||
(p/let [file-graph-dir "test/resources/docs-0.10.12"
|
||||
start-time (cljs.core/system-time)
|
||||
@@ -163,6 +181,7 @@
|
||||
(is (empty? (map :entity (:errors (db-validate/validate-db! @conn))))
|
||||
"Created graph has no validation errors")
|
||||
(is (= 0 (count @(:ignored-properties import-state))) "No ignored properties")
|
||||
(is (= 0 (count @(:ignored-assets import-state))) "No ignored assets")
|
||||
(is (= []
|
||||
(->> (d/q '[:find (pull ?b [:block/title {:block/tags [:db/ident]}])
|
||||
:where [?b :block/tags :logseq.class/Tag]]
|
||||
@@ -189,7 +208,7 @@
|
||||
;; Includes journals as property values e.g. :logseq.property/deadline
|
||||
(is (= 26 (count (d/q '[:find ?b :where [?b :block/tags :logseq.class/Journal]] @conn))))
|
||||
|
||||
(is (= 2 (count (d/q '[:find ?b :where [?b :block/tags :logseq.class/Asset]] @conn))))
|
||||
(is (= 3 (count (d/q '[:find ?b :where [?b :block/tags :logseq.class/Asset]] @conn))))
|
||||
(is (= 4 (count (d/q '[:find ?b :where [?b :block/tags :logseq.class/Task]] @conn))))
|
||||
(is (= 4 (count (d/q '[:find ?b :where [?b :block/tags :logseq.class/Query]] @conn))))
|
||||
(is (= 2 (count (d/q '[:find ?b :where [?b :block/tags :logseq.class/Card]] @conn))))
|
||||
@@ -215,7 +234,7 @@
|
||||
(is (= 0 (count @(:ignored-properties import-state))) "No ignored properties")
|
||||
(is (= 0 (count @(:ignored-assets import-state))) "No ignored assets")
|
||||
(is (= 1 (count @(:ignored-files import-state))) "Ignore .edn for now")
|
||||
(is (= 2 (count @assets))))
|
||||
(is (= 3 (count @assets))))
|
||||
|
||||
(testing "logseq files"
|
||||
(is (= ".foo {}\n"
|
||||
@@ -392,7 +411,11 @@
|
||||
:logseq.property.asset/checksum "3d5e620cac62159d8196c118574bfea7a16e86fa86efd1c3fa15a00a0a08792d"
|
||||
:logseq.property.asset/size 753471
|
||||
:logseq.property.asset/resize-metadata {:height 288, :width 252}}
|
||||
(db-test/readable-properties (db-test/find-block-by-content @conn "greg-popovich-thumbs-up_1704749687791_0")))))
|
||||
(db-test/readable-properties (db-test/find-block-by-content @conn "greg-popovich-thumbs-up_1704749687791_0")))
|
||||
"Asset has correct properties")
|
||||
(is (= (d/entity @conn :logseq.class/Asset)
|
||||
(:block/page (db-test/find-block-by-content @conn "greg-popovich-thumbs-up_1704749687791_0")))
|
||||
"Imported into Asset page"))
|
||||
|
||||
(testing "tags convert to classes"
|
||||
(is (= :user.class/Quotes___life
|
||||
|
||||
Reference in New Issue
Block a user