diff options
author | Claire <claire.github-309c@sitedethib.com> | 2023-03-27 17:54:42 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-27 17:54:42 +0200 |
commit | 0d70deee53fb38b6587e44221b482bbcbfd97ecc (patch) | |
tree | 68996701852a859da14fb79bb1d8322265be31d3 /lib | |
parent | e084b5b82da703dac3ade7480286e847c5c1c2cd (diff) |
Add migration tests for user mail notification settings (#24277)
Diffstat (limited to 'lib')
-rw-r--r-- | lib/tasks/tests.rake | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/lib/tasks/tests.rake b/lib/tasks/tests.rake index 1dd25abb9..51a6ee0d7 100644 --- a/lib/tasks/tests.rake +++ b/lib/tasks/tests.rake @@ -53,6 +53,11 @@ namespace :tests do puts 'Admin::ActionLog email domain block records not updated as expected' exit(1) end + + unless User.find(1).settings.notification_emails['favourite'] == true && User.find(1).settings.notification_emails['mention'] == false + puts 'User settings not kept as expected' + exit(1) + end end desc 'Populate the database with test data for 2.4.3' @@ -98,6 +103,11 @@ namespace :tests do (1, 'destroy', 'EmailDomainBlock', 1, now(), now()), (1, 'destroy', 'Status', 1, now(), now()), (1, 'destroy', 'CustomEmoji', 3, now(), now()); + + INSERT INTO "settings" + (id, thing_type, thing_id, var, value, created_at, updated_at) + VALUES + (3, 'User', 1, 'notification_emails', E'--- !ruby/hash:ActiveSupport::HashWithIndifferentAccess\nfollow: false\nreblog: true\nfavourite: true\nmention: false\nfollow_request: true\ndigest: true\nreport: true\npending_account: false\ntrending_tag: true\nappeal: true\n', now(), now()); SQL end |