Home | News | Projects | Releases
Bugs | RFE | Repositories | Help
Unit Tests: Clean up of Common, ContactLoad and ContactSave tests
[xestiaab/.git] / source / tests / xestiaab_common.h
index 4939178..ca9b727 100644 (file)
@@ -1,6 +1,6 @@
  // xestiaab_common.h - Xestia Address Book Common Functions Unit Tests.
 //
-// (c) 2012-2015 Xestia Software Development.
+// (c) 2012-2017 Xestia Software Development.
 //
 // This file is part of Xestia Address Book.
 //
@@ -27,7 +27,8 @@ static wxString AccountInput1 = "Example1";
 static wxString AccountInput2 = "Example2";
 static wxString AccountInput3 = "Example3";
 
-TEST(CommonFunctions, GivenAPredefinedPathWhenGetUserDirIsCalledThenReceivedPathMatches){
+TEST(CommonFunctions, GivenAPredefinedPathWhenGetUserDirIsCalledThenReceivedPathMatches)
+{
        
        // Run the unit tests depending on the operating system being used.
        
@@ -57,7 +58,8 @@ TEST(CommonFunctions, GivenAPredefinedPathWhenGetUserDirIsCalledThenReceivedPath
        
 }
 
-TEST(CommonFunctions, GivenAPredefinedPathWhenGetUserPrefDirIsCalledThenReceivedPathMatches){
+TEST(CommonFunctions, GivenAPredefinedPathWhenGetUserPrefDirIsCalledThenReceivedPathMatches)
+{
        
        // Run the unit tests depending on the operating system being used.
        
@@ -87,7 +89,8 @@ TEST(CommonFunctions, GivenAPredefinedPathWhenGetUserPrefDirIsCalledThenReceived
 
 }
 
-TEST(CommonFunctions, GivenThreePredefinedPathsWhenGetAccountDirIsCalledForEachThenReceivedPathsMatches){
+TEST(CommonFunctions, GivenThreePredefinedPathsWhenGetAccountDirIsCalledForEachThenReceivedPathsMatches)
+{
        
        // Run the unit tests depending on the operating system being used.
        
@@ -136,7 +139,8 @@ TEST(CommonFunctions, GivenThreePredefinedPathsWhenGetAccountDirIsCalledForEachT
        
 }
 
-TEST(CommonFunctions, GivenThreePredefinedFilePathsWhenGetAccountDirIsCalledWithAppendServerCertificateSetToTrueForEachThenReceivedPathsMatches){
+TEST(CommonFunctions, GivenThreePredefinedFilePathsWhenGetAccountDirIsCalledWithAppendServerCertificateSetToTrueForEachThenReceivedPathsMatches)
+{
        
        // Run the unit tests depending on the operating system being used.
        
@@ -185,7 +189,8 @@ TEST(CommonFunctions, GivenThreePredefinedFilePathsWhenGetAccountDirIsCalledWith
        
 }
 
-TEST(CommonFunctions, GivenPredefinedFilePathWhenGetAccountsFileIsCalledThenReceivedFilePathMatches){
+TEST(CommonFunctions, GivenPredefinedFilePathWhenGetAccountsFileIsCalledThenReceivedFilePathMatches)
+{
        
        // Run the unit tests depending on the operating system being used.
        
@@ -217,7 +222,8 @@ TEST(CommonFunctions, GivenPredefinedFilePathWhenGetAccountsFileIsCalledThenRece
        
 }
 
-TEST(CommonFunctions, GivenPredefinedFilePathWhenGetSettingsFileIsCalledThenReceivedFilePathMatches){
+TEST(CommonFunctions, GivenPredefinedFilePathWhenGetSettingsFileIsCalledThenReceivedFilePathMatches)
+{
        
        // Run the unit tests depending on the operating system being used.
        
@@ -249,7 +255,8 @@ TEST(CommonFunctions, GivenPredefinedFilePathWhenGetSettingsFileIsCalledThenRece
        
 }
 
-TEST(CommonFunctions, GivenFivePredefinedFilenamePathsWhenCreateFilenamePathIsCalledThenReceivedPathMatches){
+TEST(CommonFunctions, GivenFivePredefinedFilenamePathsWhenCreateFilenamePathIsCalledThenReceivedPathMatches)
+{
        
        // Run the unit tests depending on the operating system being used.
        
@@ -287,7 +294,8 @@ TEST(CommonFunctions, GivenFivePredefinedFilenamePathsWhenCreateFilenamePathIsCa
        
 }
 
-TEST(CommonFunctions, GivenTwoFilesWhenGetMIMEIsCalledThenBothFilesMIMETypesAreGiven){
+TEST(CommonFunctions, GivenTwoFilesWhenGetMIMEIsCalledThenBothFilesMIMETypesAreGiven)
+{
        
        // Get the MIME type based on the files given.
        
@@ -308,7 +316,8 @@ TEST(CommonFunctions, GivenTwoFilesWhenGetMIMEIsCalledThenBothFilesMIMETypesAreG
        
 }
 
-TEST(CommonFunctions, GivenTwoDomainNamesWhenCheckBlacklistIsCalledThenReturnsCorrectStatus){
+TEST(CommonFunctions, GivenTwoDomainNamesWhenCheckBlacklistIsCalledThenReturnsCorrectStatus)
+{
        
        // Test that the blacklist is actually working.
 
@@ -335,7 +344,8 @@ TEST(CommonFunctions, GivenTwoDomainNamesWhenCheckBlacklistIsCalledThenReturnsCo
        
 }
 
-TEST(CommonFunctions, GivenExampleStringWhenEscapeStringIsCalledThenReturnedStringIsExample){
+TEST(CommonFunctions, GivenExampleStringWhenEscapeStringIsCalledThenReturnedStringIsExample)
+{
 
        // Test the escape string function.
 
@@ -353,13 +363,14 @@ TEST(CommonFunctions, GivenExampleStringWhenEscapeStringIsCalledThenReturnedStri
        
 }
 
-TEST(CommonFunctions, GivenStringWithCommaWhenEscapeStringIsCalledThenCommaIsEscaped){
+TEST(CommonFunctions, GivenStringWithCommaWhenEscapeStringIsCalledThenCommaIsEscaped)
+{
 
        // Test the escape string function.
 
        // Given
 
-       EscapeStringData = "Here we go, an \"example\" of escaping string.";
+       wxString EscapeStringData = "Here we go, an \"example\" of escaping string.";
        
        // When
        
@@ -371,13 +382,14 @@ TEST(CommonFunctions, GivenStringWithCommaWhenEscapeStringIsCalledThenCommaIsEsc
 
 }
 
-TEST(CommonFunctions, GivenStringWithNewlineCharactersWhenEscapeStringIsCalledThenNewlinesAreEscaped){
+TEST(CommonFunctions, GivenStringWithNewlineCharactersWhenEscapeStringIsCalledThenNewlinesAreEscaped)
+{
 
        // Test the escape string function.
 
        // Given
 
-       EscapeStringData = "Lets put some \nnew \nlines \nin \nhere.";
+       wxString EscapeStringData = "Lets put some \nnew \nlines \nin \nhere.";
        
        // When
        
@@ -389,13 +401,14 @@ TEST(CommonFunctions, GivenStringWithNewlineCharactersWhenEscapeStringIsCalledTh
 
 }
 
-TEST(CommonFunctions, GivenAStringWithReturnCharactersWhenEscapeStringIsCalledThenReturnsAreRemoved){
+TEST(CommonFunctions, GivenAStringWithReturnCharactersWhenEscapeStringIsCalledThenReturnsAreRemoved)
+{
 
        // Test the escape string function.
 
        // Given
 
-       EscapeStringData = "Lets put some \r\nnew \r\nlines \r\nin \r\nhere.";
+       wxString EscapeStringData = "Lets put some \r\nnew \r\nlines \r\nin \r\nhere.";
        
        // When
        
@@ -407,13 +420,14 @@ TEST(CommonFunctions, GivenAStringWithReturnCharactersWhenEscapeStringIsCalledTh
 
 }
 
-TEST(CommonFunctions, GivenStringWithBackslashesWhenEscapeStringIsCalledThenBackslashesAreEscaped){
+TEST(CommonFunctions, GivenStringWithBackslashesWhenEscapeStringIsCalledThenBackslashesAreEscaped)
+{
 
        // Test the escape string function.
 
        // Given
 
-       EscapeStringData = "A:\\path\\example\\lets\\have\\some\\fun";
+       wxString EscapeStringData = "A:\\path\\example\\lets\\have\\some\\fun";
        
        // When
        
@@ -425,7 +439,8 @@ TEST(CommonFunctions, GivenStringWithBackslashesWhenEscapeStringIsCalledThenBack
 
 }
 
-TEST(CommonFunctions, GivenExampleStringWhenCaptureStringIsCalledThenReturnedStringIsExample){
+TEST(CommonFunctions, GivenExampleStringWhenCaptureStringIsCalledThenReturnedStringIsExample)
+{
 
        // Test the capture string function.
        
@@ -443,13 +458,14 @@ TEST(CommonFunctions, GivenExampleStringWhenCaptureStringIsCalledThenReturnedStr
 
 }
 
-TEST(CommonFunctions, GivenStringWithEscapedCommasWhenCaptureStringIsCalledThenCommasAreCaptured){
+TEST(CommonFunctions, GivenStringWithEscapedCommasWhenCaptureStringIsCalledThenCommasAreCaptured)
+{
 
        // Test the capture string function.
        
        // Given
        
-       CaptureStringData = "Here we go\\, an \"example\" of escaping string.";
+       wxString CaptureStringData = "Here we go\\, an \"example\" of escaping string.";
        
        // When
        
@@ -461,13 +477,14 @@ TEST(CommonFunctions, GivenStringWithEscapedCommasWhenCaptureStringIsCalledThenC
 
 }
 
-TEST(CommonFunctions, GivenStringWithEscapedNewlinesWhenCaptureStringIsCalledThenNewlinesAreCaptured){
+TEST(CommonFunctions, GivenStringWithEscapedNewlinesWhenCaptureStringIsCalledThenNewlinesAreCaptured)
+{
 
        // Test the capture string function.
        
        // Given
        
-       CaptureStringData = "Lets put some \\nnew \\nlines \\nin \\nhere.";
+       wxString CaptureStringData = "Lets put some \\nnew \\nlines \\nin \\nhere.";
        
        // When
        
@@ -479,13 +496,14 @@ TEST(CommonFunctions, GivenStringWithEscapedNewlinesWhenCaptureStringIsCalledThe
 
 }
 
-TEST(CommonFunctions, GivenStringWithEscapedBackslashesWhenCaptureStringIsCalledThenBackslashesAreCaptured){
+TEST(CommonFunctions, GivenStringWithEscapedBackslashesWhenCaptureStringIsCalledThenBackslashesAreCaptured)
+{
 
        // Test the capture string function.
        
        // Given
        
-       CaptureStringData = "A:\\\\path\\\\example\\\\lets\\\\have\\\\some\\\\fun";
+       wxString CaptureStringData = "A:\\\\path\\\\example\\\\lets\\\\have\\\\some\\\\fun";
        
        // When
        
@@ -497,7 +515,8 @@ TEST(CommonFunctions, GivenStringWithEscapedBackslashesWhenCaptureStringIsCalled
 
 }
 
-TEST(CommonFunctions, GivenStringWithSeveralBackslashesWhenResetUnusedStringIsCalledThenStringIsReset){
+TEST(CommonFunctions, GivenStringWithSeveralBackslashesWhenResetUnusedStringIsCalledThenStringIsReset)
+{
 
        // Tests for resetting an unused string.
 
@@ -515,13 +534,14 @@ TEST(CommonFunctions, GivenStringWithSeveralBackslashesWhenResetUnusedStringIsCa
 
 }
 
-TEST(CommonFunctions, GivenStringWithNewlinesWhenResetUnusedStringIsCalledThenStringIsFormatted){
+TEST(CommonFunctions, GivenStringWithNewlinesWhenResetUnusedStringIsCalledThenStringIsFormatted)
+{
 
        // Tests for resetting an unused string.
 
        // Given
 
-       ResetUnusedStringData = "Some text \\nwith new \\nlines!";
+       wxString ResetUnusedStringData = "Some text \\nwith new \\nlines!";
        
        // When
        
@@ -533,13 +553,14 @@ TEST(CommonFunctions, GivenStringWithNewlinesWhenResetUnusedStringIsCalledThenSt
 
 }
 
-TEST(CommonFunctions, GivenStringWithSeveralCharactersWhenResetUnusedStringThenStringIsFormatted){
+TEST(CommonFunctions, GivenStringWithSeveralCharactersWhenResetUnusedStringThenStringIsFormatted)
+{
 
        // Tests for resetting an unused string.
 
        // Given
        
-       ResetUnusedStringData = "And now the list of characters: \\\\ \\n \\; \\,";
+       wxString ResetUnusedStringData = "And now the list of characters: \\\\ \\n \\; \\,";
 
        // When
 
@@ -551,72 +572,310 @@ TEST(CommonFunctions, GivenStringWithSeveralCharactersWhenResetUnusedStringThenS
 
 }
 
-TEST(CommonFunctions, ConvertToHTML){
+TEST(CommonFunctions, GivenStringWhenConvertToHTMLIsCalledThenStringisHTMLEscaped)
+{
 
        // Tests for converting data for inserting into a HTML
        // formatted document.
 
+       // Given
+
        wxString ConvertToHTMLData = "The test line where < is probably better than >!";
+       
+       // When
+       
        ConvertToHTML(&ConvertToHTMLData);
+       
+       // Then
+       
        ASSERT_EQ("The test line where &lt; is probably better than &gt;!", ConvertToHTMLData.ToStdString());
 
-       ConvertToHTMLData = "More testing &<>\n";
+}
+
+TEST(CommonFunctions, GivenStringWithNewlineWhenConvertToHTMLIsCalledThenStringIsHTMLEscapedWithFormattedNewline)
+{
+
+       // Tests for converting data for inserting into a HTML
+       // formatted document.
+
+       // Given
+
+       wxString ConvertToHTMLData = "More testing &<>\n";
+       
+       // When
+       
        ConvertToHTML(&ConvertToHTMLData);
+       
+       // Then
+       
        ASSERT_EQ("More testing &amp;&lt;&gt;<br>", ConvertToHTMLData.ToStdString());
 
-       ConvertToHTMLData = "This is the first line.\nThis is the second line.\nThis is the third line.";
+}
+
+TEST(CommonFunctions, GivenStringWithSeveralLinesWhenConvertToHTMLIsCalledThenStringIsHTMLEscapedWithFormattedNewlines)
+{
+
+       // Tests for converting data for inserting into a HTML
+       // formatted document.
+
+       // Given
+               
+       wxString ConvertToHTMLData = "This is the first line.\nThis is the second line.\nThis is the third line.";
+       
+       // When
+       
        ConvertToHTML(&ConvertToHTMLData);
+       
+       // Then
+       
        ASSERT_EQ("This is the first line.<br>This is the second line.<br>This is the third line.", ConvertToHTMLData.ToStdString());
 
 }
 
-TEST(CommonFunctions, MapDataExists){
+static std::map<int,int> mapExample = 
+{
+       { 0, 1 }, { 1, 1 }, { 2, 1 }, { 5, 1 }, { 500, 1 }, { 2415, 1 }
+};
+static int itemIndex = 0;
+
+bool mapExistsStatus = false;
+
+TEST(CommonFunctions, GivenMapExistsStatusIsFalseAndItemIndexIs0WhenMapDataExistsIsCalledThenConfirmItemIndex0DoesExist)
+{
+
+       // Tests for checking that map data exists.
+
+       // Given
+
+       mapExistsStatus = false;
+       itemIndex = 0;
+       
+       // When
+
+       mapExistsStatus = MapDataExists(&itemIndex, &mapExample);
+
+       // Then
+
+       ASSERT_EQ(true, mapExistsStatus);
+
+}
+
+TEST(CommonFunctions, GivenMapExistsStatusIsFalseAndItemIndexIs1WhenMapDataExistsIsCalledThenConfirmItemIndex1DoesExist)
+{
+
+       // Tests for checking that map data exists.
+
+       // Given
+
+       mapExistsStatus = false;
+       itemIndex = 1;
+       
+       // When
+       
+       mapExistsStatus = MapDataExists(&itemIndex, &mapExample);
+       
+       // Then
+       
+       ASSERT_EQ(true, mapExistsStatus);
+
+}
+
+TEST(CommonFunctions, GivenMapExistsStatusIsFalseAndItemIndexIs2WhenMapDataExistsIsCalledThenConfirmItemIndex2DoesExist)
+{
+
+       // Tests for checking that map data exists.
+
+       // Given
+
+       mapExistsStatus = false;
+       itemIndex = 2;
+       
+       // When
+       
+       mapExistsStatus = MapDataExists(&itemIndex, &mapExample);
+       
+       // Then
+       
+       ASSERT_EQ(true, mapExistsStatus);
+       
+}
+
+TEST(CommonFunctions, GivenMapExistsStatusIsTrueAndItemIndexIs3WhenMapDataExistsIsCalledThenConfirmItemIndex3DoesntExist)
+{
+
+       // Tests for checking that map data exists.
+
+       // Given
+
+       mapExistsStatus = true;
+       itemIndex = 3;
+       
+       // When
+       
+       mapExistsStatus = MapDataExists(&itemIndex, &mapExample);
+       
+       // Then
+       
+       ASSERT_EQ(false, mapExistsStatus);
+       
+}
+
+TEST(CommonFunctions, GivenMapExistsStatusIsFalseAndItemIndexIs5WhenMapDataExistsIsCalledThenConfirmItemIndex5DoesExist)
+{
+
+       // Tests for checking that map data exists.
+
+       // Given
+
+       mapExistsStatus = false;
+       itemIndex = 5;
+       
+       // When
+       
+       mapExistsStatus = MapDataExists(&itemIndex, &mapExample);
+       
+       // Then
+       
+       ASSERT_EQ(true, mapExistsStatus);
+
+}
+
+TEST(CommonFunctions, GivenMapExistsStatusIsTrueAndItemIndexIs6WhenMapDataExistsIsCalledThenConfirmItemIndex6DoesntExist)
+{
 
        // Tests for checking that map data exists.
 
-       std::map<int,int> MapExample;
-       int ItemIndex = 0;
+       // Given
 
-       MapExample.insert(std::make_pair(0,1));
-       MapExample.insert(std::make_pair(1,1));
-       MapExample.insert(std::make_pair(2,1));
-       MapExample.insert(std::make_pair(5,1));
-       MapExample.insert(std::make_pair(500,1));
-       MapExample.insert(std::make_pair(2415,1));
+       mapExistsStatus = true;
+       itemIndex = 6;
+       
+       // When
 
-       ASSERT_EQ(true, MapDataExists(&ItemIndex, &MapExample));
+       mapExistsStatus = MapDataExists(&itemIndex, &mapExample);
+       
+       // Then
+       
+       ASSERT_EQ(false, mapExistsStatus);
 
-       ItemIndex = 1;
-       ASSERT_EQ(true, MapDataExists(&ItemIndex, &MapExample));
+}
 
-       ItemIndex = 2;
-       ASSERT_EQ(true, MapDataExists(&ItemIndex, &MapExample));
+TEST(CommonFunctions, GivenMapExistsStatusIsFalseAndItemIndexIs499WhenMapDataExistsIsCalledThenConfirmItemIndex499DoesntExist)
+{
 
-       ItemIndex = 3;
-       ASSERT_EQ(false, MapDataExists(&ItemIndex, &MapExample));
+       // Tests for checking that map data exists.
 
-       ItemIndex = 5;
-       ASSERT_EQ(true, MapDataExists(&ItemIndex, &MapExample));
+       // Given
 
-       ItemIndex = 6;
-       ASSERT_EQ(false, MapDataExists(&ItemIndex, &MapExample));
+       mapExistsStatus = false;
+       itemIndex = 499;
+       
+       // When
+       
+       mapExistsStatus = MapDataExists(&itemIndex, &mapExample);
+       
+       // Then
+       
+       ASSERT_EQ(false, mapExistsStatus);
 
-       ItemIndex = 499;
-       ASSERT_EQ(false, MapDataExists(&ItemIndex, &MapExample));
+}
 
-       ItemIndex = 500;
-       ASSERT_EQ(true, MapDataExists(&ItemIndex, &MapExample));
+TEST(CommonFunctions, GivenMapExistsStatusIsFalseAndItemIndexIs500WhenMapDataExistsIsCalledThenConfirmItemIndex500DoesExist)
+{
 
-       ItemIndex = 501;
-       ASSERT_EQ(false, MapDataExists(&ItemIndex, &MapExample));
+       // Tests for checking that map data exists.
 
-       ItemIndex = 2414;
-       ASSERT_EQ(false, MapDataExists(&ItemIndex, &MapExample));
+       // Given
 
-       ItemIndex = 2415;
-       ASSERT_EQ(true, MapDataExists(&ItemIndex, &MapExample));
+       mapExistsStatus = false;
+       itemIndex = 500;
+       
+       // When
+       
+       mapExistsStatus = MapDataExists(&itemIndex, &mapExample);
+       
+       // Then
+       
+       ASSERT_EQ(true, mapExistsStatus);
+       
+}
+
+TEST(CommonFunctions, GivenMapExistsStatusIsTrueAndItemIndexIs501WhenMapDataExistsIsCalledThenConfirmItemIndex501DoesntExist)
+{
 
-       ItemIndex = 2416;
-       ASSERT_EQ(false, MapDataExists(&ItemIndex, &MapExample));
+       // Tests for checking that map data exists.
+
+       // Given
+
+       mapExistsStatus = true;
+       itemIndex = 501;
+       
+       // When
+       
+       mapExistsStatus = MapDataExists(&itemIndex, &mapExample);
+       
+       // Then
+       
+       ASSERT_EQ(false, mapExistsStatus);
+
+}
+
+TEST(CommonFunctions, GivenMapExistsStatusIsTrueAndItemIndexIs2414WhenMapDataExistsIsCalledThenConfirmItemIndex2414DoesntExist)
+{
+
+       // Tests for checking that map data exists.
+
+       // Given
+
+       mapExistsStatus = true;
+       itemIndex = 2414;
+       
+       // When
+       
+       mapExistsStatus = MapDataExists(&itemIndex, &mapExample);
+       
+       // Then
+       
+       ASSERT_EQ(false, mapExistsStatus);
+
+}
+
+TEST(CommonFunctions, GivenMapExistsStatusIsFalseAndItemIndexIs2415WhenMapDataExistsIsCalledThenConfirmItemIndex2415DoesExist)
+{
+
+       // Tests for checking that map data exists.
+
+       // Given
+
+       mapExistsStatus = false;
+       itemIndex = 2415;
+       
+       // When
+       
+       mapExistsStatus = MapDataExists(&itemIndex, &mapExample);
+       
+       // Then
+       
+       ASSERT_EQ(true, mapExistsStatus);
+
+}
+
+TEST(CommonFunctions, GivenMapExistsStatusIsTrueAndItemIndexIs2416WhenMapDataExistsIsCalledThenConfirmItemIndex2416DoesntExist)
+{
+
+       // Tests for checking that map data exists.
+
+       // Given
+
+       mapExistsStatus = true;
+       itemIndex = 2416;
+       
+       // When
+       
+       mapExistsStatus = MapDataExists(&itemIndex, &mapExample);
+       
+       // Then
+       
+       ASSERT_EQ(false, mapExistsStatus);
 
 }
\ 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