X-Git-Url: http://Server1/repobrowser/?a=blobdiff_plain;f=source%2Ftests%2Fxestiacalendar_icaleventload.h;h=68c7339df88316ed1ecdc3f5b3c5032dfd84a770;hb=06e48ec6d91cfde818da8377a7f29d523ef485e3;hp=674ebcf7bf0e9feff5e24fed2a69ac32399b3cf2;hpb=8e227b6ca18e4b45ee0faa0530b809822d7d4281;p=xestiacalendar%2F.git diff --git a/source/tests/xestiacalendar_icaleventload.h b/source/tests/xestiacalendar_icaleventload.h index 674ebcf..68c7339 100644 --- a/source/tests/xestiacalendar_icaleventload.h +++ b/source/tests/xestiacalendar_icaleventload.h @@ -62,4 +62,75 @@ TEST(iCalendarEvent, ObjectDataTests){ ASSERT_EQ("b3a16392-ad86-4061-be53-c215af2306e0", TestEvent.UniqueID); ASSERT_EQ("UNIQUEPARAM=CERTAINLY;OKAY=MAYBENOT", TestEvent.UniqueIDTokens); + // Tests for DTSTART. + + ASSERT_EQ("20160122T183000Z", TestEvent.DateTimeStartData); + ASSERT_EQ("DATE-TIME", TestEvent.DateTimeStartDataValue); + ASSERT_EQ("Europe/Truro", TestEvent.DateTimeStartDataTimeZoneID); + ASSERT_EQ("PARAMONE=YES;PARAMTWO=NO", TestEvent.DateTimeStartDataTokens); + + // Tests for CLASS. + + ASSERT_EQ("PUBLIC", TestEvent.ClassData); + ASSERT_EQ("CHOCOLATE=BAR", TestEvent.ClassDataTokens); + + // Tests for CREATED. + + 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); + + // Tests for LAST-MODIFIED. + + ASSERT_EQ("20160124T093000Z", TestEvent.LastModifiedData); + ASSERT_EQ("FUTURE=ODD", TestEvent.LastModifiedTokens); + + // Tests 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); + + // Tests for ORGANIZER. + + ASSERT_EQ("mailto:organiser@example.com", TestEvent.OrganiserData); + ASSERT_EQ("ExampleOrganiser", TestEvent.OrganiserDataCommonName); + ASSERT_EQ("null:nodata", TestEvent.OrganiserDataDirectoryEntry); + ASSERT_EQ("mailto:organiser.noreply@example.com", TestEvent.OrganiserDataSentByParam); + ASSERT_EQ("kw", TestEvent.OrganiserDataLanguage); + ASSERT_EQ("HAPPY=DAYS", TestEvent.OrganiserDataTokens); + } \ No newline at end of file