Home | News | Projects | Releases
Bugs | RFE | Repositories | Help
Added unit tests for the CreateFilenamePath function.
[xestiaab/.git] / source / tests / xestiaab_common.h
index 248582e..3dafa80 100644 (file)
@@ -18,6 +18,7 @@
 
 #include <gtest/gtest.h>
 #include "../common/dirs.h"
+#include "../common/filename.h"
 
 TEST(CommonFunctions, GetUserDir){
        
@@ -177,4 +178,50 @@ TEST(CommonFunctions, GetAccountsFile){
        
 #endif
        
+}
+
+TEST(CommonFunctions, GetSettingsFile){
+       
+       // Run the unit tests depending on the operating system being used.
+       
+#if defined(__WIN32__)
+       
+#elif defined(__APPLE__)
+       
+#else
+       
+       // Setup for comparison purposes. Should be 
+       // /home/<user>/.xestiaab/preferences/accounts
+       
+       wxString SettingsFileCheck = "";
+       SettingsFileCheck.Clear();
+       SettingsFileCheck.Append(wxString::FromUTF8(getenv("HOME")));
+       SettingsFileCheck.Append(wxT("/.xestiaab/preferences/settings"));
+       
+       wxString SettingsFile = GetSettingsFile();
+       
+       ASSERT_EQ(SettingsFile, SettingsFileCheck);
+       
+#endif
+       
+}
+
+TEST(CommonFunctions, CreateFilenamePath){
+       
+       // Run the unit tests depending on the operating system being used.
+       
+#if defined(__WIN32__)
+       
+#elif defined(__APPLE__)
+       
+#else
+               
+       ASSERT_EQ("/test", CreateFilenamePath("", "test"));
+       ASSERT_EQ("/example/test", CreateFilenamePath("/example", "test"));
+       ASSERT_EQ("/home/meep/test", CreateFilenamePath("/home/meep", "test"));
+       ASSERT_EQ("/home/meep/moo/test", CreateFilenamePath("/home/meep/moo", "test"));
+       ASSERT_EQ("/home/meep/moo/yargh/test", CreateFilenamePath("/home/meep/moo/yargh", "test"));
+       
+#endif
+       
 }
\ 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