summaryrefslogtreecommitdiffstats
blob: 9b45794492ba45d4a2f55401035671f72873b420 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
/*
 * Copyright (c) 2010-2017 Isode Limited.
 * All rights reserved.
 * See the COPYING file for more information.
 */

#include <boost/algorithm/string.hpp>

#include <cppunit/extensions/HelperMacros.h>
#include <cppunit/extensions/TestFactoryRegistry.h>
#include <hippomocks.h>

#include <Swiften/Avatars/NullAvatarManager.h>
#include <Swiften/Client/ClientBlockListManager.h>
#include <Swiften/Client/DummyStanzaChannel.h>
#include <Swiften/Client/NickResolver.h>
#include <Swiften/Crypto/CryptoProvider.h>
#include <Swiften/Crypto/PlatformCryptoProvider.h>
#include <Swiften/Disco/DummyEntityCapsProvider.h>
#include <Swiften/Elements/MUCUserPayload.h>
#include <Swiften/Elements/Thread.h>
#include <Swiften/MUC/MUCBookmarkManager.h>
#include <Swiften/MUC/UnitTest/MockMUC.h>
#include <Swiften/Network/TimerFactory.h>
#include <Swiften/Presence/DirectedPresenceSender.h>
#include <Swiften/Presence/PresenceOracle.h>
#include <Swiften/Presence/StanzaChannelPresenceSender.h>
#include <Swiften/Queries/DummyIQChannel.h>
#include <Swiften/Roster/XMPPRoster.h>
#include <Swiften/Roster/XMPPRosterImpl.h>
#include <Swiften/VCards/VCardManager.h>
#include <Swiften/VCards/VCardMemoryStorage.h>

#include <Swift/Controllers/Chat/ChatMessageParser.h>
#include <Swift/Controllers/Chat/MUCController.h>
#include <Swift/Controllers/Chat/UserSearchController.h>
#include <Swift/Controllers/Roster/GroupRosterItem.h>
#include <Swift/Controllers/Roster/Roster.h>
#include <Swift/Controllers/SettingConstants.h>
#include <Swift/Controllers/Settings/DummySettingsProvider.h>
#include <Swift/Controllers/UIEvents/UIEventStream.h>
#include <Swift/Controllers/UIInterfaces/ChatWindow.h>
#include <Swift/Controllers/UIInterfaces/ChatWindowFactory.h>
#include <Swift/Controllers/UIInterfaces/UserSearchWindowFactory.h>
#include <Swift/Controllers/UnitTest/MockChatWindow.h>
#include <Swift/Controllers/XMPPEvents/EventController.h>

using namespace Swift;

class MUCControllerTest : public CppUnit::TestFixture {
    CPPUNIT_TEST_SUITE(MUCControllerTest);
    CPPUNIT_TEST(testJoinPartStringContructionSimple);
    CPPUNIT_TEST(testJoinPartStringContructionMixed);
    CPPUNIT_TEST(testAppendToJoinParts);
    CPPUNIT_TEST(testAddressedToSelf);
    CPPUNIT_TEST(testNotAddressedToSelf);
    CPPUNIT_TEST(testAddressedToSelfBySelf);
    CPPUNIT_TEST(testMessageWithEmptyLabelItem);
    CPPUNIT_TEST(testMessageWithLabelItem);
    CPPUNIT_TEST(testCorrectMessageWithLabelItem);
    CPPUNIT_TEST(testRoleAffiliationStates);
    CPPUNIT_TEST(testSubjectChangeCorrect);
    CPPUNIT_TEST(testSubjectChangeIncorrectA);
    CPPUNIT_TEST(testSubjectChangeIncorrectB);
    CPPUNIT_TEST(testSubjectChangeIncorrectC);
    CPPUNIT_TEST(testHandleOccupantNicknameChanged);
    CPPUNIT_TEST(testHandleOccupantNicknameChangedRoster);
    CPPUNIT_TEST(testHandleChangeSubjectRequest);

    CPPUNIT_TEST(testNonImpromptuMUCWindowTitle);

    CPPUNIT_TEST(testSecurityMarkingRequestCompleteMarking);
    CPPUNIT_TEST(testSecurityMarkingRequestCompleteMarkingWithExtraForm);
    CPPUNIT_TEST(testSecurityMarkingRequestEmptyMarking);
    CPPUNIT_TEST(testSecurityMarkingRequestWithMarkingNoFormType);
    CPPUNIT_TEST(testSecurityMarkingRequestNoMarking);
    CPPUNIT_TEST(testSecurityMarkingRequestNoForm);
    CPPUNIT_TEST(testSecurityMarkingRequestError);

    CPPUNIT_TEST(testSecurityMarkingAddedToMessage_Elision_NoRoomMarkingA);
    CPPUNIT_TEST(testSecurityMarkingAddedToMessage_Elision_NoRoomMarkingB);
    CPPUNIT_TEST(testSecurityMarkingAddedToMessage_Elision_WithRoomMarkingA);
    CPPUNIT_TEST(testSecurityMarkingAddedToMessage_Elision_WithRoomMarkingB);
    CPPUNIT_TEST(testSecurityMarkingAddedToMessage_Elision_WithRoomMarkingC);

    CPPUNIT_TEST(testSecurityMarkingAddedToMessage_NoElision_NoRoomMarkingA);
    CPPUNIT_TEST(testSecurityMarkingAddedToMessage_NoElision_NoRoomMarkingB);
    CPPUNIT_TEST(testSecurityMarkingAddedToMessage_NoElision_WithRoomMarkingA);
    CPPUNIT_TEST(testSecurityMarkingAddedToMessage_NoElision_WithRoomMarkingB);

