|
1 | 1 | (ns ^:integration rems.test-migrations
|
| 2 | + "Migration tests that use database." |
2 | 3 | (:require [clojure.test :refer [deftest is testing use-fixtures]]
|
3 | 4 | [hugsql.core :as hugsql]
|
4 | 5 | [luminus-migrations.core]
|
|
8 | 9 | [rems.db.testing :refer [test-db-fixture reset-db-fixture rollback-db-fixture]]
|
9 | 10 | [rems.config]
|
10 | 11 | [rems.json :as json]
|
11 |
| - [rems.migrations.event-public :as event-public])) |
| 12 | + [rems.migrations.event-public :as event-public] |
| 13 | + [rems.migrations.change-expiration-events] |
| 14 | + [rems.migrations.change-expiration-events-1])) |
12 | 15 |
|
13 | 16 | (use-fixtures
|
14 | 17 | :once
|
|
79 | 82 | (->> (get-events)
|
80 | 83 | (mapv (comp json/parse-string :eventdata))))))))
|
81 | 84 |
|
| 85 | +(deftest test-change-expiration-events |
| 86 | + (let [create-application! |
| 87 | + (create-db-fn |
| 88 | + "-- :name create-application! :insert |
| 89 | + INSERT INTO catalogue_item_application (id) |
| 90 | + VALUES (nextval ('catalogue_item_application_id_seq')) |
| 91 | + RETURNING id; |
| 92 | + ") |
| 93 | + add-application-event! |
| 94 | + (create-db-fn |
| 95 | + "-- :name add-application-event! :returning-execute :1 |
| 96 | + INSERT INTO application_event (appId, eventData) |
| 97 | + VALUES (:application, :eventdata::jsonb) |
| 98 | + RETURNING id, eventData::TEXT; |
| 99 | + ") |
| 100 | + get-events #(->> (rems.migrations.change-expiration-events/get-events rems.db.core/*db*) |
| 101 | + (sort-by :id)) |
| 102 | + previous-migration-id rems.migrations.change-expiration-events/migration-id] |
| 103 | + |
| 104 | + (testing "create test data" |
| 105 | + (rollback-until-just-before previous-migration-id) |
| 106 | + |
| 107 | + (let [app (first (create-application!)) |
| 108 | + _ (is (:id app)) |
| 109 | + create-event #(do {:application (:id app) :eventdata (json/generate-string %)})] |
| 110 | + (is (:id (first (add-application-event! |
| 111 | + (create-event {:expires-on "2023-11-03T11:53:31.469Z" |
| 112 | + :event/time "2023-10-01T00:00:00.000Z" |
| 113 | + :last-activity "2023-10-27T11:53:31.469Z"}))))) |
| 114 | + (is (:id (first (add-application-event! |
| 115 | + (create-event {:expires-on "2100-01-01T00:00:00.000Z" |
| 116 | + :event/time "2099-10-01T00:00:00.000Z"}))))) |
| 117 | + (is (:id (first (add-application-event! |
| 118 | + (create-event {:event/actor "alice"}))))) |
| 119 | + (is (= [{:expires-on "2023-11-03T11:53:31.469Z" :event/time "2023-10-01T00:00:00.000Z" :last-activity "2023-10-27T11:53:31.469Z"} |
| 120 | + {:expires-on "2100-01-01T00:00:00.000Z" :event/time "2099-10-01T00:00:00.000Z"} |
| 121 | + {:event/actor "alice"}] |
| 122 | + (->> (get-events) |
| 123 | + (mapv (comp json/parse-string :eventdata))))))) |
| 124 | + |
| 125 | + (testing "migrate up" |
| 126 | + (rems.migrations.change-expiration-events/migrate-up {:conn rems.db.core/*db*}) ; does not change events but here for consistency |
| 127 | + (rems.migrations.change-expiration-events-1/migrate-up {:conn rems.db.core/*db*}) |
| 128 | + (is (= [{:application/expires-on "2023-11-03T11:53:31.469Z" :event/time "2023-10-01T00:00:00.000Z"} |
| 129 | + {:application/expires-on "2100-01-01T00:00:00.000Z" :event/time "2099-10-01T00:00:00.000Z"} |
| 130 | + {:event/actor "alice"}] |
| 131 | + (->> (get-events) |
| 132 | + (mapv (comp json/parse-string :eventdata)))))) |
| 133 | + |
| 134 | + (testing "migrate down" |
| 135 | + (rems.migrations.change-expiration-events-1/migrate-down {:conn rems.db.core/*db*}) |
| 136 | + (rems.migrations.change-expiration-events/migrate-down {:conn rems.db.core/*db*}) |
| 137 | + (is (= [{:expires-on "2023-11-03T11:53:31.469Z" :event/time "2023-10-01T00:00:00.000Z" :last-activity "2023-10-01T00:00:00.000Z"} |
| 138 | + {:expires-on "2100-01-01T00:00:00.000Z" :event/time "2099-10-01T00:00:00.000Z" :last-activity "2099-10-01T00:00:00.000Z"} |
| 139 | + {:event/actor "alice"}] |
| 140 | + (->> (get-events) |
| 141 | + (mapv (comp json/parse-string :eventdata)))))))) |
| 142 | + |
0 commit comments