Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F13522964
migration_helper_test.exs
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Award Token
Flag For Later
Size
1 KB
Referenced Files
None
Subscribers
None
migration_helper_test.exs
View Options
# Pleroma: A lightweight social networking server
# Copyright © 2017-2020 Pleroma Authors <https://pleroma.social/>
# SPDX-License-Identifier: AGPL-3.0-only
defmodule
Pleroma.MigrationHelperTest
do
use
Pleroma.DataCase
alias
Pleroma.Activity
alias
Pleroma.MigrationHelper
alias
Pleroma.Notification
alias
Pleroma.Repo
alias
Pleroma.Web.CommonAPI
import
Pleroma.Factory
describe
"fill_in_notification_types"
do
test
"it fills in missing notification types"
do
user
=
insert
(
:user
)
other_user
=
insert
(
:user
)
{
:ok
,
post
}
=
CommonAPI
.
post
(
user
,
%{
status
:
"yeah, @
#{
other_user
.
nickname
}
"
})
{
:ok
,
chat
}
=
CommonAPI
.
post_chat_message
(
user
,
other_user
,
"yo"
)
{
:ok
,
react
}
=
CommonAPI
.
react_with_emoji
(
post
.
id
,
other_user
,
"☕"
)
{
:ok
,
like
}
=
CommonAPI
.
favorite
(
other_user
,
post
.
id
)
{
:ok
,
react_2
}
=
CommonAPI
.
react_with_emoji
(
post
.
id
,
other_user
,
"☕"
)
data
=
react_2
.
data
|>
Map
.
put
(
"type"
,
"EmojiReaction"
)
{
:ok
,
react_2
}
=
react_2
|>
Activity
.
change
(%{
data
:
data
})
|>
Repo
.
update
()
assert
{
5
,
nil
}
=
Repo
.
update_all
(
Notification
,
set
:
[
type
:
nil
])
MigrationHelper
.
fill_in_notification_types
()
assert
%{
type
:
"mention"
}
=
Repo
.
get_by
(
Notification
,
user_id
:
other_user
.
id
,
activity_id
:
post
.
id
)
assert
%{
type
:
"favourite"
}
=
Repo
.
get_by
(
Notification
,
user_id
:
user
.
id
,
activity_id
:
like
.
id
)
assert
%{
type
:
"pleroma:emoji_reaction"
}
=
Repo
.
get_by
(
Notification
,
user_id
:
user
.
id
,
activity_id
:
react
.
id
)
assert
%{
type
:
"pleroma:emoji_reaction"
}
=
Repo
.
get_by
(
Notification
,
user_id
:
user
.
id
,
activity_id
:
react_2
.
id
)
assert
%{
type
:
"pleroma:chat_mention"
}
=
Repo
.
get_by
(
Notification
,
user_id
:
other_user
.
id
,
activity_id
:
chat
.
id
)
end
end
end
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Sun, Dec 7, 9:24 PM (1 d, 8 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
698501
Default Alt Text
migration_helper_test.exs (1 KB)
Attached To
Mode
rPUBE pleroma-upstream
Attached
Detach File
Event Timeline
Log In to Comment