2021-02-11 11:57:41 -05:00
|
|
|
;; 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
|
2021-02-11 11:57:41 -05:00
|
|
|
|
2021-05-28 06:50:42 -05:00
|
|
|
(ns app.services-teams-test
|
2021-02-11 11:57:41 -05:00
|
|
|
(:require
|
|
|
|
[app.common.uuid :as uuid]
|
|
|
|
[app.db :as db]
|
|
|
|
[app.http :as http]
|
|
|
|
[app.storage :as sto]
|
2021-05-28 06:50:42 -05:00
|
|
|
[app.test-helpers :as th]
|
2021-06-07 09:51:09 -05:00
|
|
|
[app.util.time :as dt]
|
2021-02-11 11:57:41 -05:00
|
|
|
[clojure.test :as t]
|
2021-05-28 06:50:42 -05:00
|
|
|
[datoteka.core :as fs]
|
|
|
|
[mockery.core :refer [with-mocks]]))
|
2021-02-11 11:57:41 -05:00
|
|
|
|
|
|
|
(t/use-fixtures :once th/state-init)
|
|
|
|
(t/use-fixtures :each th/database-reset)
|
|
|
|
|
|
|
|
(t/deftest test-invite-team-member
|
|
|
|
(with-mocks [mock {:target 'app.emails/send! :return nil}]
|
|
|
|
(let [profile1 (th/create-profile* 1 {:is-active true})
|
|
|
|
profile2 (th/create-profile* 2 {:is-active true})
|
|
|
|
profile3 (th/create-profile* 3 {:is-active true :is-muted true})
|
|
|
|
|
|
|
|
team (th/create-team* 1 {:profile-id (:id profile1)})
|
|
|
|
|
|
|
|
pool (:app.db/pool th/*system*)
|
|
|
|
data {::th/type :invite-team-member
|
|
|
|
:team-id (:id team)
|
|
|
|
:role :editor
|
|
|
|
:profile-id (:id profile1)}]
|
|
|
|
|
|
|
|
;; invite external user without complaints
|
|
|
|
(let [data (assoc data :email "foo@bar.com")
|
2022-02-15 08:18:45 -05:00
|
|
|
out (th/mutation! data)
|
|
|
|
;;retrieve the value from the database and check its content
|
|
|
|
invitation (db/exec-one!
|
|
|
|
th/*pool*
|
|
|
|
["select count(*) as num from team_invitation where team_id = ? and email_to = ?"
|
|
|
|
(:team-id data) "foo@bar.com"])]
|
2021-10-15 10:40:49 -05:00
|
|
|
|
|
|
|
;; (th/print-result! out)
|
|
|
|
|
2021-02-11 11:57:41 -05:00
|
|
|
(t/is (nil? (:result out)))
|
2022-02-15 08:18:45 -05:00
|
|
|
(t/is (= 1 (:call-count (deref mock))))
|
|
|
|
(t/is (= 1 (:num invitation))))
|
|
|
|
|
2021-02-11 11:57:41 -05:00
|
|
|
|
|
|
|
;; invite internal user without complaints
|
|
|
|
(th/reset-mock! mock)
|
|
|
|
(let [data (assoc data :email (:email profile2))
|
|
|
|
out (th/mutation! data)]
|
|
|
|
(t/is (nil? (:result out)))
|
|
|
|
(t/is (= 1 (:call-count (deref mock)))))
|
|
|
|
|
|
|
|
;; invite user with complaint
|
|
|
|
(th/create-global-complaint-for pool {:type :complaint :email "foo@bar.com"})
|
|
|
|
(th/reset-mock! mock)
|
|
|
|
(let [data (assoc data :email "foo@bar.com")
|
|
|
|
out (th/mutation! data)]
|
|
|
|
(t/is (nil? (:result out)))
|
|
|
|
(t/is (= 1 (:call-count (deref mock)))))
|
|
|
|
|
|
|
|
;; invite user with bounce
|
|
|
|
(th/reset-mock! mock)
|
|
|
|
(th/create-global-complaint-for pool {:type :bounce :email "foo@bar.com"})
|
|
|
|
(let [data (assoc data :email "foo@bar.com")
|
|
|
|
out (th/mutation! data)
|
|
|
|
error (:error out)]
|
|
|
|
|
|
|
|
(t/is (th/ex-info? error))
|
|
|
|
(t/is (th/ex-of-type? error :validation))
|
|
|
|
(t/is (th/ex-of-code? error :email-has-permanent-bounces))
|
|
|
|
(t/is (= 0 (:call-count (deref mock)))))
|
|
|
|
|
|
|
|
;; invite internal user that is muted
|
|
|
|
(th/reset-mock! mock)
|
|
|
|
(let [data (assoc data :email (:email profile3))
|
|
|
|
out (th/mutation! data)
|
|
|
|
error (:error out)]
|
|
|
|
|
|
|
|
(t/is (th/ex-info? error))
|
|
|
|
(t/is (th/ex-of-type? error :validation))
|
|
|
|
(t/is (th/ex-of-code? error :member-is-muted))
|
|
|
|
(t/is (= 0 (:call-count (deref mock)))))
|
|
|
|
|
|
|
|
)))
|
|
|
|
|
2021-06-07 09:51:09 -05:00
|
|
|
(t/deftest test-deletion
|
|
|
|
(let [task (:app.tasks.objects-gc/handler th/*system*)
|
|
|
|
profile1 (th/create-profile* 1 {:is-active true})
|
|
|
|
team (th/create-team* 1 {:profile-id (:id profile1)})
|
|
|
|
pool (:app.db/pool th/*system*)
|
|
|
|
data {::th/type :delete-team
|
|
|
|
:team-id (:id team)
|
|
|
|
:profile-id (:id profile1)}]
|
|
|
|
|
|
|
|
;; team 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 teams
|
|
|
|
(let [data {::th/type :teams
|
|
|
|
: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)))
|
|
|
|
(t/is (= (:id team) (get-in result [1 :id])))
|
|
|
|
(t/is (= (:default-team-id profile1) (get-in result [0 :id])))))
|
|
|
|
|
|
|
|
;; Request team to be deleted
|
|
|
|
(let [params {::th/type :delete-team
|
|
|
|
:id (:id team)
|
|
|
|
:profile-id (:id profile1)}
|
|
|
|
out (th/mutation! params)]
|
2021-10-15 10:40:49 -05:00
|
|
|
;; (th/print-result! out)
|
2021-06-07 09:51:09 -05:00
|
|
|
(t/is (nil? (:error out))))
|
|
|
|
|
|
|
|
;; query the list of teams after soft deletion
|
|
|
|
(let [data {::th/type :teams
|
|
|
|
: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)))
|
|
|
|
(t/is (= (:default-team-id profile1) (get-in result [0 :id])))))
|
|
|
|
|
|
|
|
;; run permanent deletion (should be noop)
|
|
|
|
(let [result (task {:max-age (dt/duration {:minutes 1})})]
|
|
|
|
(t/is (nil? result)))
|
|
|
|
|
2021-11-03 07:10:49 -05:00
|
|
|
;; query the list of projects after hard deletion
|
2021-06-07 09:51:09 -05:00
|
|
|
(let [data {::th/type :projects
|
|
|
|
:team-id (:id team)
|
|
|
|
:profile-id (:id profile1)}
|
|
|
|
out (th/query! data)]
|
|
|
|
;; (th/print-result! out)
|
2021-11-25 06:36:09 -05:00
|
|
|
(let [error (:error out)
|
|
|
|
error-data (ex-data error)]
|
|
|
|
(t/is (th/ex-info? error))
|
|
|
|
(t/is (= (:type error-data) :not-found))))
|
2021-06-07 09:51:09 -05:00
|
|
|
|
|
|
|
;; run permanent deletion
|
|
|
|
(let [result (task {:max-age (dt/duration 0)})]
|
|
|
|
(t/is (nil? result)))
|
|
|
|
|
|
|
|
;; query the list of projects of a after hard deletion
|
|
|
|
(let [data {::th/type :projects
|
|
|
|
:team-id (:id team)
|
|
|
|
: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))))
|
|
|
|
))
|
|
|
|
|
|
|
|
|
2021-02-11 11:57:41 -05:00
|
|
|
|
|
|
|
|
2022-02-15 08:18:45 -05:00
|
|
|
(t/deftest query-team-invitations
|
|
|
|
(let [prof (th/create-profile* 1 {:is-active true})
|
|
|
|
team (th/create-team* 1 {:profile-id (:id prof)})
|
|
|
|
data {::th/type :team-invitations
|
|
|
|
:profile-id (:id prof)
|
|
|
|
:team-id (:id team)}]
|
|
|
|
|
|
|
|
;;insert an entry on the database with an enabled invitation
|
|
|
|
(db/insert! th/*pool* :team-invitation
|
|
|
|
{:team-id (:team-id data)
|
|
|
|
:email-to "test1@mail.com"
|
|
|
|
:role "editor"
|
|
|
|
:valid-until (dt/in-future "48h")})
|
|
|
|
|
2021-02-11 11:57:41 -05:00
|
|
|
|
2022-02-15 08:18:45 -05:00
|
|
|
;;insert an entry on the database with an expired invitation
|
|
|
|
(db/insert! th/*pool* :team-invitation
|
|
|
|
{:team-id (:team-id data)
|
|
|
|
:email-to "test2@mail.com"
|
|
|
|
:role "editor"
|
|
|
|
:valid-until (dt/in-past "48h")})
|
|
|
|
|
|
|
|
(let [out (th/query! data)]
|
|
|
|
(t/is (nil? (:error out)))
|
|
|
|
(let [result (:result out)
|
|
|
|
one (first result)
|
|
|
|
two (second result)]
|
|
|
|
(t/is (= 2 (count result)))
|
|
|
|
(t/is (= "test1@mail.com" (:email one)))
|
|
|
|
(t/is (= "test2@mail.com" (:email two)))
|
|
|
|
(t/is (false? (:expired one)))
|
|
|
|
(t/is (true? (:expired two)))))))
|
|
|
|
|
|
|
|
|
|
|
|
(t/deftest update-team-invitation-role
|
|
|
|
(let [prof (th/create-profile* 1 {:is-active true})
|
|
|
|
team (th/create-team* 1 {:profile-id (:id prof)})
|
|
|
|
data {::th/type :update-team-invitation-role
|
|
|
|
:profile-id (:id prof)
|
|
|
|
:team-id (:id team)
|
|
|
|
:email "TEST1@mail.com"
|
|
|
|
:role :admin}]
|
|
|
|
|
|
|
|
;;insert an entry on the database with an invitation
|
|
|
|
(db/insert! th/*pool* :team-invitation
|
|
|
|
{:team-id (:team-id data)
|
|
|
|
:email-to "test1@mail.com"
|
|
|
|
:role "editor"
|
|
|
|
:valid-until (dt/in-future "48h")})
|
|
|
|
|
|
|
|
(let [out (th/mutation! data)
|
|
|
|
;;retrieve the value from the database and check its content
|
|
|
|
result (db/get-by-params th/*pool* :team-invitation
|
|
|
|
{:team-id (:team-id data) :email-to "test1@mail.com"}
|
|
|
|
{:check-not-found false})]
|
|
|
|
(t/is (nil? (:error out)))
|
|
|
|
(t/is (nil? (:result out)))
|
|
|
|
(t/is (= "admin" (:role result))))))
|