Home | News | Projects | Releases
Bugs | RFE | Repositories | Help
Added some unit tests for EscapeString function (CommonFunctions/EscapeString)
authorSteve Brokenshire <sbrokenshire@xestia.co.uk>
Tue, 22 Mar 2016 08:28:58 +0000 (08:28 +0000)
committerSteve Brokenshire <sbrokenshire@xestia.co.uk>
Tue, 22 Mar 2016 08:28:58 +0000 (08:28 +0000)
source/tests/xestiaab_common.h

index 654cdc8..203278f 100644 (file)
@@ -247,6 +247,29 @@ TEST(CommonFunctions, CheckBlacklist){
 
 TEST(CommonFunctions, EscapeString){
 
+       // Test the escape string function.
+
+       EscapeStringData = "\"Example\"";
+
+       ASSERT_EQ("\\\"Example\\\"", EscapeStringData(&EscapeStringData, false));
+
+       EscapeStringData = "Here we go, an \"example\" of escaping string.";
+
+       ASSERT_EQ("Here we go\\, an \\\"example\\\" of escaping string.", EscapeStringData(&EscapeStringData, false));
+
+       EscapeStringData = "Lets put some \nnew \nlines \nin \nhere.";
+
+       ASSERT_EQ("Lets put some \\nnew \\nlines \\nin \\nhere.", EscapeStringData(&EscapeStringData, false));
+
+       EscapeStringData = "Lets put some \r\nnew \r\nlines \r\nin \r\nhere.";
+
+       ASSERT_EQ("Lets put some \\nnew \\nlines \\nin \\nhere.", EscapeStringData(&EscapeStringData, false));
+
+       EscapeStringData = "A:\path\example\lets\have\some\fun";
+
+       ASSERT_EQ("A:\\path\\example\\lets\\have\\some\\fun", EscapeStringData(&EscapeStringData, false));
+
+
 }
 
 TEST(CommonFunctions, GetEscapeString){
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