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
9f48b5cf
Commit
9f48b5cf
authored
Apr 30, 2018
by
JC Brand
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Clean up the chatroom spec a bit
parent
4f7c08b1
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
18 additions
and
34 deletions
+18
-34
spec/chatroom.js
spec/chatroom.js
+18
-34
No files found.
spec/chatroom.js
View file @
9f48b5cf
...
@@ -13,27 +13,16 @@
...
@@ -13,27 +13,16 @@
return
describe
(
"
ChatRooms
"
,
function
()
{
return
describe
(
"
ChatRooms
"
,
function
()
{
describe
(
"
The
\"
rooms
\"
API
"
,
function
()
{
describe
(
"
The
\"
rooms
\"
API
"
,
function
()
{
var
original_timeout
;
beforeEach
(
function
()
{
original_timeout
=
jasmine
.
DEFAULT_TIMEOUT_INTERVAL
;
jasmine
.
DEFAULT_TIMEOUT_INTERVAL
=
10000
;
});
afterEach
(
function
()
{
jasmine
.
DEFAULT_TIMEOUT_INTERVAL
=
original_timeout
;
});
it
(
"
has a method 'close' which closes rooms by JID or all rooms when called with no arguments
"
,
it
(
"
has a method 'close' which closes rooms by JID or all rooms when called with no arguments
"
,
mock
.
initConverseWithPromises
(
mock
.
initConverseWithPromises
(
null
,
[
'
rosterGroupsFetched
'
],
{},
null
,
[
'
rosterGroupsFetched
'
],
{},
function
(
done
,
_converse
)
{
function
(
done
,
_converse
)
{
test_utils
.
openAndEnterChatRoom
(
_converse
,
'
lounge
'
,
'
localhost
'
,
'
dummy
'
).
then
(
function
()
{
test_utils
.
openAndEnterChatRoom
(
_converse
,
'
lounge
'
,
'
localhost
'
,
'
dummy
'
)
return
test_utils
.
openAndEnterChatRoom
(
_converse
,
'
leisure
'
,
'
localhost
'
,
'
dummy
'
);
.
then
(()
=>
test_utils
.
openAndEnterChatRoom
(
_converse
,
'
leisure
'
,
'
localhost
'
,
'
dummy
'
))
}).
then
(
function
()
{
.
then
(()
=>
test_utils
.
openAndEnterChatRoom
(
_converse
,
'
news
'
,
'
localhost
'
,
'
dummy
'
))
return
test_utils
.
openAndEnterChatRoom
(
_converse
,
'
news
'
,
'
localhost
'
,
'
dummy
'
);
.
then
(()
=>
{
}).
then
(
function
()
{
expect
(
u
.
isVisible
(
_converse
.
chatboxviews
.
get
(
'
lounge@localhost
'
).
el
)).
toBeTruthy
();
expect
(
u
.
isVisible
(
_converse
.
chatboxviews
.
get
(
'
lounge@localhost
'
).
el
)).
toBeTruthy
();
expect
(
u
.
isVisible
(
_converse
.
chatboxviews
.
get
(
'
leisure@localhost
'
).
el
)).
toBeTruthy
();
expect
(
u
.
isVisible
(
_converse
.
chatboxviews
.
get
(
'
leisure@localhost
'
).
el
)).
toBeTruthy
();
expect
(
u
.
isVisible
(
_converse
.
chatboxviews
.
get
(
'
news@localhost
'
).
el
)).
toBeTruthy
();
expect
(
u
.
isVisible
(
_converse
.
chatboxviews
.
get
(
'
news@localhost
'
).
el
)).
toBeTruthy
();
...
@@ -53,19 +42,16 @@
...
@@ -53,19 +42,16 @@
expect
(
_converse
.
chatboxviews
.
get
(
'
leisure@localhost
'
)).
toBeUndefined
();
expect
(
_converse
.
chatboxviews
.
get
(
'
leisure@localhost
'
)).
toBeUndefined
();
expect
(
_converse
.
chatboxviews
.
get
(
'
news@localhost
'
)).
toBeUndefined
();
expect
(
_converse
.
chatboxviews
.
get
(
'
news@localhost
'
)).
toBeUndefined
();
return
test_utils
.
openAndEnterChatRoom
(
_converse
,
'
lounge
'
,
'
localhost
'
,
'
dummy
'
);
return
test_utils
.
openAndEnterChatRoom
(
_converse
,
'
lounge
'
,
'
localhost
'
,
'
dummy
'
);
})
.
then
(
function
()
{
})
return
test_utils
.
openAndEnterChatRoom
(
_converse
,
'
leisure
'
,
'
localhost
'
,
'
dummy
'
)
.
then
(()
=>
test_utils
.
openAndEnterChatRoom
(
_converse
,
'
leisure
'
,
'
localhost
'
,
'
dummy
'
)
)
}).
then
(
function
()
{
.
then
(()
=>
{
expect
(
u
.
isVisible
(
_converse
.
chatboxviews
.
get
(
'
lounge@localhost
'
).
el
)).
toBeTruthy
();
expect
(
u
.
isVisible
(
_converse
.
chatboxviews
.
get
(
'
lounge@localhost
'
).
el
)).
toBeTruthy
();
expect
(
u
.
isVisible
(
_converse
.
chatboxviews
.
get
(
'
leisure@localhost
'
).
el
)).
toBeTruthy
();
expect
(
u
.
isVisible
(
_converse
.
chatboxviews
.
get
(
'
leisure@localhost
'
).
el
)).
toBeTruthy
();
_converse
.
api
.
rooms
.
close
();
_converse
.
api
.
rooms
.
close
();
expect
(
_converse
.
chatboxviews
.
get
(
'
lounge@localhost
'
)).
toBeUndefined
();
expect
(
_converse
.
chatboxviews
.
get
(
'
lounge@localhost
'
)).
toBeUndefined
();
expect
(
_converse
.
chatboxviews
.
get
(
'
leisure@localhost
'
)).
toBeUndefined
();
expect
(
_converse
.
chatboxviews
.
get
(
'
leisure@localhost
'
)).
toBeUndefined
();
return
done
();
}).
catch
((
err
)
=>
{
_converse
.
log
(
err
,
Strophe
.
LogLevel
.
FATAL
);
done
();
done
();
});
})
.
catch
(
_
.
partial
(
console
.
error
,
_
))
;
}));
}));
it
(
"
has a method 'get' which returns a wrapped chat room (if it exists)
"
,
it
(
"
has a method 'get' which returns a wrapped chat room (if it exists)
"
,
...
@@ -3201,27 +3187,25 @@
...
@@ -3201,27 +3187,25 @@
var
contact_jid
=
mock
.
cur_names
[
5
].
replace
(
/ /g
,
'
.
'
).
toLowerCase
()
+
'
@localhost
'
;
var
contact_jid
=
mock
.
cur_names
[
5
].
replace
(
/ /g
,
'
.
'
).
toLowerCase
()
+
'
@localhost
'
;
var
message
=
'
fires: Your attention is required
'
;
var
message
=
'
fires: Your attention is required
'
;
var
nick
=
mock
.
chatroom_names
[
0
],
var
nick
=
mock
.
chatroom_names
[
0
];
msg
=
$msg
({
view
.
model
.
onMessage
(
$msg
({
from
:
room_jid
+
'
/
'
+
nick
,
from
:
room_jid
+
'
/
'
+
nick
,
id
:
(
new
Date
()).
getTime
(),
id
:
(
new
Date
()).
getTime
(),
to
:
'
dummy@localhost
'
,
to
:
'
dummy@localhost
'
,
type
:
'
groupchat
'
type
:
'
groupchat
'
}).
c
(
'
body
'
).
t
(
message
).
tree
();
}).
c
(
'
body
'
).
t
(
message
).
tree
());
view
.
model
.
onMessage
(
msg
);
expect
(
roomspanel
.
el
.
querySelectorAll
(
'
.available-room
'
).
length
).
toBe
(
1
);
expect
(
roomspanel
.
el
.
querySelectorAll
(
'
.available-room
'
).
length
).
toBe
(
1
);
expect
(
roomspanel
.
el
.
querySelectorAll
(
'
.msgs-indicator
'
).
length
).
toBe
(
1
);
expect
(
roomspanel
.
el
.
querySelectorAll
(
'
.msgs-indicator
'
).
length
).
toBe
(
1
);
expect
(
roomspanel
.
el
.
querySelector
(
'
.msgs-indicator
'
).
textContent
).
toBe
(
'
1
'
);
expect
(
roomspanel
.
el
.
querySelector
(
'
.msgs-indicator
'
).
textContent
).
toBe
(
'
1
'
);
msg
=
$msg
({
view
.
model
.
onMessage
(
$msg
({
from
:
room_jid
+
'
/
'
+
nick
,
'
from
'
:
room_jid
+
'
/
'
+
nick
,
id
:
(
new
Date
()).
getTime
(),
'
id
'
:
(
new
Date
()).
getTime
(),
to
:
'
dummy@localhost
'
,
'
to
'
:
'
dummy@localhost
'
,
type
:
'
groupchat
'
'
type
'
:
'
groupchat
'
}).
c
(
'
body
'
).
t
(
message
).
tree
();
}).
c
(
'
body
'
).
t
(
message
).
tree
());
view
.
model
.
onMessage
(
msg
);
expect
(
roomspanel
.
el
.
querySelectorAll
(
'
.available-room
'
).
length
).
toBe
(
1
);
expect
(
roomspanel
.
el
.
querySelectorAll
(
'
.available-room
'
).
length
).
toBe
(
1
);
expect
(
roomspanel
.
el
.
querySelectorAll
(
'
.msgs-indicator
'
).
length
).
toBe
(
1
);
expect
(
roomspanel
.
el
.
querySelectorAll
(
'
.msgs-indicator
'
).
length
).
toBe
(
1
);
...
...
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