Home | News | Projects | Releases
Bugs | RFE | Repositories | Help
Added unit tests for CONTACT in iCalendarEvent/ObjectDataTests.
[xestiacalendar/.git] / source / tests / xestiacalendar_icaleventload.h
index 5a30678..d2c342c 100644 (file)
@@ -410,4 +410,190 @@ TEST(iCalendarEvent, ObjectDataTests){
        ASSERT_EQ("kw", AttendeeDataLanguage);
        ASSERT_EQ("EXAMPLE=DATA", AttendeeDataTokens);
        
+       // Get the first CATEGORIES.
+       
+       std::string CategoryData;
+       
+       if (TestEvent.CategoriesList.begin() != TestEvent.CategoriesList.end()){
+               
+               CategoryData = TestEvent.CategoriesList[0];
+               
+       }
+       
+       ASSERT_EQ("CATEGORY ONE, CATEGORY TWO", CategoryData);
+       
+       CategoryData.clear();
+
+       std::string CategoryLanguage;
+       
+       // Get the second CATEGORIES.
+       
+       if (TestEvent.CategoriesList.size() > 1){
+               
+               CategoryData = TestEvent.CategoriesList[1];
+               
+       }
+       
+       if (TestEvent.CategoriesList.size() > 1){
+               
+               CategoryLanguage = TestEvent.CategoriesListLanguage[1];
+               
+       }
+               
+       ASSERT_EQ("CATEGORY THREE, CATEGORY FOUR", CategoryData);
+       ASSERT_EQ("en", CategoryLanguage);
+       
+       CategoryData.clear();
+       CategoryLanguage.clear();
+       
+       // Get the third CATEGORIES.
+       
+       std::string CategoryTokens;
+       
+       if (TestEvent.CategoriesList.size() > 2){
+               
+               CategoryData = TestEvent.CategoriesList[2];
+               
+       }
+       
+       if (TestEvent.CategoriesList.size() > 2){
+               
+               CategoryLanguage = TestEvent.CategoriesListLanguage[2];
+               
+       }
+       
+       if (TestEvent.CategoriesList.size() > 2){
+               
+               CategoryTokens = TestEvent.CategoriesListTokens[2];
+               
+       }
+               
+       ASSERT_EQ("CATEGORY FIVE, CATEGORY SIX, CATEGORY SEVEN", CategoryData);
+       ASSERT_EQ("en-GB", CategoryLanguage);
+       ASSERT_EQ("SAMPLE=TOKEN", CategoryTokens);
+       
+       // Get the first COMMENT.
+       
+       std::string CommentData;
+       
+       if (TestEvent.CommentList.begin() != TestEvent.CommentList.end()){
+               
+               CommentData = TestEvent.CommentList[0];
+               
+       }
+       
+       ASSERT_EQ("This is the first comment.", CommentData);
+       
+       // Get the second COMMENT.
+       
+       CommentData.clear();
+       
+       std::string CommentDataAltRep;
+       std::string CommentDataLanguage;
+       
+       if (TestEvent.CommentList.size() > 1){
+               
+               CommentData = TestEvent.CommentList[1];
+               
+       }
+       
+       if (TestEvent.CommentList.size() > 1){
+               
+               CommentDataAltRep = TestEvent.CommentListAltRep[1];
+               
+       }
+       
+       if (TestEvent.CommentList.size() > 1){
+               
+               CommentDataLanguage = TestEvent.CommentListLanguage[1];
+               
+       }
+       
+       ASSERT_EQ("This is the second comment.", CommentData);
+       ASSERT_EQ("null:nodata", CommentDataAltRep);
+       ASSERT_EQ("en", CommentDataLanguage);
+       
+       // Get the third COMMENT.
+       
+       CommentData.clear();
+       
+       std::string CommentDataTokens;
+       
+       if (TestEvent.CommentList.size() > 2){
+               
+               CommentData = TestEvent.CommentList[2];
+               
+       }
+       
+       if (TestEvent.CommentList.size() > 2){
+               
+               CommentDataTokens = TestEvent.CommentListTokens[2];
+               
+       }
+       
+       ASSERT_EQ("This is the third comment.", CommentData);
+       ASSERT_EQ("ZEBRAS=YES", CommentDataTokens);
+       
+       // Get the first CONTACT.
+       
+       std::string ContactData;
+       
+       if (TestEvent.ContactList.begin() != TestEvent.ContactList.end()){
+               
+               ContactData = TestEvent.ContactList[0];
+               
+       }
+       
+       ASSERT_EQ("First Contact", ContactData);
+       
+       // Get the second CONTACT.
+       
+       ContactData.clear();
+       
+       std::string ContactDataAltRep;
+       std::string ContactDataLanguage;
+       
+       if (TestEvent.ContactList.size() > 1){
+               
+               ContactData = TestEvent.ContactList[1];
+               
+       }
+       
+       if (TestEvent.ContactList.size() > 1){
+               
+               ContactDataAltRep = TestEvent.ContactListAltRep[1];
+               
+       }
+       
+       if (TestEvent.ContactList.size() > 1){
+               
+               ContactDataLanguage = TestEvent.ContactListLanguage[1];
+               
+       }
+       
+       ASSERT_EQ("Second Contact", ContactData);
+       ASSERT_EQ("null:nodata", ContactDataAltRep);
+       ASSERT_EQ("en-GB", ContactDataLanguage);
+       
+       // Get the third CONTACT.
+       
+       ContactData.clear();
+       
+       std::string ContactDataTokens;
+       
+       if (TestEvent.ContactList.size() > 2){
+               
+               ContactData = TestEvent.ContactList[2];
+               
+       }
+       
+       if (TestEvent.ContactList.size() > 2){
+               
+               ContactDataTokens = TestEvent.ContactListTokens[2];
+               
+       }
+       
+       ASSERT_EQ("Third Contact", ContactData);
+       ASSERT_EQ("ZEBRAS=NO", ContactDataTokens);
+       
 }
\ No newline at end of file
Xestia Software Development
Yn Maystri
© 2006 - 2019 Xestia Software Development
Software

Xestia Address Book
Xestia Calendar
Development

Xestia Gelforn
Everything else

About
News
Privacy Policy