    CPPUNIT_TEST_SUITE_END();

public:
    void setUp() {
        crypto_ = std::shared_ptr<CryptoProvider>(PlatformCryptoProvider::create());
        self_ = JID("girl@wonderland.lit/rabbithole");
        nick_ = "aLiCe";
        mucJID_ = JID("teaparty@rooms.wonderland.lit");
        mocks_ = new MockRepository();
        stanzaChannel_ = new DummyStanzaChannel();
        iqChannel_ = new DummyIQChannel();
        iqRouter_ = new IQRouter(iqChannel_);
        eventController_ = new EventController();
        chatWindowFactory_ = mocks_->InterfaceMock<ChatWindowFactory>();
        userSearchWindowFactory_ = mocks_->InterfaceMock<UserSearchWindowFactory>();
        xmppRoster_ = new XMPPRosterImpl();
        presenceOracle_ = new PresenceOracle(stanzaChannel_, xmppRoster_);
        presenceSender_ = new StanzaChannelPresenceSender(stanzaChannel_);
        directedPresenceSender_ = new DirectedPresenceSender(presenceSender_);
        uiEventStream_ = new UIEventStream();
        avatarManager_ = new NullAvatarManager();
        TimerFactory* timerFactory = nullptr;
        window_ = new MockChatWindow();
        mucRegistry_ = new MUCRegistry();
        entityCapsProvider_ = new DummyEntityCapsProvider();
        settings_ = new DummySettingsProvider();
        highlightManager_ = new HighlightManager(settings_);
        highlightManager_->resetToDefaultConfiguration();
        muc_ = std::make_shared<MockMUC>(mucJID_);
        mocks_->ExpectCall(chatWindowFactory_, ChatWindowFactory::createChatWindow).With(muc_->getJID(), uiEventStream_).Return(window_);
        chatMessageParser_ = std::make_shared<ChatMessageParser>(std::map<std::string, std::string>(), highlightManager_->getConfiguration(), ChatMessageParser::Mode::GroupChat);
        vcardStorage_ = new VCardMemoryStorage(crypto_.get());
        vcardManager_ = new VCardManager(self_, iqRouter_, vcardStorage_);
        nickResolver_ = new NickResolver(self_, xmppRoster_, vcardManager_, mucRegistry_);
        clientBlockListManager_ = new ClientBlockListManager(iqRouter_);
        mucBookmarkManager_ = new MUCBookmarkManager(iqRouter_);
        controller_ = new MUCController (self_, muc_, boost::optional<std::string>(), nick_, stanzaChannel_, iqRouter_, chatWindowFactory_, nickResolver_, presenceOracle_, avatarManager_, uiEventStream_, false, timerFactory, eventController_, entityCapsProvider_, nullptr, nullptr, mucRegistry_, highlightManager_, clientBlockListManager_, chatMessageParser_, false, nullptr, vcardManager_, mucBookmarkManager_, settings_);
    }

    void tearDown() {
        delete controller_;
        delete mucBookmarkManager_;
        delete clientBlockListManager_;
        delete nickResolver_;
        delete vcardManager_;
        delete vcardStorage_;
        delete highlightManager_;
        delete settings_;
        delete entityCapsProvider_;
        delete eventController_;
        delete presenceOracle_;
        delete xmppRoster_;
        delete mocks_;
        delete uiEventStream_;
        delete stanzaChannel_;
        delete presenceSender_;
        delete directedPresenceSender_;
        delete iqRouter_;
        delete iqChannel_;
        delete mucRegistry_;
        delete avatarManager_;
    }

    void finishJoin() {
        Presence::ref presence(new Presence());
        presence->setFrom(JID(muc_->getJID().toString() + "/" + nick_));
        MUCUserPayload::ref status(new MUCUserPayload());
        MUCUserPayload::StatusCode code;
        code.code = 110;
        status->addStatusCode(code);
        presence->addPayload(status);
        stanzaChannel_->onPresenceReceived(presence);
    }

    void joinCompleted() {
        std::string messageBody("test message");
        window_->onSendMessageRequest(messageBody, false);
        std::shared_ptr<Stanza> rawStanza = stanzaChannel_->sentStanzas[stanzaChannel_->sentStanzas.size() - 1];
        Message::ref message = std::dynamic_pointer_cast<Message>(rawStanza);
        CPPUNIT_ASSERT(stanzaChannel_->isAvailable()); /* Otherwise will prevent sends. */
        CPPUNIT_ASSERT(message);
        CPPUNIT_ASSERT_EQUAL(messageBody, message->getBody().get_value_or(""));

        {
            Message::ref message = std::make_shared<Message>();
            message->setType(Message::Groupchat);
            message->setTo(self_);
            message->setFrom(mucJID_.withResource("SomeNickname"));
            message->setID(iqChannel_->getNewIQID());
            message->setSubject("Initial");

            controller_->handleIncomingMessage(std::make_shared<MessageEvent>(message));
        }
    }

    void setMUCSecurityMarking(const std::string& markingValue, const std::string   & markingForegroundColorValue, const std::string& markingBackgroundColorValue, const bool includeFormTypeField = true) {
        auto form = std::make_shared<Form>(Form::Type::ResultType);

        if (includeFormTypeField) {
            std::shared_ptr<FormField> formTypeField = std::make_shared<FormField>(FormField::Type::HiddenType, "http://jabber.org/protocol/muc#roominfo");
            formTypeField->setName("FORM_TYPE");
            form->addField(formTypeField);
        }

        auto markingField = std::make_shared<FormField>(FormField::Type::TextSingleType, markingValue);
        auto markingForegroundColorField = std::make_shared<FormField>(FormField::Type::TextSingleType, markingForegroundColorValue);
        auto markingBackgroundColorField = std::make_shared<FormField>(FormField::Type::TextSingleType, markingBackgroundColorValue);

        markingField->setName("x-isode#roominfo_marking");
        markingForegroundColorField->setName("x-isode#roominfo_marking_fg_color");
        markingBackgroundColorField->setName("x-isode#roominfo_marking_bg_color");

        form->addField(markingField);
        form->addField(markingForegroundColorField);
        form->addField(markingBackgroundColorField);

        auto discoInfoRef = std::make_shared<DiscoInfo>();
        discoInfoRef->addExtension(form);

        auto infoResponse = IQ::createResult(self_, mucJID_, "test-id", discoInfoRef);
        iqChannel_->onIQReceived(infoResponse);
    }

    Message::ref createTestMessageWithoutSecurityLabel() {
        auto message = std::make_shared<Message>();
        message->setType(Message::Type::Groupchat);
        message->setID("test-id");
        message->setTo(self_);
        message->setFrom(mucJID_.withResource("TestNickname"));
        message->setBody("Do Not Read This Message");
        return message;
    }

    void testAddressedToSelf() {
        finishJoin();
        Message::ref message(new Message());

        message = Message::ref(new Message());
        message->setFrom(JID(muc_->getJID().toString() + "/otherperson"));
        message->setBody("basic " + nick_ + " test.");
        message->setType(Message::Groupchat);
        controller_->handleIncomingMessage(MessageEvent::ref(new MessageEvent(message)));
        CPPUNIT_ASSERT_EQUAL((size_t)1, eventController_->getEvents().size());

        message = Message::ref(new Message());
        message->setFrom(JID(muc_->getJID().toString() + "/otherperson"));
        message->setBody(nick_ + ": hi there");
        message->setType(Message::Groupchat);
        controller_->handleIncomingMessage(MessageEvent::ref(new MessageEvent(message)));
        CPPUNIT_ASSERT_EQUAL((size_t)2, eventController_->getEvents().size());

        message->setFrom(JID(muc_->getJID().toString() + "/other"));
        message->setBody("Hi there " + nick_);
        message->setType(Message::Groupchat);
        controller_->handleIncomingMessage(MessageEvent::ref(new MessageEvent(message)));
        CPPUNIT_ASSERT_EQUAL((size_t)3, eventController_->getEvents().size());

        message = Message::ref(new Message());
        message->setFrom(JID(muc_->getJID().toString() + "/other2"));
        message->setBody("Hi " + boost::to_lower_copy(nick_) + ".");
        message->setType(Message::Groupchat);
        controller_->handleIncomingMessage(MessageEvent::ref(new MessageEvent(message)));

        // The last message is ignored because self-mention highlights are matched case
        // sensitive against the nickname.
        CPPUNIT_ASSERT_EQUAL((size_t)3, eventController_->getEvents().size());

        message = Message::ref(new Message());
        message->setFrom(JID(muc_->getJID().toString() + "/other3"));
        message->setBody("Hi bert.");
        message->setType(Message::Groupchat);
        controller_->handleIncomingMessage(MessageEvent::ref(new MessageEvent(message)));
        CPPUNIT_ASSERT_EQUAL((size_t)3, eventController_->getEvents().size());

        message = Message::ref(new Message());
        message->setFrom(JID(muc_->getJID().toString() + "/other2"));
        message->setBody("Hi " + boost::to_lower_copy(nick_) + "ie.");
        message->setType(Message::Groupchat);
        controller_->handleIncomingMessage(MessageEvent::ref(new MessageEvent(message)));
        CPPUNIT_ASSERT_EQUAL((size_t)3, eventController_->getEvents().size());
    }

    void testNotAddressedToSelf() {
        finishJoin();
        Message::ref message(new Message());
        message->setFrom(JID(muc_->getJID().toString() + "/other3"));
        message->setBody("Hi there Hatter");
        message->setType(Message::Groupchat);
        controller_->handleIncomingMessage(MessageEvent::ref(new MessageEvent(message)));
        CPPUNIT_ASSERT_EQUAL((size_t)0, eventController_->getEvents().size());
    }

    void testAddressedToSelfBySelf() {
        finishJoin();
        Message::ref message(new Message());
        message->setFrom(JID(muc_->getJID().toString() + "/" + nick_));
        message->setBody("Hi there " + nick_);
        message->setType(Message::Groupchat);
        controller_->handleIncomingMessage(MessageEvent::ref(new MessageEvent(message)));
        CPPUNIT_ASSERT_EQUAL((size_t)0, eventController_->getEvents().size());
    }

    void testMessageWithEmptyLabelItem() {
        SecurityLabelsCatalog::Item label;
        label.setSelector("Bob");
        window_->label_ = label;
        std::shared_ptr<DiscoInfo> features = std::make_shared<DiscoInfo>();
        features->addFeature(DiscoInfo::SecurityLabelsCatalogFeature);
        controller_->setAvailableServerFeatures(features);
        IQ::ref iq = iqChannel_->iqs_[iqChannel_->iqs_.size() - 1];
        SecurityLabelsCatalog::ref labelPayload = std::make_shared<SecurityLabelsCatalog>();
        labelPayload->addItem(label);
        IQ::ref result = IQ::createResult(self_, iq->getID(), labelPayload);
        iqChannel_->onIQReceived(result);
        std::string messageBody("agamemnon");
        window_->onSendMessageRequest(messageBody, false);
        std::shared_ptr<Stanza> rawStanza = stanzaChannel_->sentStanzas[stanzaChannel_->sentStanzas.size() - 1];
        Message::ref message = std::dynamic_pointer_cast<Message>(rawStanza);
        CPPUNIT_ASSERT_EQUAL(iq->getTo(), result->getFrom());
        CPPUNIT_ASSERT(window_->labelsEnabled_);
        CPPUNIT_ASSERT(stanzaChannel_->isAvailable()); /* Otherwise will prevent sends. */
        CPPUNIT_ASSERT(message);
        CPPUNIT_ASSERT_EQUAL(messageBody, message->getBody().get());
        CPPUNIT_ASSERT(!message->getPayload<SecurityLabel>());
    }

    void testMessageWithLabelItem() {
        std::shared_ptr<SecurityLabel> label = std::make_shared<SecurityLabel>();
        label->setLabel("a");
        SecurityLabelsCatalog::Item labelItem;
        labelItem.setSelector("Bob");
        labelItem.setLabel(label);
        window_->label_ = labelItem;
        std::shared_ptr<DiscoInfo> features = std::make_shared<DiscoInfo>();
        features->addFeature(DiscoInfo::SecurityLabelsCatalogFeature);
        controller_->setAvailableServerFeatures(features);
        IQ::ref iq = iqChannel_->iqs_[iqChannel_->iqs_.size() - 1];
        SecurityLabelsCatalog::ref labelPayload = std::make_shared<SecurityLabelsCatalog>();
        labelPayload->addItem(labelItem);
        IQ::ref result = IQ::createResult(self_, iq->getID(), labelPayload);
        iqChannel_->onIQReceived(result);
        std::string messageBody("agamemnon");
        window_->onSendMessageRequest(messageBody, false);
        std::shared_ptr<Stanza> rawStanza = stanzaChannel_->sentStanzas[stanzaChannel_->sentStanzas.size() - 1];
        Message::ref message = std::dynamic_pointer_cast<Message>(rawStanza);
        CPPUNIT_ASSERT_EQUAL(iq->getTo(), result->getFrom());
        CPPUNIT_ASSERT(window_->labelsEnabled_);
        CPPUNIT_ASSERT(stanzaChannel_->isAvailable()); /* Otherwise will prevent sends. */
        CPPUNIT_ASSERT(message);
        CPPUNIT_ASSERT_EQUAL(messageBody, message->getBody().get());
        CPPUNIT_ASSERT_EQUAL(label, message->getPayload<SecurityLabel>());
    }

    void testCorrectMessageWithLabelItem() {
        std::shared_ptr<SecurityLabel> label = std::make_shared<SecurityLabel>();
        label->setLabel("a");
        SecurityLabelsCatalog::Item labelItem;
        labelItem.setSelector("Bob");
        labelItem.setLabel(label);
        std::shared_ptr<SecurityLabel> label2 = std::make_shared<SecurityLabel>();
        label->setLabel("b");
        SecurityLabelsCatalog::Item labelItem2;
        labelItem2.setSelector("Charlie");
        labelItem2.setLabel(label2);
        window_->label_ = labelItem;
        std::shared_ptr<DiscoInfo> features = std::make_shared<DiscoInfo>();
        features->addFeature(DiscoInfo::SecurityLabelsCatalogFeature);
        controller_->setAvailableServerFeatures(features);
        IQ::ref iq = iqChannel_->iqs_[iqChannel_->iqs_.size() - 1];
        SecurityLabelsCatalog::ref labelPayload = std::make_shared<SecurityLabelsCatalog>();
        labelPayload->addItem(labelItem);
        IQ::ref result = IQ::createResult(self_, iq->getID(), labelPayload);
        iqChannel_->onIQReceived(result);
        std::string messageBody("agamemnon");
        window_->onSendMessageRequest(messageBody, false);
        std::shared_ptr<Stanza> rawStanza = stanzaChannel_->sentStanzas[stanzaChannel_->sentStanzas.size() - 1];
        Message::ref message = std::dynamic_pointer_cast<Message>(rawStanza);
        CPPUNIT_ASSERT_EQUAL(iq->getTo(), result->getFrom());
        CPPUNIT_ASSERT(window_->labelsEnabled_);
        CPPUNIT_ASSERT(stanzaChannel_->isAvailable()); /* Otherwise will prevent sends. */
        CPPUNIT_ASSERT(message);
        CPPUNIT_ASSERT_EQUAL(messageBody, message->getBody().get());
        CPPUNIT_ASSERT_EQUAL(label, message->getPayload<SecurityLabel>());
        window_->label_ = labelItem2;
        window_->onSendMessageRequest(messageBody, true);
        rawStanza = stanzaChannel_->sentStanzas[stanzaChannel_->sentStanzas.size() - 1];
        message = std::dynamic_pointer_cast<Message>(rawStanza);
        CPPUNIT_ASSERT_EQUAL(messageBody, message->getBody().get());
        CPPUNIT_ASSERT_EQUAL(label, message->getPayload<SecurityLabel>());
    }

    void checkEqual(const std::vector<NickJoinPart>& expected, const std::vector<NickJoinPart>& actual) {
        CPPUNIT_ASSERT_EQUAL(expected.size(), actual.size());
        for (size_t i = 0; i < expected.size(); i++) {
            CPPUNIT_ASSERT_EQUAL(expected[i].nick, actual[i].nick);
            CPPUNIT_ASSERT_EQUAL(expected[i].type, actual[i].type);
        }
    }

    void testAppendToJoinParts() {
        std::vector<NickJoinPart> list;
        std::vector<NickJoinPart> gold;
        MUCController::appendToJoinParts(list, NickJoinPart("Kev", Join));
        gold.push_back(NickJoinPart("Kev", Join));
        checkEqual(gold, list);
        MUCController::appendToJoinParts(list, NickJoinPart("Remko", Join));
        gold.push_back(NickJoinPart("Remko", Join));
        checkEqual(gold, list);
        MUCController::appendToJoinParts(list, NickJoinPart("Bert", Join));
        gold.push_back(NickJoinPart("Bert", Join));
        checkEqual(gold, list);
        MUCController::appendToJoinParts(list, NickJoinPart("Bert", Part));
        gold[2].type = JoinThenPart;
        checkEqual(gold, list);
        MUCController::appendToJoinParts(list, NickJoinPart("Kev", Part));
        gold[0].type = JoinThenPart;
        checkEqual(gold, list);
        MUCController::appendToJoinParts(list, NickJoinPart("Remko", Part));
        gold[1].type = JoinThenPart;
        checkEqual(gold, list);
        MUCController::appendToJoinParts(list, NickJoinPart("Ernie", Part));
        gold.push_back(NickJoinPart("Ernie", Part));
        checkEqual(gold, list);
        MUCController::appendToJoinParts(list, NickJoinPart("Ernie", Join));
        gold[3].type = PartThenJoin;
        checkEqual(gold, list);
        MUCController::appendToJoinParts(list, NickJoinPart("Kev", Join));
        gold[0].type = Join;
        checkEqual(gold, list);
        MUCController::appendToJoinParts(list, NickJoinPart("Ernie", Part));
        gold[3].type = Part;
        checkEqual(gold, list);

    }

    void testJoinPartStringContructionSimple() {
        std::vector<NickJoinPart> list;
        list.push_back(NickJoinPart("Kev", Join));
        CPPUNIT_ASSERT_EQUAL(std::string("Kev has entered the room"), MUCController::generateJoinPartString(list, false));
        list.push_back(NickJoinPart("Remko", Part));
        CPPUNIT_ASSERT_EQUAL(std::string("Kev has entered the room and Remko has left the room"), MUCController::generateJoinPartString(list, false));
        list.push_back(NickJoinPart("Bert", Join));
        CPPUNIT_ASSERT_EQUAL(std::string("Kev and Bert have entered the room and Remko has left the room"), MUCController::generateJoinPartString(list, false));
        list.push_back(NickJoinPart("Ernie", Join));
        CPPUNIT_ASSERT_EQUAL(std::string("Kev, Bert and Ernie have entered the room and Remko has left the room"), MUCController::generateJoinPartString(list, false));
    }

    void testJoinPartStringContructionMixed() {
        std::vector<NickJoinPart> list;
        list.push_back(NickJoinPart("Kev", JoinThenPart));
        CPPUNIT_ASSERT_EQUAL(std::string("Kev has entered then left the room"), MUCController::generateJoinPartString(list, false));
        list.push_back(NickJoinPart("Remko", Part));
        CPPUNIT_ASSERT_EQUAL(std::string("Remko has left the room and Kev has entered then left the room"), MUCController::generateJoinPartString(list, false));
        list.push_back(NickJoinPart("Bert", PartThenJoin));
        CPPUNIT_ASSERT_EQUAL(std::string("Remko has left the room, Kev has entered then left the room and Bert has left then returned to the room"), MUCController::generateJoinPartString(list, false));
        list.push_back(NickJoinPart("Ernie", JoinThenPart));
        CPPUNIT_ASSERT_EQUAL(std::string("Remko has left the room, Kev and Ernie have entered then left the room and Bert has left then returned to the room"), MUCController::generateJoinPartString(list, false));
    }

    JID jidFromOccupant(const MUCOccupant& occupant) {
        return JID(mucJID_.toString()+"/"+occupant.getNick());
    }

    void testRoleAffiliationStates() {

        typedef std::map<std::string, MUCOccupant> occupant_map;
        occupant_map occupants;
        occupants.insert(occupant_map::value_type("Kev", MUCOccupant("Kev", MUCOccupant::Participant, MUCOccupant::Owner)));
        occupants.insert(occupant_map::value_type("Remko", MUCOccupant("Remko", MUCOccupant::Participant, MUCOccupant::Owner)));
        occupants.insert(occupant_map::value_type("Bert", MUCOccupant("Bert", MUCOccupant::Participant, MUCOccupant::Owner)));
        occupants.insert(occupant_map::value_type("Ernie", MUCOccupant("Ernie", MUCOccupant::Participant, MUCOccupant::Owner)));

        /* populate the MUC with fake users */
        for (auto&& occupant : occupants) {
            muc_->insertOccupant(occupant.second);
        }

        std::vector<MUCOccupant> alterations;
        alterations.push_back(MUCOccupant("Kev", MUCOccupant::Visitor, MUCOccupant::Admin));
        alterations.push_back(MUCOccupant("Remko", MUCOccupant::Moderator, MUCOccupant::Member));
        alterations.push_back(MUCOccupant("Bert", MUCOccupant::Visitor, MUCOccupant::Outcast));
        alterations.push_back(MUCOccupant("Ernie", MUCOccupant::NoRole, MUCOccupant::Member));
        alterations.push_back(MUCOccupant("Bert", MUCOccupant::Moderator, MUCOccupant::Owner));
        alterations.push_back(MUCOccupant("Kev", MUCOccupant::Participant, MUCOccupant::Outcast));
        alterations.push_back(MUCOccupant("Bert", MUCOccupant::Visitor, MUCOccupant::NoAffiliation));
        alterations.push_back(MUCOccupant("Remko", MUCOccupant::NoRole, MUCOccupant::NoAffiliation));
        alterations.push_back(MUCOccupant("Ernie", MUCOccupant::Visitor, MUCOccupant::Outcast));

        for (const auto& alteration : alterations) {
            /* perform an alteration to a user's role and affiliation */
            occupant_map::iterator occupant = occupants.find(alteration.getNick());
            CPPUNIT_ASSERT(occupant != occupants.end());
            const JID jid = jidFromOccupant(occupant->second);
            /* change the affiliation, leave the role in place */
            muc_->changeAffiliation(jid, alteration.getAffiliation());
            occupant->second = MUCOccupant(occupant->first, occupant->second.getRole(), alteration.getAffiliation());
            testRoleAffiliationStatesVerify(occupants);
            /* change the role, leave the affiliation in place */
            muc_->changeOccupantRole(jid, alteration.getRole());
            occupant->second = MUCOccupant(occupant->first, alteration.getRole(), occupant->second.getAffiliation());
            testRoleAffiliationStatesVerify(occupants);
        }
    }

    void testSubjectChangeCorrect() {
        joinCompleted();

        {
            Message::ref message = std::make_shared<Message>();
            message->setType(Message::Groupchat);
            message->setTo(self_);
            message->setFrom(mucJID_.withResource("SomeNickname"));
            message->setID("3FB99C56-7C92-4755-91B0-9C0098BC7AE0");
            message->setSubject("New Room Subject");

            controller_->handleIncomingMessage(std::make_shared<MessageEvent>(message));
            CPPUNIT_ASSERT_EQUAL(std::string("The room subject is now: New Room Subject"), std::dynamic_pointer_cast<ChatWindow::ChatTextMessagePart>(window_->lastAddedSystemMessage_.getParts()[0])->text);
        }
    }

    /*
     * Test that message stanzas with subject element and non-empty body element do not cause a subject change.
     */
    void testSubjectChangeIncorrectA() {
        joinCompleted();

        {
            Message::ref message = std::make_shared<Message>();
            message->setType(Message::Groupchat);
            message->setTo(self_);
            message->setFrom(mucJID_.withResource("SomeNickname"));
            message->setID(iqChannel_->getNewIQID());
            message->setSubject("New Room Subject");
            message->setBody("Some body text that prevents this stanza from being a subject change.");

            controller_->handleIncomingMessage(std::make_shared<MessageEvent>(message));
            CPPUNIT_ASSERT_EQUAL(std::string("Trying to enter room teaparty@rooms.wonderland.lit"), std::dynamic_pointer_cast<ChatWindow::ChatTextMessagePart>(window_->lastAddedSystemMessage_.getParts()[0])->text);
        }
    }

    /*
     * Test that message stanzas with subject element and thread element do not cause a subject change.
     */
    void testSubjectChangeIncorrectB() {
        joinCompleted();

        {
            Message::ref message = std::make_shared<Message>();
            message->setType(Message::Groupchat);
            message->setTo(self_);
            message->setFrom(mucJID_.withResource("SomeNickname"));
            message->setID(iqChannel_->getNewIQID());
            message->setSubject("New Room Subject");
            message->addPayload(std::make_shared<Thread>("Thread that prevents the subject change."));

            controller_->handleIncomingMessage(std::make_shared<MessageEvent>(message));
            CPPUNIT_ASSERT_EQUAL(std::string("Trying to enter room teaparty@rooms.wonderland.lit"), std::dynamic_pointer_cast<ChatWindow::ChatTextMessagePart>(window_->lastAddedSystemMessage_.getParts()[0])->text);
        }
    }

    /*
     * Test that message stanzas with subject element and empty body element do not cause a subject change.
     */
    void testSubjectChangeIncorrectC() {
        joinCompleted();

        {
            Message::ref message = std::make_shared<Message>();
            message->setType(Message::Groupchat);
            message->setTo(self_);
            message->setFrom(mucJID_.withResource("SomeNickname"));
            message->setID(iqChannel_->getNewIQID());
            message->setSubject("New Room Subject");
            message->setBody("");

            controller_->handleIncomingMessage(std::make_shared<MessageEvent>(message));
            CPPUNIT_ASSERT_EQUAL(std::string("Trying to enter room teaparty@rooms.wonderland.lit"), std::dynamic_pointer_cast<ChatWindow::ChatTextMessagePart>(window_->lastAddedSystemMessage_.getParts()[0])->text);
        }
    }

    void testHandleOccupantNicknameChanged() {
        const auto occupantCount = [&](const std::string & nick) {
            auto roster = window_->getRosterModel();
            CPPUNIT_ASSERT(roster != nullptr);
            const auto currentOccupantsJIDs = roster->getJIDs();
            int count = 0;
            for (auto & p : currentOccupantsJIDs) {
                if (p.getResource() == nick) {
                    ++count;
                }
            }
            return count;
        };

        muc_->insertOccupant(MUCOccupant("TestUserOne", MUCOccupant::Participant, MUCOccupant::Owner));
        muc_->insertOccupant(MUCOccupant("TestUserTwo", MUCOccupant::Participant, MUCOccupant::Owner));
        muc_->insertOccupant(MUCOccupant("TestUserThree", MUCOccupant::Participant, MUCOccupant::Owner));

        muc_->onOccupantNicknameChanged("TestUserOne", "TestUserTwo");

        CPPUNIT_ASSERT_EQUAL(0, occupantCount("TestUserOne"));
        CPPUNIT_ASSERT_EQUAL(1, occupantCount("TestUserTwo"));
        CPPUNIT_ASSERT_EQUAL(1, occupantCount("TestUserThree"));
    }

    void testHandleOccupantNicknameChangedRoster() {
        const auto occupantCount = [&](const std::string & nick) {
            auto roster = window_->getRosterModel();
            CPPUNIT_ASSERT(roster != nullptr);
            const auto participants = roster->getGroup("Participants");
            CPPUNIT_ASSERT(participants != nullptr);
            const auto displayedParticipants = participants->getDisplayedChildren();
            int count = 0;
            for (auto & p : displayedParticipants) {
                if (p->getDisplayName() == nick) {
                    ++count;
                }
            }
            return count;
        };

        muc_->insertOccupant(MUCOccupant("TestUserOne", MUCOccupant::Participant, MUCOccupant::Owner));
        muc_->insertOccupant(MUCOccupant("TestUserTwo", MUCOccupant::Participant, MUCOccupant::Owner));
        muc_->insertOccupant(MUCOccupant("TestUserThree", MUCOccupant::Participant, MUCOccupant::Owner));
        CPPUNIT_ASSERT_EQUAL(1, occupantCount("TestUserOne"));
        CPPUNIT_ASSERT_EQUAL(1, occupantCount("TestUserTwo"));
        CPPUNIT_ASSERT_EQUAL(1, occupantCount("TestUserThree"));

        muc_->onOccupantNicknameChanged("TestUserOne", "TestUserTwo");

        CPPUNIT_ASSERT_EQUAL(0, occupantCount("TestUserOne"));
        CPPUNIT_ASSERT_EQUAL(1, occupantCount("TestUserTwo"));
        CPPUNIT_ASSERT_EQUAL(1, occupantCount("TestUserThree"));
    }

    void testRoleAffiliationStatesVerify(const std::map<std::string, MUCOccupant> &occupants) {
        /* verify that the roster is in sync */
        GroupRosterItem* group = window_->getRosterModel()->getRoot();
        for (auto rosterItem : group->getChildren()) {
            GroupRosterItem* child = dynamic_cast<GroupRosterItem*>(rosterItem);
            CPPUNIT_ASSERT(child);
            for (auto childItem : child->getChildren()) {
                ContactRosterItem* item = dynamic_cast<ContactRosterItem*>(childItem);
                CPPUNIT_ASSERT(item);
                std::map<std::string, MUCOccupant>::const_iterator occupant = occupants.find(item->getJID().getResource());
                CPPUNIT_ASSERT(occupant != occupants.end());
                CPPUNIT_ASSERT(item->getMUCRole() == occupant->second.getRole());
                CPPUNIT_ASSERT(item->getMUCAffiliation() == occupant->second.getAffiliation());
            }
        }
    }

    void testHandleChangeSubjectRequest() {
        std::string testStr("New Subject");
        CPPUNIT_ASSERT_EQUAL(std::string(""), muc_->newSubjectSet_);
        window_->onChangeSubjectRequest(testStr);
        CPPUNIT_ASSERT_EQUAL(testStr, muc_->newSubjectSet_);
    }

    void testNonImpromptuMUCWindowTitle() {
        CPPUNIT_ASSERT_EQUAL(muc_->getJID().getNode(), window_->name_);
    }

    void testSecurityMarkingRequestCompleteMarking() {
        setMUCSecurityMarking("Test|Highest Possible Security", "Black", "Red", true);

        CPPUNIT_ASSERT_EQUAL(std::string("Test|Highest Possible Security"), window_->markingValue_);
        CPPUNIT_ASSERT_EQUAL(std::string("Black"), window_->markingForegroundColorValue_);
        CPPUNIT_ASSERT_EQUAL(std::string("Red"), window_->markingBackgroundColorValue_);
    }

    void testSecurityMarkingRequestCompleteMarkingWithExtraForm() {
        auto formTypeField = std::make_shared<FormField>(FormField::Type::HiddenType, "http://jabber.org/protocol/muc#roominfo");
        auto markingField = std::make_shared<FormField>(FormField::Type::TextSingleType, "Test|Highest Possible Security");
        auto markingForegroundColorField = std::make_shared<FormField>(FormField::Type::TextSingleType, "Black");
        auto markingBackgroundColorField = std::make_shared<FormField>(FormField::Type::TextSingleType, "Red");
        formTypeField->setName("FORM_TYPE");
        markingField->setName("x-isode#roominfo_marking");
        markingForegroundColorField->setName("x-isode#roominfo_marking_fg_color");
        markingBackgroundColorField->setName("x-isode#roominfo_marking_bg_color");

        auto extraForm = std::make_shared<Form>(Form::Type::ResultType);
        auto form = std::make_shared<Form>(Form::Type::ResultType);
        form->addField(formTypeField);
        form->addField(markingField);
        form->addField(markingForegroundColorField);
        form->addField(markingBackgroundColorField);

        auto discoInfoRef = std::make_shared<DiscoInfo>();
        discoInfoRef->addExtension(extraForm);
        discoInfoRef->addExtension(form);

        auto infoResponse = IQ::createResult(self_, mucJID_, "test-id", discoInfoRef);
        iqChannel_->onIQReceived(infoResponse);
        CPPUNIT_ASSERT_EQUAL(std::string("Test|Highest Possible Security"), window_->markingValue_);
        CPPUNIT_ASSERT_EQUAL(std::string("Black"), window_->markingForegroundColorValue_);
        CPPUNIT_ASSERT_EQUAL(std::string("Red"), window_->markingBackgroundColorValue_);
    }

    void testSecurityMarkingRequestNoColorsInMarking() {
        auto formTypeField = std::make_shared<FormField>(FormField::Type::HiddenType, "http://jabber.org/protocol/muc#roominfo");
        auto markingField = std::make_shared<FormField>(FormField::Type::TextSingleType, "Test|Highest Possible Security");
        auto markingForegroundColorField = std::make_shared<FormField>(FormField::Type::TextSingleType, "");
        auto markingBackgroundColorField = std::make_shared<FormField>(FormField::Type::TextSingleType, "");
        formTypeField->setName("FORM_TYPE");
        markingField->setName("x-isode#roominfo_marking");
        markingForegroundColorField->setName("x-isode#roominfo_marking_fg_color");
        markingBackgroundColorField->setName("x-isode#roominfo_marking_bg_color");

        auto form = std::make_shared<Form>(Form::Type::ResultType);
        form->addField(formTypeField);
        form->addField(markingField);
        form->addField(markingForegroundColorField);
        form->addField(markingBackgroundColorField);

        auto discoInfoRef = std::make_shared<DiscoInfo>();
        discoInfoRef->addExtension(form);

        auto infoResponse = IQ::createResult(self_, mucJID_, "test-id", discoInfoRef);
        iqChannel_->onIQReceived(infoResponse);
        CPPUNIT_ASSERT_EQUAL(std::string("Test|Highest Possible Security"), window_->markingValue_);
        CPPUNIT_ASSERT_EQUAL(std::string("Black"), window_->markingForegroundColorValue_);
        CPPUNIT_ASSERT_EQUAL(std::string("White"), window_->markingBackgroundColorValue_);
    }

    void testSecurityMarkingRequestEmptyMarking() {
        setMUCSecurityMarking("", "", "", true);

        CPPUNIT_ASSERT_EQUAL(std::string(""), window_->markingValue_);
        CPPUNIT_ASSERT_EQUAL(std::string(""), window_->markingForegroundColorValue_);
        CPPUNIT_ASSERT_EQUAL(std::string(""), window_->markingBackgroundColorValue_);
    }

    void testSecurityMarkingRequestWithMarkingNoFormType() {
        setMUCSecurityMarking("Test|Highest Possible Security", "Black", "Red", false);

        CPPUNIT_ASSERT_EQUAL(std::string(""), window_->markingValue_);
        CPPUNIT_ASSERT_EQUAL(std::string(""), window_->markingForegroundColorValue_);
        CPPUNIT_ASSERT_EQUAL(std::string(""), window_->markingBackgroundColorValue_);
    }

