2021-02-11 17:57:41 +01: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 09:43:04 +02:00
|
|
|
;; Copyright (c) UXBOX Labs SL
|
2021-02-11 17:57:41 +01:00
|
|
|
|
2021-05-28 13:50:42 +02:00
|
|
|
(ns app.services-teams-test
|
2021-02-11 17:57:41 +01:00
|
|
|
(:require
|
|
|
|
[app.common.uuid :as uuid]
|
|
|
|
[app.db :as db]
|
|
|
|
[app.http :as http]
|
|
|
|
[app.storage :as sto]
|
2021-05-28 13:50:42 +02:00
|
|
|
[app.test-helpers :as th]
|
2021-02-11 17:57:41 +01:00
|
|
|
[clojure.test :as t]
|
2021-05-28 13:50:42 +02:00
|
|
|
[datoteka.core :as fs]
|
|
|
|
[mockery.core :refer [with-mocks]]))
|
2021-02-11 17:57:41 +01: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)}]
|
|
|
|
|
|
|
|
;; (th/print-result! out)
|
|
|
|
|
|
|
|
;; invite external user without complaints
|
|
|
|
(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 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)))))
|
|
|
|
|
|
|
|
)))
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|