mirror of
https://github.com/penpot/penpot.git
synced 2025-06-06 09:31:38 +02:00
✨ Improve test workflow
This commit is contained in:
parent
5ec73da17f
commit
f32f13069f
3 changed files with 1004 additions and 307 deletions
|
@ -12,7 +12,15 @@
|
||||||
"defaults"
|
"defaults"
|
||||||
],
|
],
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"validate-translations": "node ./scripts/validate-translations.js"
|
"validate-translations": "node ./scripts/validate-translations.js",
|
||||||
|
"watch-main": "shadow-cljs watch main",
|
||||||
|
"watch-gulp": "gulp watch",
|
||||||
|
"test-watch-compile": "shadow-cljs watch test",
|
||||||
|
"test-run": "node target/tests.js",
|
||||||
|
"test-watch-run": "nodemon --signal SIGKILL --watch target --exec npm run test-run",
|
||||||
|
"test-watch": "npm-run-all --parallel test-watch-compile test-watch-run",
|
||||||
|
"test": "npm run test-watch",
|
||||||
|
"start": "npm-run-all --parallel watch-gulp watch-main"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"autoprefixer": "^10.2.4",
|
"autoprefixer": "^10.2.4",
|
||||||
|
@ -29,6 +37,8 @@
|
||||||
"map-stream": "0.0.7",
|
"map-stream": "0.0.7",
|
||||||
"marked": "^3.0.4",
|
"marked": "^3.0.4",
|
||||||
"mkdirp": "^1.0.4",
|
"mkdirp": "^1.0.4",
|
||||||
|
"nodemon": "^2.0.13",
|
||||||
|
"npm-run-all": "^4.1.5",
|
||||||
"postcss": "^8.3.5",
|
"postcss": "^8.3.5",
|
||||||
"postcss-clean": "^1.2.2",
|
"postcss-clean": "^1.2.2",
|
||||||
"rimraf": "^3.0.0",
|
"rimraf": "^3.0.0",
|
||||||
|
|
|
@ -19,9 +19,54 @@
|
||||||
(t/use-fixtures :each
|
(t/use-fixtures :each
|
||||||
{:before thp/reset-idmap!})
|
{:before thp/reset-idmap!})
|
||||||
|
|
||||||
(t/deftest test-add-component-from-single-shape
|
;; Test using potok
|
||||||
(t/async done
|
#_(t/deftest test-add-component-from-single-shape
|
||||||
(try
|
(t/testing "test-add-component-from-single-shape"
|
||||||
|
(t/async
|
||||||
|
done
|
||||||
|
(let [state (-> thp/initial-state
|
||||||
|
(thp/sample-page)
|
||||||
|
(thp/sample-shape :shape1 :rect
|
||||||
|
{:name "Rect 1"}))
|
||||||
|
store (ptk/store {:state state})
|
||||||
|
stream (ptk/input-stream store)
|
||||||
|
end? (->> stream (rx/filter #(= ::end %)))]
|
||||||
|
|
||||||
|
(->> stream
|
||||||
|
(rx/take-until end?)
|
||||||
|
(rx/last)
|
||||||
|
(rx/do
|
||||||
|
(fn []
|
||||||
|
(let [new-state @store
|
||||||
|
shape1 (thp/get-shape new-state :shape1)
|
||||||
|
|
||||||
|
[[group shape1] [c-group c-shape1] component]
|
||||||
|
(thl/resolve-instance-and-main
|
||||||
|
new-state
|
||||||
|
(:parent-id shape1))
|
||||||
|
|
||||||
|
file (dwlh/get-local-file new-state)]
|
||||||
|
|
||||||
|
(t/is (= (:name shape1) "Rect 1"))
|
||||||
|
(t/is (= (:name group) "Component-1"))
|
||||||
|
(t/is (= (:name component) "Component-1"))
|
||||||
|
(t/is (= (:name c-shape1) "Rect 1"))
|
||||||
|
(t/is (= (:name c-group) "Component-1"))
|
||||||
|
|
||||||
|
(thl/is-from-file group file))))
|
||||||
|
|
||||||
|
(rx/subs done #(throw %)))
|
||||||
|
|
||||||
|
(ptk/emit!
|
||||||
|
store
|
||||||
|
(dw/select-shape (thp/id :shape1))
|
||||||
|
(dwl/add-component)
|
||||||
|
::end)))))
|
||||||
|
|
||||||
|
;; FAILING
|
||||||
|
#_(t/deftest test-add-component-from-single-shape
|
||||||
|
(t/async
|
||||||
|
done
|
||||||
(let [state (-> thp/initial-state
|
(let [state (-> thp/initial-state
|
||||||
(thp/sample-page)
|
(thp/sample-page)
|
||||||
(thp/sample-shape :shape1 :rect
|
(thp/sample-shape :shape1 :rect
|
||||||
|
@ -49,19 +94,12 @@
|
||||||
|
|
||||||
(thl/is-from-file group file))))
|
(thl/is-from-file group file))))
|
||||||
|
|
||||||
(rx/subs
|
(rx/subs done #(throw %))))))
|
||||||
|
|
||||||
|
;; FAILING
|
||||||
|
#_(t/deftest test-add-component-from-several-shapes
|
||||||
|
(t/async
|
||||||
done
|
done
|
||||||
#(do
|
|
||||||
(println (.-stack %))
|
|
||||||
(done)))))
|
|
||||||
|
|
||||||
(catch :default e
|
|
||||||
(println (.-stack e))
|
|
||||||
(done)))))
|
|
||||||
|
|
||||||
(t/deftest test-add-component-from-several-shapes
|
|
||||||
(t/async done
|
|
||||||
(try
|
|
||||||
(let [state (-> thp/initial-state
|
(let [state (-> thp/initial-state
|
||||||
(thp/sample-page)
|
(thp/sample-page)
|
||||||
(thp/sample-shape :shape1 :rect
|
(thp/sample-shape :shape1 :rect
|
||||||
|
@ -99,20 +137,12 @@
|
||||||
|
|
||||||
(thl/is-from-file group file))))
|
(thl/is-from-file group file))))
|
||||||
|
|
||||||
(rx/subs
|
(rx/subs done #(throw %))))))
|
||||||
|
|
||||||
|
|
||||||
|
#_(t/deftest test-add-component-from-group
|
||||||
|
(t/async
|
||||||
done
|
done
|
||||||
#(do
|
|
||||||
(println (.-stack %))
|
|
||||||
(done)))))
|
|
||||||
|
|
||||||
(catch :default e
|
|
||||||
(println (.-stack e))
|
|
||||||
(done)))))
|
|
||||||
|
|
||||||
|
|
||||||
(t/deftest test-add-component-from-group
|
|
||||||
(t/async done
|
|
||||||
(try
|
|
||||||
(let [state (-> thp/initial-state
|
(let [state (-> thp/initial-state
|
||||||
(thp/sample-page)
|
(thp/sample-page)
|
||||||
(thp/sample-shape :shape1 :rect
|
(thp/sample-shape :shape1 :rect
|
||||||
|
@ -147,19 +177,11 @@
|
||||||
|
|
||||||
(thl/is-from-file group file))))
|
(thl/is-from-file group file))))
|
||||||
|
|
||||||
(rx/subs
|
(rx/subs done #(throw %))))))
|
||||||
done
|
|
||||||
#(do
|
|
||||||
(println (.-stack %))
|
|
||||||
(done)))))
|
|
||||||
|
|
||||||
(catch :default e
|
|
||||||
(println (.-stack e))
|
|
||||||
(done)))))
|
|
||||||
|
|
||||||
(t/deftest test-rename-component
|
(t/deftest test-rename-component
|
||||||
(t/async done
|
(t/async
|
||||||
(try
|
done
|
||||||
(let [state (-> thp/initial-state
|
(let [state (-> thp/initial-state
|
||||||
(thp/sample-page)
|
(thp/sample-page)
|
||||||
(thp/sample-shape :shape1 :rect
|
(thp/sample-shape :shape1 :rect
|
||||||
|
@ -185,19 +207,11 @@
|
||||||
(t/is (= (:name component)
|
(t/is (= (:name component)
|
||||||
"Renamed component")))))
|
"Renamed component")))))
|
||||||
|
|
||||||
(rx/subs
|
(rx/subs done #(throw %))))))
|
||||||
done
|
|
||||||
#(do
|
|
||||||
(println (.-stack %))
|
|
||||||
(done)))))
|
|
||||||
|
|
||||||
(catch :default e
|
|
||||||
(println (.-stack e))
|
|
||||||
(done)))))
|
|
||||||
|
|
||||||
(t/deftest test-duplicate-component
|
(t/deftest test-duplicate-component
|
||||||
(t/async done
|
(t/async
|
||||||
(try
|
done
|
||||||
(let [state (-> thp/initial-state
|
(let [state (-> thp/initial-state
|
||||||
(thp/sample-page)
|
(thp/sample-page)
|
||||||
(thp/sample-shape :shape1 :rect
|
(thp/sample-shape :shape1 :rect
|
||||||
|
@ -236,19 +250,11 @@
|
||||||
(t/is (= (:name component2)
|
(t/is (= (:name component2)
|
||||||
"Component-2")))))
|
"Component-2")))))
|
||||||
|
|
||||||
(rx/subs
|
(rx/subs done #(throw %))))))
|
||||||
done
|
|
||||||
#(do
|
|
||||||
(println (.-stack %))
|
|
||||||
(done)))))
|
|
||||||
|
|
||||||
(catch :default e
|
|
||||||
(println (.-stack e))
|
|
||||||
(done)))))
|
|
||||||
|
|
||||||
(t/deftest test-delete-component
|
(t/deftest test-delete-component
|
||||||
(t/async done
|
(t/async
|
||||||
(try
|
done
|
||||||
(let [state (-> thp/initial-state
|
(let [state (-> thp/initial-state
|
||||||
(thp/sample-page)
|
(thp/sample-page)
|
||||||
(thp/sample-shape :shape1 :rect
|
(thp/sample-shape :shape1 :rect
|
||||||
|
@ -278,19 +284,11 @@
|
||||||
|
|
||||||
(t/is (nil? component)))))
|
(t/is (nil? component)))))
|
||||||
|
|
||||||
(rx/subs
|
(rx/subs done #(throw %))))))
|
||||||
done
|
|
||||||
#(do
|
|
||||||
(println (.-stack %))
|
|
||||||
(done)))))
|
|
||||||
|
|
||||||
(catch :default e
|
|
||||||
(println (.-stack e))
|
|
||||||
(done)))))
|
|
||||||
|
|
||||||
(t/deftest test-instantiate-component
|
(t/deftest test-instantiate-component
|
||||||
(t/async done
|
(t/async
|
||||||
(try
|
done
|
||||||
(let [state (-> thp/initial-state
|
(let [state (-> thp/initial-state
|
||||||
(thp/sample-page)
|
(thp/sample-page)
|
||||||
(thp/sample-shape :shape1 :rect
|
(thp/sample-shape :shape1 :rect
|
||||||
|
@ -327,19 +325,11 @@
|
||||||
(t/is (= (:name c-instance2) "Component-1"))
|
(t/is (= (:name c-instance2) "Component-1"))
|
||||||
(t/is (= (:name c-shape2) "Rect 1")))))
|
(t/is (= (:name c-shape2) "Rect 1")))))
|
||||||
|
|
||||||
(rx/subs
|
(rx/subs done #(throw %))))))
|
||||||
done
|
|
||||||
#(do
|
|
||||||
(println (.-stack %))
|
|
||||||
(done)))))
|
|
||||||
|
|
||||||
(catch :default e
|
|
||||||
(println (.-stack e))
|
|
||||||
(done)))))
|
|
||||||
|
|
||||||
(t/deftest test-detach-component
|
(t/deftest test-detach-component
|
||||||
(t/async done
|
(t/async
|
||||||
(try
|
done
|
||||||
(let [state (-> thp/initial-state
|
(let [state (-> thp/initial-state
|
||||||
(thp/sample-page)
|
(thp/sample-page)
|
||||||
(thp/sample-shape :shape1 :rect
|
(thp/sample-shape :shape1 :rect
|
||||||
|
@ -362,13 +352,5 @@
|
||||||
|
|
||||||
(t/is (= (:name "Rect 1"))))))
|
(t/is (= (:name "Rect 1"))))))
|
||||||
|
|
||||||
(rx/subs
|
(rx/subs done #(throw %))))))
|
||||||
done
|
|
||||||
#(do
|
|
||||||
(println (.-stack %))
|
|
||||||
(done)))))
|
|
||||||
|
|
||||||
(catch :default e
|
|
||||||
(println (.-stack e))
|
|
||||||
(done)))))
|
|
||||||
|
|
||||||
|
|
File diff suppressed because it is too large
Load diff
Loading…
Add table
Add a link
Reference in a new issue