core: settings to hide member messages, to show only reply (and mention) notifications (#3190)
* core: settings to hide member messages, to show only reply (and mention) notifications * change type for showMessages * commands for member settings * member and notification settings * test * take member settings into account when showing messages and notifications * fix to show sent messages * store blocked items * types * rename to MFMentions
This commit is contained in:
committed by
GitHub
parent
b03fe183bb
commit
bca9473d77
@@ -70,7 +70,7 @@ chatDirectTests = do
|
||||
it "should not subscribe in NSE and subscribe in the app" testSubscribeAppNSE
|
||||
describe "mute/unmute messages" $ do
|
||||
it "mute/unmute contact" testMuteContact
|
||||
it "mute/unmute group" testMuteGroup
|
||||
it "mute/unmute group and member" testMuteGroup
|
||||
describe "multiple users" $ do
|
||||
it "create second user" testCreateSecondUser
|
||||
it "multiple users subscribe and receive messages after restart" testUsersSubscribeAfterRestart
|
||||
@@ -1196,14 +1196,79 @@ testMuteGroup =
|
||||
concurrently_
|
||||
(bob </)
|
||||
(cath <# "#team alice> hi")
|
||||
bob #> "#team hello"
|
||||
concurrently_
|
||||
(alice <# "#team bob> hello")
|
||||
(cath <# "#team bob> hello")
|
||||
cath `send` "> #team (hello) hello too!"
|
||||
cath <# "#team > bob hello"
|
||||
cath <## " hello too!"
|
||||
concurrently_
|
||||
(bob </)
|
||||
( do alice <# "#team cath> > bob hello"
|
||||
alice <## " hello too!"
|
||||
)
|
||||
bob ##> "/unmute mentions #team"
|
||||
bob <## "ok"
|
||||
alice `send` "> #team @bob (hello) hey bob!"
|
||||
alice <# "#team > bob hello"
|
||||
alice <## " hey bob!"
|
||||
concurrently_
|
||||
( do bob <# "#team alice> > bob hello"
|
||||
bob <## " hey bob!"
|
||||
)
|
||||
( do cath <# "#team alice> > bob hello"
|
||||
cath <## " hey bob!"
|
||||
)
|
||||
alice `send` "> #team @cath (hello) hey cath!"
|
||||
alice <# "#team > cath hello too!"
|
||||
alice <## " hey cath!"
|
||||
concurrently_
|
||||
(bob </)
|
||||
( do cath <# "#team alice> > cath hello too!"
|
||||
cath <## " hey cath!"
|
||||
)
|
||||
bob ##> "/gs"
|
||||
bob <## "#team (3 members, muted, you can /unmute #team)"
|
||||
bob <## "#team (3 members, mentions only, you can /unmute #team)"
|
||||
bob ##> "/unmute #team"
|
||||
bob <## "ok"
|
||||
alice #> "#team hi again"
|
||||
concurrently_
|
||||
(bob <# "#team alice> hi again")
|
||||
(cath <# "#team alice> hi again")
|
||||
bob ##> "/block #team alice"
|
||||
bob <## "ok"
|
||||
bob ##> "/ms team"
|
||||
bob <## "bob (Bob): admin, you, connected"
|
||||
bob <## "alice (Alice): owner, host, connected, blocked"
|
||||
bob <## "cath (Catherine): admin, connected"
|
||||
alice #> "#team test 1"
|
||||
concurrently_
|
||||
(bob </)
|
||||
(cath <# "#team alice> test 1")
|
||||
cath #> "#team test 2"
|
||||
concurrently_
|
||||
(bob <# "#team cath> test 2")
|
||||
(alice <# "#team cath> test 2")
|
||||
bob ##> "/tail #team 3"
|
||||
bob <# "#team alice> hi again"
|
||||
bob <# "#team alice> test 1 [blocked]"
|
||||
bob <# "#team cath> test 2"
|
||||
threadDelay 1000000
|
||||
bob ##> "/unblock #team alice"
|
||||
bob <## "ok"
|
||||
bob ##> "/ms team"
|
||||
bob <## "bob (Bob): admin, you, connected"
|
||||
bob <## "alice (Alice): owner, host, connected"
|
||||
bob <## "cath (Catherine): admin, connected"
|
||||
alice #> "#team test 3"
|
||||
concurrently_
|
||||
(bob <# "#team alice> test 3")
|
||||
(cath <# "#team alice> test 3")
|
||||
cath #> "#team test 4"
|
||||
concurrently_
|
||||
(bob <# "#team cath> test 4")
|
||||
(alice <# "#team cath> test 4")
|
||||
bob ##> "/gs"
|
||||
bob <## "#team (3 members)"
|
||||
|
||||
@@ -1937,7 +2002,7 @@ testUserPrivacy =
|
||||
-- shows hidden user when active
|
||||
alice ##> "/users"
|
||||
alice <## "alice (Alice)"
|
||||
alice <## "alisa (active, hidden, muted)"
|
||||
alice <## "alisa (active, hidden, muted, unread: 1)"
|
||||
-- hidden message is saved
|
||||
alice ##> "/tail"
|
||||
alice <##? chatHistory
|
||||
|
||||
@@ -1538,7 +1538,6 @@ testGroupDelayedModerationFullDelete tmp = do
|
||||
|
||||
testGroupAsync :: HasCallStack => FilePath -> IO ()
|
||||
testGroupAsync tmp = do
|
||||
print (0 :: Integer)
|
||||
withNewTestChat tmp "alice" aliceProfile $ \alice -> do
|
||||
withNewTestChat tmp "bob" bobProfile $ \bob -> do
|
||||
connectUsers alice bob
|
||||
|
||||
Reference in New Issue
Block a user