Skip to content
Snippets Groups Projects
Unverified Commit d284a703 authored by bryan's avatar bryan Committed by GitHub
Browse files

fix test: make sure there is a db and perm group (#47728)

parent 28351649
No related branches found
No related tags found
No related merge requests found
......@@ -149,7 +149,7 @@
db-ids)
api-graph)))
(defn remove-empty-vals
(defn- remove-empty-vals
"Recursively walks a nested map from bottom-up, removing keys with nil or empty map values."
[m]
(if (map? m)
......
......@@ -10,6 +10,6 @@
(mc/validate schema (mc/decode schema value (mtx/string-transformer))))
(defn validate-graph-api-groups
"Handles string->keyword transofmrations in DataPerms"
"Handles string->keyword transformations in DataPerms"
[graph]
(decode-and-validate graph-output-schema graph))
......@@ -122,13 +122,14 @@
(is (false? (t2/exists? PermissionsGroupMembership, :user_id user-id, :group_id (u/the-id (perms-group/admin)))))))))
(deftest data-graph-for-group-check-all-groups-test
(doseq [group-id (t2/select-fn-set :id :model/PermissionsGroup)]
(testing (str "testing data-graph-for-group with group-id: [" group-id "].")
(let [graph (data-perms.graph/api-graph {:group-id group-id})]
(is (=? {:revision pos-int?}
graph))
(is (perm-test-util/validate-graph-api-groups (:groups graph)))
(is (= #{group-id} (set (keys (:groups graph)))))))))
(t2.with-temp/with-temp [:model/PermissionsGroup {} {}
:model/Database {} {}]
(doseq [group-id (t2/select-fn-set :id :model/PermissionsGroup)]
(testing (str "testing data-graph-for-group with group-id: [" group-id "].")
(let [graph (data-perms.graph/api-graph {:group-id group-id})]
(is (malli= [:map [:revision :int] [:groups :map]] graph))
(is (perm-test-util/validate-graph-api-groups (:groups graph)))
(is (= #{group-id} (set (keys (:groups graph))))))))))
(defn- perm-object->db [perm-obj]
(some-> (re-find #"/db/(\d+)/" perm-obj) second parse-long))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment