Home | News | Projects | Releases
Bugs | RFE | Repositories | Help
Added unit tests for converting text for use in HTML documents.
[xestiaab/.git] / source / tests / xestiaab_common.h
index f373df0..3f8b803 100644 (file)
@@ -296,16 +296,47 @@ TEST(CommonFunctions, CaptureString){
 
 TEST(CommonFunctions, ResetUnusedString){
 
+       // Tests for resetting an unused string.
+
+       wxString ResetUnusedStringData = "Random string with a \\\\\\\\serverpath\\\\location";
+       ResetUnusedString(&ResetUnusedStringData);
+       ASSERT_EQ("Random string with a \\\\serverpath\\location", ResetUnusedStringData.ToStdString());        
+
+       ResetUnusedStringData = "Some text \\nwith new \\nlines!";
+       ResetUnusedString(&ResetUnusedStringData);
+       ASSERT_EQ("Some text \nwith new \nlines!", ResetUnusedStringData.ToStdString());
+
+       ResetUnusedStringData = "Some text \\nwith new \\nlines!";
+       ResetUnusedString(&ResetUnusedStringData);
+       ASSERT_EQ("Some text \nwith new \nlines!", ResetUnusedStringData.ToStdString());
+       
+       ResetUnusedStringData = "And now the list of characters: \\\\ \\n \\; \\,";
+       ResetUnusedString(&ResetUnusedStringData);
+       ASSERT_EQ("And now the list of characters: \\ \n ; ,", ResetUnusedStringData.ToStdString());
+
 }
 
 TEST(CommonFunctions, ConvertToHTML){
 
-}
+       // Tests for converting data for inserting into a HTML
+       // formatted document.
+
+       wxString ConvertToHTMLData = "The test line where < is probably better than >!";
+       ConvertToHTML(&ConvertToHTMLData);
+       ASSERT_EQ("The test line where &lt; is probably better than &gt;!", ConvertToHTMLData.ToStdString());
 
-TEST(CommonFunctions, DeleteMapDataProcess){
+       ConvertToHTMLData = "More testing &<>\n";
+       ConvertToHTML(&ConvertToHTMLData);
+       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.";
+       ConvertToHTML(&ConvertToHTMLData);
+       ASSERT_EQ("This is the first line.<br>This is the second line.<br>This is the third line.", ConvertToHTMLData.ToStdString());
 
 }
 
 TEST(CommonFunctions, MapDataExists){
 
+       // Tests for checking that map data exists.
+
 }
\ 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