X-Git-Url: http://Server1/repobrowser/?a=blobdiff_plain;f=source%2Ftests%2Fxestiacalendar_icaleventload.h;h=ffa5a916a7852a9235e59672dfffaa686490e4a4;hb=ba857afa2a20dba434ea46c2ce08d79afe19bc6d;hp=87f7bd51474da02fe1aadc47826884214fe1f9ed;hpb=9f7f29785a32214fba84df27c2e88de11cf1de6f;p=xestiacalendar%2F.git diff --git a/source/tests/xestiacalendar_icaleventload.h b/source/tests/xestiacalendar_icaleventload.h index 87f7bd5..ffa5a91 100644 --- a/source/tests/xestiacalendar_icaleventload.h +++ b/source/tests/xestiacalendar_icaleventload.h @@ -78,5 +78,50 @@ TEST(iCalendarEvent, ObjectDataTests){ ASSERT_EQ("20160123T081100Z", TestEvent.DateTimeCreatedData); ASSERT_EQ("CARAMEL=PLEASE", TestEvent.DateTimeCreatedTokens); + + // Tests for DESCRIPTION. + + std::string DescriptionData; + std::string DescriptionAltRep; + std::string DescriptionLanguage; + std::string DescriptionTokens; + + if (TestEvent.DescriptionList.begin() != TestEvent.DescriptionList.end()){ + DescriptionData = TestEvent.DescriptionList[0]; + } + + if (TestEvent.DescriptionListAltRep.begin() != TestEvent.DescriptionListAltRep.end()){ + DescriptionAltRep = TestEvent.DescriptionListAltRep[0]; + } + + if (TestEvent.DescriptionListAltRep.begin() != TestEvent.DescriptionListAltRep.end()){ + DescriptionLanguage = TestEvent.DescriptionListLanguage[0]; + } + + if (TestEvent.DescriptionListTokens.begin() != TestEvent.DescriptionListTokens.end()){ + DescriptionTokens = TestEvent.DescriptionListTokens[0]; + } + + ASSERT_EQ("This is a description of the event.", DescriptionData); + ASSERT_EQ("null:nodata", DescriptionAltRep); + ASSERT_EQ("kw", DescriptionLanguage); + ASSERT_EQ("EXAMPLE=TOKEN;MOREDATA=YES", DescriptionTokens); + // Tests for GEO. + + ASSERT_EQ("5.0;5.0", TestEvent.GeographicData); + ASSERT_EQ("EXAMPLE=MEEP", TestEvent.GeographicTokens); + + // Test for LAST-MODIFIED. + + ASSERT_EQ("20160124T093000Z", TestEvent.LastModifiedData); + ASSERT_EQ("FUTURE=ODD", TestEvent.LastModifiedTokens); + + // Test for LOCATION. + + ASSERT_EQ("The Basement, Truro", TestEvent.LocationData); + ASSERT_EQ("null:nodata", TestEvent.LocationDataAltRep); + ASSERT_EQ("kw", TestEvent.LocationDataLanguage); + ASSERT_EQ("EXACT=NO", TestEvent.LocationDataTokens); + } \ No newline at end of file