0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-01-09 16:30:37 -05:00
penpot/backend/test/app/services_projects_test.clj

241 lines
8.1 KiB
Clojure
Raw Normal View History

;; This Source Code Form is subject to the terms of the Mozilla Public
;; License, v. 2.0. If a copy of the MPL was not distributed with this
;; file, You can obtain one at http://mozilla.org/MPL/2.0/.
;;
2021-04-10 02:43:04 -05:00
;; Copyright (c) UXBOX Labs SL
(ns app.services-projects-test
(:require
[app.common.uuid :as uuid]
[app.db :as db]
[app.http :as http]
[app.test-helpers :as th]
[app.util.time :as dt]
[clojure.test :as t]))
2019-06-15 11:20:36 -05:00
(t/use-fixtures :once th/state-init)
(t/use-fixtures :each th/database-reset)
(t/deftest projects-simple-crud
(let [profile (th/create-profile* 1)
team (th/create-team* 1 {:profile-id (:id profile)})
project-id (uuid/next)]
;; create project
2021-01-31 11:02:10 -05:00
(let [data {::th/type :create-project
:id project-id
:profile-id (:id profile)
2021-01-31 11:02:10 -05:00
:team-id (:id team)
:name "test project"}
out (th/mutation! data)]
;; (th/print-result! out)
2021-01-31 11:02:10 -05:00
(t/is (nil? (:error out)))
(let [result (:result out)]
(t/is (= (:name data) (:name result)))))
;; query the list of projects of a team
2021-01-31 11:02:10 -05:00
(let [data {::th/type :projects
:team-id (:id team)
:profile-id (:id profile)}
2021-01-31 11:02:10 -05:00
out (th/query! data)]
;; (th/print-result! out)
2021-01-31 11:02:10 -05:00
(t/is (nil? (:error out)))
(let [result (:result out)]
2021-11-03 07:10:49 -05:00
(t/is (= 2 (count result)))
2021-01-31 11:02:10 -05:00
(t/is project-id (get-in result [0 :id]))
(t/is (= "test project" (get-in result [0 :name])))))
;; query all projects of a user
(let [data {::th/type :all-projects
:profile-id (:id profile)}
out (th/query! data)]
;; (th/print-result! out)
(t/is (nil? (:error out)))
(let [result (:result out)]
2021-11-03 07:10:49 -05:00
(t/is (= 3 (count result)))
(t/is (not= project-id (get-in result [0 :id])))
(t/is (= "Drafts" (get-in result [0 :name])))
2021-03-16 09:31:34 -05:00
(t/is (= "Default" (get-in result [0 :team-name])))
(t/is (= true (get-in result [0 :is-default-team])))
2021-11-03 07:10:49 -05:00
(t/is project-id (get-in result [2 :id]))
(t/is (= "test project" (get-in result [2 :name])))
(t/is (= "team1" (get-in result [2 :team-name])))
(t/is (= false (get-in result [2 :is-default-team])))))
;; rename project
2021-01-31 11:02:10 -05:00
(let [data {::th/type :rename-project
:id project-id
:name "renamed project"
:profile-id (:id profile)}
2021-01-31 11:02:10 -05:00
out (th/mutation! data)]
;; (th/print-result! out)
(t/is (nil? (:error out)))
(t/is (nil? (:result out))))
2021-01-31 11:02:10 -05:00
;; retrieve project
(let [data {::th/type :project
:id project-id
:profile-id (:id profile)}
2021-01-31 11:02:10 -05:00
out (th/query! data)]
;; (th/print-result! out)
(t/is (nil? (:error out)))
(let [result (:result out)]
(t/is (= "renamed project" (:name result)))))
2021-01-31 11:02:10 -05:00
;; delete project
(let [data {::th/type :delete-project
:id project-id
:profile-id (:id profile)}
2021-01-31 11:02:10 -05:00
out (th/mutation! data)]
;; (th/print-result! out)
2021-01-31 11:02:10 -05:00
(t/is (nil? (:error out)))
(t/is (nil? (:result out))))
2021-11-03 07:10:49 -05:00
;; query a list of projects after delete
2021-01-31 11:02:10 -05:00
(let [data {::th/type :projects
:team-id (:id team)
:profile-id (:id profile)}
2021-01-31 11:02:10 -05:00
out (th/query! data)]
;; (th/print-result! out)
(t/is (nil? (:error out)))
(let [result (:result out)]
2021-11-03 07:10:49 -05:00
(t/is (= 1 (count result)))))
2021-01-31 11:02:10 -05:00
))
(t/deftest permissions-checks-create-project
(let [profile1 (th/create-profile* 1)
profile2 (th/create-profile* 2)
data {::th/type :create-project
:profile-id (:id profile2)
:team-id (:default-team-id profile1)
:name "test project"}
out (th/mutation! data)
error (:error out)]
;; (th/print-result! out)
(t/is (th/ex-info? error))
(t/is (th/ex-of-type? error :not-found))))
(t/deftest permissions-checks-rename-project
(let [profile1 (th/create-profile* 1)
profile2 (th/create-profile* 2)
project (th/create-project* 1 {:team-id (:default-team-id profile1)
:profile-id (:id profile1)})
data {::th/type :rename-project
:id (:id project)
:profile-id (:id profile2)
:name "foobar"}
out (th/mutation! data)
error (:error out)]
;; (th/print-result! out)
(t/is (th/ex-info? error))
(t/is (th/ex-of-type? error :not-found))))
(t/deftest permissions-checks-delete-project
(let [profile1 (th/create-profile* 1)
profile2 (th/create-profile* 2)
project (th/create-project* 1 {:team-id (:default-team-id profile1)
:profile-id (:id profile1)})
data {::th/type :delete-project
:id (:id project)
:profile-id (:id profile2)}
out (th/mutation! data)
error (:error out)]
;; (th/print-result! out)
(t/is (th/ex-info? error))
(t/is (th/ex-of-type? error :not-found))))
(t/deftest permissions-checks-delete-project
(let [profile1 (th/create-profile* 1)
profile2 (th/create-profile* 2)
project (th/create-project* 1 {:team-id (:default-team-id profile1)
:profile-id (:id profile1)})
data {::th/type :update-project-pin
:id (:id project)
:team-id (:default-team-id profile1)
:profile-id (:id profile2)
:is-pinned true}
out (th/mutation! data)
error (:error out)]
;; (th/print-result! out)
(t/is (th/ex-info? error))
(t/is (th/ex-of-type? error :not-found))))
(t/deftest test-deletion
(let [task (:app.tasks.objects-gc/handler th/*system*)
profile1 (th/create-profile* 1)
project (th/create-project* 1 {:team-id (:default-team-id profile1)
:profile-id (:id profile1)})]
;; project is not deleted because it does not meet all
;; conditions to be deleted.
(let [result (task {:max-age (dt/duration 0)})]
(t/is (nil? result)))
;; query the list of projects
(let [data {::th/type :projects
:team-id (:default-team-id profile1)
:profile-id (:id profile1)}
out (th/query! data)]
;; (th/print-result! out)
(t/is (nil? (:error out)))
(let [result (:result out)]
(t/is (= 2 (count result)))))
;; Request project to be deleted
(let [params {::th/type :delete-project
:id (:id project)
:profile-id (:id profile1)}
out (th/mutation! params)]
(t/is (nil? (:error out))))
;; query the list of projects after soft deletion
(let [data {::th/type :projects
:team-id (:default-team-id profile1)
:profile-id (:id profile1)}
out (th/query! data)]
;; (th/print-result! out)
(t/is (nil? (:error out)))
(let [result (:result out)]
(t/is (= 1 (count result)))))
;; run permanent deletion (should be noop)
(let [result (task {:max-age (dt/duration {:minutes 1})})]
(t/is (nil? result)))
;; query the list of files of a after soft deletion
(let [data {::th/type :project-files
:project-id (:id project)
:profile-id (:id profile1)}
out (th/query! data)]
;; (th/print-result! out)
(t/is (nil? (:error out)))
(let [result (:result out)]
(t/is (= 0 (count result)))))
;; run permanent deletion
(let [result (task {:max-age (dt/duration 0)})]
(t/is (nil? result)))
;; query the list of files of a after hard deletion
(let [data {::th/type :project-files
:project-id (:id project)
:profile-id (:id profile1)}
out (th/query! data)]
;; (th/print-result! out)
(let [error (:error out)
error-data (ex-data error)]
(t/is (th/ex-info? error))
(t/is (= (:type error-data) :not-found))))
))