Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
converse.js
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
converse.js
Commits
08684a7c
Commit
08684a7c
authored
Oct 23, 2020
by
bernard-ng
Committed by
JC Brand
Nov 18, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixes #2277 Show nickname conflict error
parent
14447942
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
34 additions
and
13 deletions
+34
-13
spec/muc.js
spec/muc.js
+27
-11
src/templates/muc_nickname_form.js
src/templates/muc_nickname_form.js
+7
-2
No files found.
spec/muc.js
View file @
08684a7c
...
...
@@ -4165,8 +4165,8 @@ describe("Groupchats", function () {
}).
c
(
'
x
'
).
attrs
({
xmlns
:
'
http://jabber.org/protocol/muc
'
}).
up
()
.
c
(
'
error
'
).
attrs
({
by
:
'
lounge@montague.lit
'
,
type
:
'
auth
'
})
.
c
(
'
forbidden
'
).
attrs
({
xmlns
:
'
urn:ietf:params:xml:ns:xmpp-stanzas
'
}).
nodeTree
;
_converse
.
connection
.
_dataRecv
(
mock
.
createRequest
(
presence
));
expect
(
view
.
el
.
querySelector
(
'
.chatroom-body .disconnect-container .disconnect-msg:last-child
'
).
textContent
.
trim
())
.
toBe
(
'
You have been banned from this groupchat.
'
);
done
();
...
...
@@ -4179,24 +4179,40 @@ describe("Groupchats", function () {
const
muc_jid
=
'
conflicted@muc.montague.lit
'
;
await
mock
.
openChatRoomViaModal
(
_converse
,
muc_jid
,
'
romeo
'
);
var
presence
=
$pres
().
attrs
({
const
iq
=
await
u
.
waitUntil
(()
=>
_
.
filter
(
_converse
.
connection
.
IQ_stanzas
,
iq
=>
iq
.
querySelector
(
`iq[to="
${
muc_jid
}
"] query[xmlns="http://jabber.org/protocol/disco#info"]`
)).
pop
());
const
features_stanza
=
$iq
({
'
from
'
:
muc_jid
,
'
id
'
:
iq
.
getAttribute
(
'
id
'
),
'
to
'
:
'
romeo@montague.lit/desktop
'
,
'
type
'
:
'
result
'
})
.
c
(
'
query
'
,
{
'
xmlns
'
:
'
http://jabber.org/protocol/disco#info
'
})
.
c
(
'
identity
'
,
{
'
category
'
:
'
conference
'
,
'
name
'
:
'
A Dark Cave
'
,
'
type
'
:
'
text
'
}).
up
()
.
c
(
'
feature
'
,
{
'
var
'
:
'
http://jabber.org/protocol/muc
'
}).
up
()
.
c
(
'
feature
'
,
{
'
var
'
:
'
muc_hidden
'
}).
up
()
.
c
(
'
feature
'
,
{
'
var
'
:
'
muc_temporary
'
}).
up
()
_converse
.
connection
.
_dataRecv
(
mock
.
createRequest
(
features_stanza
));
const
view
=
_converse
.
chatboxviews
.
get
(
muc_jid
);
await
u
.
waitUntil
(()
=>
view
.
model
.
session
.
get
(
'
connection_status
'
)
===
converse
.
ROOMSTATUS
.
CONNECTING
);
const
presence
=
$pres
().
attrs
({
from
:
`
${
muc_jid
}
/romeo`
,
id
:
u
.
getUniqueId
(),
to
:
'
romeo@montague.lit/pda
'
,
type
:
'
error
'
}).
c
(
'
x
'
).
attrs
({
xmlns
:
'
http://jabber.org/protocol/muc
'
}).
up
()
.
c
(
'
error
'
).
attrs
({
by
:
'
lounge@montague.lit
'
,
type
:
'
cancel
'
})
.
c
(
'
error
'
).
attrs
({
by
:
muc_jid
,
type
:
'
cancel
'
})
.
c
(
'
conflict
'
).
attrs
({
xmlns
:
'
urn:ietf:params:xml:ns:xmpp-stanzas
'
}).
nodeTree
;
const
view
=
_converse
.
chatboxviews
.
get
(
muc_jid
);
_converse
.
connection
.
_dataRecv
(
mock
.
createRequest
(
presence
));
expect
(
sizzle
(
'
.chatroom-body form.chatroom-form label:first
'
,
view
.
el
).
pop
().
textContent
.
trim
())
.
toBe
(
'
Please choose your nickname
'
);
const
input
=
sizzle
(
'
.chatroom-body form.chatroom-form input:first
'
,
view
.
el
).
pop
();
expect
(
input
.
value
).
toBe
(
'
romeo
'
);
input
.
value
=
'
nicky
'
;
view
.
el
.
querySelector
(
'
input[type=submit]
'
).
click
();
expect
(
view
.
el
.
querySelector
(
'
.muc-nickname-form .validation-message
'
).
textContent
.
trim
())
.
toBe
(
'
The nickname you chose is reserved or currently in use, please choose a different one.
'
);
done
();
}));
...
...
src/templates/muc_nickname_form.js
View file @
08684a7c
...
...
@@ -15,8 +15,13 @@ export default (o) => {
<form class="converse-form chatroom-form converse-centered-form">
<fieldset class="form-group">
<label>
${
i18n_heading
}
</label>
<input type="text" required="required" name="nick" value="
${
o
.
nick
||
''
}
"
class="form-control" placeholder="
${
i18n_nickname
}
"/>
<p class="validation-message">
${
o
.
nickname_validation_message
}
</p>
<input type="text"
required="required"
name="nick"
value="
${
o
.
nick
||
''
}
"
class="form-control
${
o
.
nickname_validation_message
?
'
error
'
:
''
}
"
placeholder="
${
i18n_nickname
}
"/>
</fieldset>
<fieldset class="form-group">
<input type="submit" class="btn btn-primary" name="join" value="
${
i18n_join
}
"/>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment