diff options
Diffstat (limited to 'Swift/Controllers/Chat/UnitTest/ChatsManagerTest.cpp')
| -rw-r--r-- | Swift/Controllers/Chat/UnitTest/ChatsManagerTest.cpp | 38 | 
1 files changed, 38 insertions, 0 deletions
diff --git a/Swift/Controllers/Chat/UnitTest/ChatsManagerTest.cpp b/Swift/Controllers/Chat/UnitTest/ChatsManagerTest.cpp index 7469d64..954dd2f 100644 --- a/Swift/Controllers/Chat/UnitTest/ChatsManagerTest.cpp +++ b/Swift/Controllers/Chat/UnitTest/ChatsManagerTest.cpp @@ -177,6 +177,9 @@ class ChatsManagerTest : public CppUnit::TestFixture {      CPPUNIT_TEST(testAutoJoinBookmarksAndChattables);      CPPUNIT_TEST(testJoinNoAutojoinBookmark);      CPPUNIT_TEST(testJoinAndBookmarkMUC); +    CPPUNIT_TEST(testReceivingNoBookmarks); +    CPPUNIT_TEST(testReceivingNullBookmarks); +    CPPUNIT_TEST(testReceivingBookmarksError);      CPPUNIT_TEST_SUITE_END(); @@ -1691,6 +1694,41 @@ public:          stanzaChannel_->onIQReceived(response);      } +    void testReceivingNoBookmarks() { +        auto bookmarkRequest = std::dynamic_pointer_cast<IQ>(stanzaChannel_->sentStanzas[0]); +        auto response = IQ::createResult( +            bookmarkRequest->getFrom(), +            bookmarkRequest->getTo(), +            bookmarkRequest->getID(), +            std::make_shared<PrivateStorage>() +        ); +        stanzaChannel_->onIQReceived(response); +    } + +    void testReceivingNullBookmarks() { +        auto bookmarkRequest = std::dynamic_pointer_cast<IQ>(stanzaChannel_->sentStanzas[0]); +        auto response = IQ::createResult( +            bookmarkRequest->getFrom(), +            bookmarkRequest->getTo(), +            bookmarkRequest->getID(), +            nullptr +        ); +        stanzaChannel_->onIQReceived(response); +    } + +    void testReceivingBookmarksError() { +        auto bookmarkRequest = std::dynamic_pointer_cast<IQ>(stanzaChannel_->sentStanzas[0]); +        auto response = IQ::createError( +            bookmarkRequest->getFrom(), +            bookmarkRequest->getTo(), +            bookmarkRequest->getID(), +            ErrorPayload::Condition::ServiceUnavailable, +            ErrorPayload::Type::Cancel, +            nullptr +        ); +        stanzaChannel_->onIQReceived(response); +    } +      void testReceivingBookmarksWithFullJID() {          auto bookmarkRequest = std::dynamic_pointer_cast<IQ>(stanzaChannel_->sentStanzas[0]);          auto response = IQ::createResult(  | 
 Swift