mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
mod_mam: Add test for JID normalization in prefs (see #1275)
This commit is contained in:
parent
6282f9029c
commit
67a3bf56f3
2 changed files with 38 additions and 1 deletions
36
spec/scansion/mam_prefs_prep.scs
Normal file
36
spec/scansion/mam_prefs_prep.scs
Normal file
|
@ -0,0 +1,36 @@
|
|||
# mod_mam shold apply JIDprep in prefs
|
||||
|
||||
[Client] Romeo
|
||||
jid: romeo@localhost
|
||||
password: password
|
||||
|
||||
-----
|
||||
|
||||
Romeo connects
|
||||
|
||||
Romeo sends:
|
||||
<iq id="lx2" type="set">
|
||||
<prefs xmlns="urn:xmpp:mam:2" default="roster">
|
||||
<always>
|
||||
<jid>JULIET@MONTAGUE.LIT</jid>
|
||||
</always>
|
||||
<never>
|
||||
<jid>MONTAGUE@MONTAGUE.LIT</jid>
|
||||
</never>
|
||||
</prefs>
|
||||
</iq>
|
||||
|
||||
Romeo receives:
|
||||
<iq id="lx2" type="result">
|
||||
<prefs xmlns="urn:xmpp:mam:2" default="roster">
|
||||
<always>
|
||||
<jid>juliet@montague.lit</jid>
|
||||
</always>
|
||||
<never>
|
||||
<jid>montague@montague.lit</jid>
|
||||
</never>
|
||||
</prefs>
|
||||
</iq>
|
||||
|
||||
Romeo disconnects
|
||||
|
|
@ -25,7 +25,7 @@ modules_enabled = {
|
|||
"time"; -- Let others know the time here on this server
|
||||
"ping"; -- Replies to XMPP pings with pongs
|
||||
"register"; -- Allow users to register on this server using a client and change passwords
|
||||
--"mam"; -- Store messages in an archive and allow users to access it
|
||||
"mam"; -- Store messages in an archive and allow users to access it
|
||||
|
||||
-- HTTP modules
|
||||
--"bosh"; -- Enable BOSH clients, aka "Jabber over HTTP"
|
||||
|
@ -59,6 +59,7 @@ insecure_open_authentication = "Yes please, I know what I'm doing!"
|
|||
|
||||
storage = "memory"
|
||||
|
||||
mam_smart_enable = true
|
||||
|
||||
-- For the "sql" backend, you can uncomment *one* of the below to configure:
|
||||
--sql = { driver = "SQLite3", database = "prosody.sqlite" } -- Default. 'database' is the filename.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue