|
@@ -0,0 +1,257 @@
|
|
|
|
+/*global converse */
|
|
|
|
+(function (root, factory) {
|
|
|
|
+ define([
|
|
|
|
+ "jquery",
|
|
|
|
+ "utils",
|
|
|
|
+ "mock",
|
|
|
|
+ "test_utils"
|
|
|
|
+ ], factory);
|
|
|
|
+} (this, function ($, utils, mock, test_utils) {
|
|
|
|
+ "use strict";
|
|
|
|
+ var $iq = converse_api.env.$iq,
|
|
|
|
+ Strophe = converse_api.env.Strophe;
|
|
|
|
+
|
|
|
|
+ describe("A chat room", function () {
|
|
|
|
+
|
|
|
|
+ it("can be bookmarked", function () {
|
|
|
|
+ var sent_stanza, IQ_id;
|
|
|
|
+ var sendIQ = converse.connection.sendIQ;
|
|
|
|
+ spyOn(converse.connection, 'sendIQ').andCallFake(function (iq, callback, errback) {
|
|
|
|
+ sent_stanza = iq;
|
|
|
|
+ IQ_id = sendIQ.bind(this)(iq, callback, errback);
|
|
|
|
+ });
|
|
|
|
+ spyOn(converse.connection, 'getUniqueId').andCallThrough();
|
|
|
|
+
|
|
|
|
+ test_utils.openChatRoom('theplay', 'conference.shakespeare.lit', 'JC');
|
|
|
|
+ var jid = 'theplay@conference.shakespeare.lit';
|
|
|
|
+ var view = converse.chatboxviews.get(jid);
|
|
|
|
+ spyOn(view, 'renderBookmarkForm').andCallThrough();
|
|
|
|
+ spyOn(view, 'cancelConfiguration').andCallThrough();
|
|
|
|
+ spyOn(view, 'onBookmarkAdded').andCallThrough();
|
|
|
|
+ spyOn(view, 'onBookmarkError').andCallThrough();
|
|
|
|
+
|
|
|
|
+ var $bookmark = view.$el.find('.icon-pushpin');
|
|
|
|
+ $bookmark.click();
|
|
|
|
+ expect(view.renderBookmarkForm).toHaveBeenCalled();
|
|
|
|
+
|
|
|
|
+ view.$el.find('.button-cancel').click();
|
|
|
|
+ expect(view.cancelConfiguration).toHaveBeenCalled();
|
|
|
|
+ expect($bookmark.hasClass('on-button'), false);
|
|
|
|
+
|
|
|
|
+ $bookmark.click();
|
|
|
|
+ expect(view.renderBookmarkForm).toHaveBeenCalled();
|
|
|
|
+
|
|
|
|
+ /* Client uploads data:
|
|
|
|
+ * --------------------
|
|
|
|
+ * <iq from='juliet@capulet.lit/balcony' type='set' id='pip1'>
|
|
|
|
+ * <pubsub xmlns='http://jabber.org/protocol/pubsub'>
|
|
|
|
+ * <publish node='storage:bookmarks'>
|
|
|
|
+ * <item id='current'>
|
|
|
|
+ * <storage xmlns='storage:bookmarks'>
|
|
|
|
+ * <conference name='The Play's the Thing'
|
|
|
|
+ * autojoin='true'
|
|
|
|
+ * jid='theplay@conference.shakespeare.lit'>
|
|
|
|
+ * <nick>JC</nick>
|
|
|
|
+ * </conference>
|
|
|
|
+ * </storage>
|
|
|
|
+ * </item>
|
|
|
|
+ * </publish>
|
|
|
|
+ * <publish-options>
|
|
|
|
+ * <x xmlns='jabber:x:data' type='submit'>
|
|
|
|
+ * <field var='FORM_TYPE' type='hidden'>
|
|
|
|
+ * <value>http://jabber.org/protocol/pubsub#publish-options</value>
|
|
|
|
+ * </field>
|
|
|
|
+ * <field var='pubsub#persist_items'>
|
|
|
|
+ * <value>true</value>
|
|
|
|
+ * </field>
|
|
|
|
+ * <field var='pubsub#access_model'>
|
|
|
|
+ * <value>whitelist</value>
|
|
|
|
+ * </field>
|
|
|
|
+ * </x>
|
|
|
|
+ * </publish-options>
|
|
|
|
+ * </pubsub>
|
|
|
|
+ * </iq>
|
|
|
|
+ */
|
|
|
|
+ var $form = view.$el.find('.chatroom-form');
|
|
|
|
+ $form.find('input[name="name"]').val('Play's the Thing');
|
|
|
|
+ $form.find('input[name="autojoin"]').prop('checked', true);
|
|
|
|
+ $form.find('input[name="nick"]').val('JC');
|
|
|
|
+ $form.submit();
|
|
|
|
+ expect($bookmark.hasClass('on-button'), true);
|
|
|
|
+
|
|
|
|
+ expect(sent_stanza.toLocaleString()).toBe(
|
|
|
|
+ "<iq type='set' from='dummy@localhost/resource' xmlns='jabber:client' id='"+IQ_id+"'>"+
|
|
|
|
+ "<pubsub xmlns='http://jabber.org/protocol/pubsub'>"+
|
|
|
|
+ "<publish node='storage:bookmarks'>"+
|
|
|
|
+ "<item id='current'>"+
|
|
|
|
+ "<storage xmlns='storage:bookmarks'>"+
|
|
|
|
+ "<conference name='Play&apos;s the Thing' autojoin='true' jid='theplay@conference.shakespeare.lit'>"+
|
|
|
|
+ "<nick>JC</nick>"+
|
|
|
|
+ "</conference>"+
|
|
|
|
+ "</storage>"+
|
|
|
|
+ "</item>"+
|
|
|
|
+ "</publish>"+
|
|
|
|
+ "</pubsub>"+
|
|
|
|
+ "<publish-options>"+
|
|
|
|
+ "<x xmlns='jabber:x:data' type='submit'>"+
|
|
|
|
+ "<field var='FORM_TYPE' type='hidden'>"+
|
|
|
|
+ "<value>http://jabber.org/protocol/pubsub#publish-options</value>"+
|
|
|
|
+ "</field>"+
|
|
|
|
+ "<field var='pubsub#persist_items'>"+
|
|
|
|
+ "<value>true</value>"+
|
|
|
|
+ "</field>"+
|
|
|
|
+ "<field var='pubsub#access_model'>"+
|
|
|
|
+ "<value>whitelist</value>"+
|
|
|
|
+ "</field>"+
|
|
|
|
+ "</x>"+
|
|
|
|
+ "</publish-options>"+
|
|
|
|
+ "</iq>"
|
|
|
|
+ );
|
|
|
|
+
|
|
|
|
+ /* Server acknowledges successful storage
|
|
|
|
+ *
|
|
|
|
+ * <iq to='juliet@capulet.lit/balcony' type='result' id='pip1'/>
|
|
|
|
+ */
|
|
|
|
+ var stanza = $iq({
|
|
|
|
+ 'to':converse.connection.jid,
|
|
|
|
+ 'type':'result',
|
|
|
|
+ 'id':IQ_id
|
|
|
|
+ });
|
|
|
|
+ converse.connection._dataRecv(test_utils.createRequest(stanza));
|
|
|
|
+ expect(view.onBookmarkAdded).toHaveBeenCalled();
|
|
|
|
+
|
|
|
|
+ });
|
|
|
|
+
|
|
|
|
+ describe("when bookmarked", function () {
|
|
|
|
+ it("displays that it's bookmarked through its bookmark icon", function () {
|
|
|
|
+ // TODO
|
|
|
|
+ // Mock bookmark data received from the server.
|
|
|
|
+ // Open the room
|
|
|
|
+ // Check that the icon has 'button-on' class.
|
|
|
|
+ });
|
|
|
|
+
|
|
|
|
+ it("can be unbookmarked", function () {
|
|
|
|
+ // TODO
|
|
|
|
+ // Mock bookmark data received from the server.
|
|
|
|
+ // Open the room
|
|
|
|
+ // Click the bookmark icon to unbookmark
|
|
|
|
+ });
|
|
|
|
+ });
|
|
|
|
+ });
|
|
|
|
+
|
|
|
|
+ describe("Bookmarks", function () {
|
|
|
|
+
|
|
|
|
+ beforeEach(function () {
|
|
|
|
+ window.sessionStorage.clear();
|
|
|
|
+ });
|
|
|
|
+
|
|
|
|
+ it("can be pushed from the XMPP server", function () {
|
|
|
|
+ // TODO
|
|
|
|
+ /* The stored data is automatically pushed to all of the user's
|
|
|
|
+ * connected resources.
|
|
|
|
+ *
|
|
|
|
+ * Publisher receives event notification
|
|
|
|
+ * -------------------------------------
|
|
|
|
+ * <message from='juliet@capulet.lit'
|
|
|
|
+ * to='juliet@capulet.lit/balcony'
|
|
|
|
+ * type='headline'
|
|
|
|
+ * id='rnfoo1'>
|
|
|
|
+ * <event xmlns='http://jabber.org/protocol/pubsub#event'>
|
|
|
|
+ * <items node='storage:bookmarks'>
|
|
|
|
+ * <item id='current'>
|
|
|
|
+ * <storage xmlns='storage:bookmarks'>
|
|
|
|
+ * <conference name='The Play's the Thing'
|
|
|
|
+ * autojoin='true'
|
|
|
|
+ * jid='theplay@conference.shakespeare.lit'>
|
|
|
|
+ * <nick>JC</nick>
|
|
|
|
+ * </conference>
|
|
|
|
+ * </storage>
|
|
|
|
+ * </item>
|
|
|
|
+ * </items>
|
|
|
|
+ * </event>
|
|
|
|
+ * </message>
|
|
|
|
+
|
|
|
|
+ * <message from='juliet@capulet.lit'
|
|
|
|
+ * to='juliet@capulet.lit/chamber'
|
|
|
|
+ * type='headline'
|
|
|
|
+ * id='rnfoo2'>
|
|
|
|
+ * <event xmlns='http://jabber.org/protocol/pubsub#event'>
|
|
|
|
+ * <items node='storage:bookmarks'>
|
|
|
|
+ * <item id='current'>
|
|
|
|
+ * <storage xmlns='storage:bookmarks'>
|
|
|
|
+ * <conference name='The Play's the Thing'
|
|
|
|
+ * autojoin='true'
|
|
|
|
+ * jid='theplay@conference.shakespeare.lit'>
|
|
|
|
+ * <nick>JC</nick>
|
|
|
|
+ * </conference>
|
|
|
|
+ * </storage>
|
|
|
|
+ * </item>
|
|
|
|
+ * </items>
|
|
|
|
+ * </event>
|
|
|
|
+ * </message>
|
|
|
|
+ */
|
|
|
|
+ });
|
|
|
|
+
|
|
|
|
+ it("can be retrieved from the XMPP server", function () {
|
|
|
|
+ var sent_stanza, IQ_id,
|
|
|
|
+ sendIQ = converse.connection.sendIQ;
|
|
|
|
+ spyOn(converse.connection, 'sendIQ').andCallFake(function (iq, callback, errback) {
|
|
|
|
+ sent_stanza = iq;
|
|
|
|
+ IQ_id = sendIQ.bind(this)(iq, callback, errback);
|
|
|
|
+ });
|
|
|
|
+ converse.emit('connected');
|
|
|
|
+
|
|
|
|
+ /* Client requests all items
|
|
|
|
+ * -------------------------
|
|
|
|
+ *
|
|
|
|
+ * <iq from='juliet@capulet.lit/randomID' type='get' id='retrieve1'>
|
|
|
|
+ * <pubsub xmlns='http://jabber.org/protocol/pubsub'>
|
|
|
|
+ * <items node='storage:bookmarks'/>
|
|
|
|
+ * </pubsub>
|
|
|
|
+ * </iq>
|
|
|
|
+ */
|
|
|
|
+ expect(sent_stanza.toLocaleString()).toBe(
|
|
|
|
+ "<iq from='dummy@localhost/resource' type='get' xmlns='jabber:client' id='"+IQ_id+"'>"+
|
|
|
|
+ "<pubsub xmlns='http://jabber.org/protocol/pubsub'>"+
|
|
|
|
+ "<items node='storage:bookmarks'/>"+
|
|
|
|
+ "</pubsub>"+
|
|
|
|
+ "</iq>"
|
|
|
|
+ );
|
|
|
|
+
|
|
|
|
+ /*
|
|
|
|
+ * Server returns all items
|
|
|
|
+ * ------------------------
|
|
|
|
+ * <iq type='result'
|
|
|
|
+ * to='juliet@capulet.lit/randomID'
|
|
|
|
+ * id='retrieve1'>
|
|
|
|
+ * <pubsub xmlns='http://jabber.org/protocol/pubsub'>
|
|
|
|
+ * <items node='storage:bookmarks'>
|
|
|
|
+ * <item id='current'>
|
|
|
|
+ * <storage xmlns='storage:bookmarks'>
|
|
|
|
+ * <conference name='The Play's the Thing'
|
|
|
|
+ * autojoin='true'
|
|
|
|
+ * jid='theplay@conference.shakespeare.lit'>
|
|
|
|
+ * <nick>JC</nick>
|
|
|
|
+ * </conference>
|
|
|
|
+ * </storage>
|
|
|
|
+ * </item>
|
|
|
|
+ * </items>
|
|
|
|
+ * </pubsub>
|
|
|
|
+ * </iq>
|
|
|
|
+ */
|
|
|
|
+ expect(converse.bookmarks.models.length).toBe(0);
|
|
|
|
+ var stanza = $iq({'to': converse.connection.jid, 'type':'result', 'id':IQ_id})
|
|
|
|
+ .c('pubsub', {'xmlns': Strophe.NS.PUBSUB})
|
|
|
|
+ .c('items', {'node': 'storage:bookmarks'})
|
|
|
|
+ .c('item', {'id': 'current'})
|
|
|
|
+ .c('storage', {'xmlns': 'storage:bookmarks'})
|
|
|
|
+ .c('conference', {
|
|
|
|
+ 'name': 'The Play's the Thing',
|
|
|
|
+ 'autojoin': 'true',
|
|
|
|
+ 'jid': 'theplay@conference.shakespeare.lit'
|
|
|
|
+ }).c('nick').t('JC');
|
|
|
|
+ converse.connection._dataRecv(test_utils.createRequest(stanza));
|
|
|
|
+ expect(converse.bookmarks.models.length).toBe(1);
|
|
|
|
+ });
|
|
|
|
+ });
|
|
|
|
+}));
|