    void testSecurityMarkingRequestNoMarking() {
        auto form = std::make_shared<Form>(Form::Type::ResultType);

        auto discoInfoRef = std::make_shared<DiscoInfo>();
        discoInfoRef->addExtension(form);

        auto infoResponse = IQ::createResult(self_, mucJID_, "test-id", discoInfoRef);
        iqChannel_->onIQReceived(infoResponse);
        CPPUNIT_ASSERT_EQUAL(std::string(""), window_->markingValue_);
        CPPUNIT_ASSERT_EQUAL(std::string(""), window_->markingForegroundColorValue_);
        CPPUNIT_ASSERT_EQUAL(std::string(""), window_->markingBackgroundColorValue_);
    }

    void testSecurityMarkingRequestNoForm() {
        auto discoInfoRef = std::make_shared<DiscoInfo>();

        auto infoResponse = IQ::createResult( self_, mucJID_, "test-id", discoInfoRef);
        iqChannel_->onIQReceived(infoResponse);
        CPPUNIT_ASSERT_EQUAL(std::string(""), window_->markingValue_);
        CPPUNIT_ASSERT_EQUAL(std::string(""), window_->markingForegroundColorValue_);
        CPPUNIT_ASSERT_EQUAL(std::string(""), window_->markingBackgroundColorValue_);
    }

    void testSecurityMarkingRequestError() {
        auto errorPayload = std::make_shared<ErrorPayload>(ErrorPayload::Condition::NotAuthorized, ErrorPayload::Type::Auth);

        auto infoResponse = IQ::createResult( self_, mucJID_, "test-id", errorPayload);
        iqChannel_->onIQReceived(infoResponse);
        CPPUNIT_ASSERT_EQUAL(std::string(""), window_->markingValue_);
        CPPUNIT_ASSERT_EQUAL(std::string(""), window_->markingForegroundColorValue_);
        CPPUNIT_ASSERT_EQUAL(std::string(""), window_->markingBackgroundColorValue_);
    }

    void testSecurityMarkingAddedToMessage_Elision_NoRoomMarkingA() {
        settings_->storeSetting(SettingConstants::MUC_MARKING_ELISION, true);
        setMUCSecurityMarking("", "Black", "Red");

        auto messageLabel = std::make_shared<SecurityLabel>();
        messageLabel->setDisplayMarking("Test|Highest Possible Security");

        auto sentMessage = createTestMessageWithoutSecurityLabel();
        sentMessage->addPayload(messageLabel);

        auto sentMessageEvent = std::make_shared<MessageEvent>(sentMessage);
        controller_->handleIncomingMessage(sentMessageEvent);

        auto storedSecurityLabel = window_->lastAddedMessageSecurityLabel_;

        CPPUNIT_ASSERT_EQUAL(false, storedSecurityLabel == nullptr);
        // This is the potentially altered security label that is displayed on the screen
        CPPUNIT_ASSERT_EQUAL(std::string("Test|Highest Possible Security"), storedSecurityLabel->getDisplayMarking());
    }

    void testSecurityMarkingAddedToMessage_Elision_NoRoomMarkingB() {
        settings_->storeSetting(SettingConstants::MUC_MARKING_ELISION, true);
        setMUCSecurityMarking("", "Black", "Red");

        auto messageLabel = std::make_shared<SecurityLabel>();
        messageLabel->setDisplayMarking("");

        auto sentMessage = createTestMessageWithoutSecurityLabel();
        sentMessage->addPayload(messageLabel);

        auto sentMessageEvent = std::make_shared<MessageEvent>(sentMessage);
        controller_->handleIncomingMessage(sentMessageEvent);

        auto storedSecurityLabel = window_->lastAddedMessageSecurityLabel_;

        CPPUNIT_ASSERT_EQUAL(false, storedSecurityLabel == nullptr);
        // This is the potentially altered security label that is displayed on the screen
        CPPUNIT_ASSERT_EQUAL(std::string(""), storedSecurityLabel->getDisplayMarking());
    }

    void testSecurityMarkingAddedToMessage_Elision_WithRoomMarkingA() {
        settings_->storeSetting(SettingConstants::MUC_MARKING_ELISION, true);
        setMUCSecurityMarking("Test|Highest Possible Security", "Black", "Red");

        auto messageLabel = std::make_shared<SecurityLabel>();
        messageLabel->setDisplayMarking("Test|Highest Possible Security");

        auto sentMessage = createTestMessageWithoutSecurityLabel();
        sentMessage->addPayload(messageLabel);

        // Test the first message matching MUC marking. This message SHOULD have a marking

        auto sentMessageEvent1 = std::make_shared<MessageEvent>(sentMessage);
        controller_->handleIncomingMessage(sentMessageEvent1);

        auto storedSecurityLabel1 = window_->lastAddedMessageSecurityLabel_;

        CPPUNIT_ASSERT_EQUAL(false, storedSecurityLabel1 == nullptr);
        // This is the potentially altered security label that is displayed on the screen
        CPPUNIT_ASSERT_EQUAL(std::string("Test|Highest Possible Security"), storedSecurityLabel1->getDisplayMarking());

        // Test a consecutive message matching MUC marking. This message SHOULD NOT have a marking

        auto sentMessageEvent2 = std::make_shared<MessageEvent>(sentMessage);
        controller_->handleIncomingMessage(sentMessageEvent2);

        auto storedSecurityLabel2 = window_->lastAddedMessageSecurityLabel_;

        CPPUNIT_ASSERT_EQUAL(false, storedSecurityLabel2 == nullptr);
        // This is the potentially altered security label that is displayed on the screen
        CPPUNIT_ASSERT_EQUAL(std::string(""), storedSecurityLabel2->getDisplayMarking());
    }

    void testSecurityMarkingAddedToMessage_Elision_WithRoomMarkingB() {
        settings_->storeSetting(SettingConstants::MUC_MARKING_ELISION, true);
        setMUCSecurityMarking("Test|Lower Security Marking", "Black", "Red");

        auto messageLabel = std::make_shared<SecurityLabel>();
        messageLabel->setDisplayMarking("Test|Highest Possible Security");

        auto sentMessage = createTestMessageWithoutSecurityLabel();
        sentMessage->addPayload(messageLabel);

        auto sentMessageEvent = std::make_shared<MessageEvent>(sentMessage);
        controller_->handleIncomingMessage(sentMessageEvent);

        auto storedSecurityLabel = window_->lastAddedMessageSecurityLabel_;

        CPPUNIT_ASSERT_EQUAL(false, storedSecurityLabel == nullptr);
        // This is the potentially altered security label that is displayed on the screen
        CPPUNIT_ASSERT_EQUAL(std::string("Test|Highest Possible Security"), storedSecurityLabel->getDisplayMarking());
    }

