#include "../common/file.h" #include "../common/text.h" TEST(CommonFunctions, FileTests){ ASSERT_EQ(false, FileExists("iCalendarEvent-Missing.vcf")); ASSERT_EQ(true, FileExists("iCalendarEvent-InvalidPermissions.vcf")); } TEST(CommonFunctions, ProcessTextVectorsTests){ // Setup the objects to be used for processing. vector TextPropertiesExample1; vector TextValueExample1; multimap TextExample1TestResult; TextPropertiesExample1.push_back("ATTENDEE"); TextValueExample1.push_back("Example Attendee 1"); TextPropertiesExample1.push_back("ATTENDEE"); TextValueExample1.push_back("Example Attendee 2"); TextPropertiesExample1.push_back("ATTENDEE"); TextValueExample1.push_back("Example Attendee 3"); TextPropertiesExample1.push_back("CATEGORIES"); TextValueExample1.push_back("CATEGORY 1"); TextPropertiesExample1.push_back("CATEGORIES"); TextValueExample1.push_back("CATEGORY 2"); TextPropertiesExample1.push_back("CATEGORIES"); TextValueExample1.push_back("CATEGORY 3"); TextPropertiesExample1.push_back("COMMENT"); TextValueExample1.push_back("This is the first comment."); TextPropertiesExample1.push_back("COMMENT"); TextValueExample1.push_back("This is the second comment."); TextPropertiesExample1.push_back("COMMENT"); TextValueExample1.push_back("This is the third comment."); TextPropertiesExample1.push_back("CONTACT;TEST=VALUE"); TextValueExample1.push_back("First Contact"); TextPropertiesExample1.push_back("CONTACT;LAZY=NOPE"); TextValueExample1.push_back("Second Contact"); TextPropertiesExample1.push_back("CONTACT;SETUP=NO"); TextValueExample1.push_back("Third Contact"); TextPropertiesExample1.push_back("RESOURCES;ROOM=YES"); TextValueExample1.push_back("First Resource Widget"); TextPropertiesExample1.push_back("RESOURCES;ROOM=NO"); TextValueExample1.push_back("Second Resource Widget"); TextPropertiesExample1.push_back("RESOURCES;ROOM=UNKNOWN"); TextValueExample1.push_back("Third Resource Widget"); TextPropertiesExample1.push_back("RELATED;RELATION=NO"); TextValueExample1.push_back("First Relation"); TextPropertiesExample1.push_back("RELATED;RELATION=YES"); TextValueExample1.push_back("Second Relation"); TextPropertiesExample1.push_back("RELATED;RELATION=MAYBE"); TextValueExample1.push_back("Third Relation"); TextExample1TestResult.insert(make_pair("ATTENDEE", "Example Attendee 1")); TextExample1TestResult.insert(make_pair("ATTENDEE", "Example Attendee 2")); TextExample1TestResult.insert(make_pair("ATTENDEE", "Example Attendee 3")); ASSERT_EQ(TextExample1TestResult, ProcessTextVectors(&TextPropertiesExample1, &TextValueExample1, true, "ATTENDEE")); TextExample1TestResult.clear(); TextExample1TestResult.insert(make_pair("ATTENDEE", "Example Attendee 1")); ASSERT_EQ(TextExample1TestResult, ProcessTextVectors(&TextPropertiesExample1, &TextValueExample1, false, "ATTENDEE")); TextExample1TestResult.clear(); TextExample1TestResult.insert(make_pair("CATEGORIES", "CATEGORY 1")); TextExample1TestResult.insert(make_pair("CATEGORIES", "CATEGORY 2")); TextExample1TestResult.insert(make_pair("CATEGORIES", "CATEGORY 3")); ASSERT_EQ(TextExample1TestResult, ProcessTextVectors(&TextPropertiesExample1, &TextValueExample1, true, "CATEGORIES")); TextExample1TestResult.clear(); TextExample1TestResult.insert(make_pair("CATEGORIES", "CATEGORY 1")); ASSERT_EQ(TextExample1TestResult, ProcessTextVectors(&TextPropertiesExample1, &TextValueExample1, false, "CATEGORIES")); TextExample1TestResult.clear(); TextExample1TestResult.insert(make_pair("COMMENT", "This is the first comment.")); TextExample1TestResult.insert(make_pair("COMMENT", "This is the second comment.")); TextExample1TestResult.insert(make_pair("COMMENT", "This is the third comment.")); ASSERT_EQ(TextExample1TestResult, ProcessTextVectors(&TextPropertiesExample1, &TextValueExample1, true, "COMMENT")); TextExample1TestResult.clear(); TextExample1TestResult.insert(make_pair("COMMENT", "This is the first comment.")); ASSERT_EQ(TextExample1TestResult, ProcessTextVectors(&TextPropertiesExample1, &TextValueExample1, false, "COMMENT")); TextExample1TestResult.clear(); TextExample1TestResult.insert(make_pair("CONTACT;TEST=VALUE", "First Contact")); TextExample1TestResult.insert(make_pair("CONTACT;LAZY=NOPE", "Second Contact")); TextExample1TestResult.insert(make_pair("CONTACT;SETUP=NO", "Third Contact")); ASSERT_EQ(TextExample1TestResult, ProcessTextVectors(&TextPropertiesExample1, &TextValueExample1, true, "CONTACT")); TextExample1TestResult.clear(); TextExample1TestResult.insert(make_pair("CONTACT;TEST=VALUE", "First Contact")); ASSERT_EQ(TextExample1TestResult, ProcessTextVectors(&TextPropertiesExample1, &TextValueExample1, false, "CONTACT")); TextExample1TestResult.clear(); TextExample1TestResult.insert(make_pair("RESOURCES;ROOM=YES", "First Resource Widget")); TextExample1TestResult.insert(make_pair("RESOURCES;ROOM=NO", "Second Resource Widget")); TextExample1TestResult.insert(make_pair("RESOURCES;ROOM=UNKNOWN", "Third Resource Widget")); ASSERT_EQ(TextExample1TestResult, ProcessTextVectors(&TextPropertiesExample1, &TextValueExample1, true, "RESOURCES")); TextExample1TestResult.clear(); TextExample1TestResult.insert(make_pair("RELATED;RELATION=NO", "First Relation")); TextExample1TestResult.insert(make_pair("RELATED;RELATION=YES", "Second Relation")); TextExample1TestResult.insert(make_pair("RELATED;RELATION=MAYBE", "Third Relation")); ASSERT_EQ(TextExample1TestResult, ProcessTextVectors(&TextPropertiesExample1, &TextValueExample1, true, "RELATED")); }