    void testSecurityMarkingAddedToMessage_Elision_WithRoomMarkingC() {
        settings_->storeSetting(SettingConstants::MUC_MARKING_ELISION, true);
        setMUCSecurityMarking("Test|Highest Possible Security", "Black", "Red");

        auto messageLabel = std::make_shared<SecurityLabel>();
        messageLabel->setDisplayMarking("");

        auto sentMessage = createTestMessageWithoutSecurityLabel();
        sentMessage->addPayload(messageLabel);

        auto sentMessageEvent = std::make_shared<MessageEvent>(sentMessage);
        controller_->handleIncomingMessage(sentMessageEvent);

        auto storedSecurityLabel = window_->lastAddedMessageSecurityLabel_;

        CPPUNIT_ASSERT_EQUAL(false, storedSecurityLabel == nullptr);
        // This is the potentially altered security label that is displayed on the screen
        CPPUNIT_ASSERT_EQUAL(std::string("Unmarked"), storedSecurityLabel->getDisplayMarking());
    }

    void testSecurityMarkingAddedToMessage_NoElision_NoRoomMarkingA() {
        settings_->storeSetting(SettingConstants::MUC_MARKING_ELISION, false);
        setMUCSecurityMarking("", "Black", "Red");

        auto messageLabel = std::make_shared<SecurityLabel>();
        messageLabel->setDisplayMarking("Test|Highest Possible Security");

        auto sentMessage = createTestMessageWithoutSecurityLabel();
        sentMessage->addPayload(messageLabel);

        auto sentMessageEvent = std::make_shared<MessageEvent>(sentMessage);
        controller_->handleIncomingMessage(sentMessageEvent);

        auto storedSecurityLabel = window_->lastAddedMessageSecurityLabel_;

        CPPUNIT_ASSERT_EQUAL(false, storedSecurityLabel == nullptr);
        // This is the potentially altered security label that is displayed on the screen
        CPPUNIT_ASSERT_EQUAL(std::string("Test|Highest Possible Security"), storedSecurityLabel->getDisplayMarking());
    }

    void testSecurityMarkingAddedToMessage_NoElision_NoRoomMarkingB() {
        settings_->storeSetting(SettingConstants::MUC_MARKING_ELISION, false);
        setMUCSecurityMarking("", "Black", "Red");

        auto messageLabel = std::make_shared<SecurityLabel>();
        messageLabel->setDisplayMarking("");

        auto sentMessage = createTestMessageWithoutSecurityLabel();
        sentMessage->addPayload(messageLabel);

        auto sentMessageEvent = std::make_shared<MessageEvent>(sentMessage);
        controller_->handleIncomingMessage(sentMessageEvent);

        auto storedSecurityLabel = window_->lastAddedMessageSecurityLabel_;

        CPPUNIT_ASSERT_EQUAL(false, storedSecurityLabel == nullptr);
        // This is the potentially altered security label that is displayed on the screen
        CPPUNIT_ASSERT_EQUAL(std::string(""), storedSecurityLabel->getDisplayMarking());
    }

    void testSecurityMarkingAddedToMessage_NoElision_WithRoomMarkingA() {
        settings_->storeSetting(SettingConstants::MUC_MARKING_ELISION, false);
        setMUCSecurityMarking("Test|Highest Possible Security", "Black", "Red");

        auto messageLabel = std::make_shared<SecurityLabel>();
        messageLabel->setDisplayMarking("Test|Highest Possible Security");

        auto sentMessage = createTestMessageWithoutSecurityLabel();
        sentMessage->addPayload(messageLabel);

        // Test the first message matching MUC marking. This message SHOULD have a marking

        auto sentMessageEvent1 = std::make_shared<MessageEvent>(sentMessage);
        controller_->handleIncomingMessage(sentMessageEvent1);

        auto storedSecurityLabel1 = window_->lastAddedMessageSecurityLabel_;

        CPPUNIT_ASSERT_EQUAL(false, storedSecurityLabel1 == nullptr);
        // This is the potentially altered security label that is displayed on the screen
        CPPUNIT_ASSERT_EQUAL(std::string("Test|Highest Possible Security"), storedSecurityLabel1->getDisplayMarking());

        // Test a consecutive message matching MUC marking. This message SHOULD ALSO have a marking

        auto sentMessageEvent2 = std::make_shared<MessageEvent>(sentMessage);
        controller_->handleIncomingMessage(sentMessageEvent2);

        auto storedSecurityLabel2 = window_->lastAddedMessageSecurityLabel_;

        CPPUNIT_ASSERT_EQUAL(false, storedSecurityLabel2 == nullptr);
        // This is the potentially altered security label that is displayed on the screen
        CPPUNIT_ASSERT_EQUAL(std::string("Test|Highest Possible Security"), storedSecurityLabel2->getDisplayMarking());
    }

    void testSecurityMarkingAddedToMessage_NoElision_WithRoomMarkingB() {
        settings_->storeSetting(SettingConstants::MUC_MARKING_ELISION, false);
        setMUCSecurityMarking("", "Black", "Red");

        auto messageLabel = std::make_shared<SecurityLabel>();
        messageLabel->setDisplayMarking("");

        auto sentMessage = createTestMessageWithoutSecurityLabel();
        sentMessage->addPayload(messageLabel);

        auto sentMessageEvent = std::make_shared<MessageEvent>(sentMessage);
        controller_->handleIncomingMessage(sentMessageEvent);

        auto storedSecurityLabel = window_->lastAddedMessageSecurityLabel_;

        CPPUNIT_ASSERT_EQUAL(false, storedSecurityLabel == nullptr);
        // This is the potentially altered security label that is displayed on the screen
        CPPUNIT_ASSERT_EQUAL(std::string(""), storedSecurityLabel->getDisplayMarking());
    }

private:
    JID self_;
    JID mucJID_;
    MockMUC::ref muc_;
    std::string nick_;
    DummyStanzaChannel* stanzaChannel_;
    DummyIQChannel* iqChannel_;
    IQRouter* iqRouter_;
    EventController* eventController_;
    ChatWindowFactory* chatWindowFactory_;
    UserSearchWindowFactory* userSearchWindowFactory_;
    MUCController* controller_;
    NickResolver* nickResolver_;
    PresenceOracle* presenceOracle_;
    AvatarManager* avatarManager_;
    StanzaChannelPresenceSender* presenceSender_;
    DirectedPresenceSender* directedPresenceSender_;
    MockRepository* mocks_;
    UIEventStream* uiEventStream_;
    MockChatWindow* window_;
    MUCRegistry* mucRegistry_;
    DummyEntityCapsProvider* entityCapsProvider_;
    DummySettingsProvider* settings_;
    HighlightManager* highlightManager_;
    std::shared_ptr<ChatMessageParser> chatMessageParser_;
    std::shared_ptr<CryptoProvider> crypto_;
    VCardManager* vcardManager_;
    VCardMemoryStorage* vcardStorage_;
    ClientBlockListManager* clientBlockListManager_;
    MUCBookmarkManager* mucBookmarkManager_;
    XMPPRoster* xmppRoster_;
};

CPPUNIT_TEST_SUITE_REGISTRATION(MUCControllerTest);