X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/1fe1aecb87f58845cc2cf8d66653d4885a9af0b8..b02dd12239c8a59b9a545d9fcb04974f8ad02c6b:/tests/filename/filenametest.cpp diff --git a/tests/filename/filenametest.cpp b/tests/filename/filenametest.cpp index 175e41bc65..aefd7fee57 100644 --- a/tests/filename/filenametest.cpp +++ b/tests/filename/filenametest.cpp @@ -24,11 +24,16 @@ #include "wx/filename.h" #include "wx/filefn.h" #include "wx/stdpaths.h" +#include "wx/scopeguard.h" #ifdef __WXMSW__ #include "wx/msw/registry.h" #endif // __WXMSW__ +#ifdef __UNIX__ + #include +#endif // __UNIX__ + #include "testfile.h" // ---------------------------------------------------------------------------- @@ -134,6 +139,8 @@ private: CPPUNIT_TEST( TestVolumeUniqueName ); CPPUNIT_TEST( TestCreateTempFileName ); CPPUNIT_TEST( TestGetTimes ); + CPPUNIT_TEST( TestExists ); + CPPUNIT_TEST( TestIsSame ); CPPUNIT_TEST_SUITE_END(); void TestConstruction(); @@ -151,6 +158,8 @@ private: void TestVolumeUniqueName(); void TestCreateTempFileName(); void TestGetTimes(); + void TestExists(); + void TestIsSame(); DECLARE_NO_COPY_CLASS(FileNameTestCase) }; @@ -158,7 +167,7 @@ private: // register in the unnamed registry so that these tests are run by default CPPUNIT_TEST_SUITE_REGISTRATION( FileNameTestCase ); -// also include in it's own registry so that these tests can be run alone +// also include in its own registry so that these tests can be run alone CPPUNIT_TEST_SUITE_NAMED_REGISTRATION( FileNameTestCase, "FileNameTestCase" ); void FileNameTestCase::TestConstruction() @@ -322,8 +331,11 @@ void FileNameTestCase::TestNormalize() // test wxPATH_NORM_DOTS { "a/.././b/c/../../", wxPATH_NORM_DOTS, "", wxPATH_UNIX }, - { "./", wxPATH_NORM_DOTS, "", wxPATH_UNIX }, - { "b/../", wxPATH_NORM_DOTS, "", wxPATH_UNIX }, + { "", wxPATH_NORM_DOTS, "", wxPATH_UNIX }, + { "./foo", wxPATH_NORM_DOTS, "foo", wxPATH_UNIX }, + { "b/../bar", wxPATH_NORM_DOTS, "bar", wxPATH_UNIX }, + { "c/../../quux", wxPATH_NORM_DOTS, "../quux", wxPATH_UNIX }, + { "/c/../../quux", wxPATH_NORM_DOTS, "/quux", wxPATH_UNIX }, // test wxPATH_NORM_TILDE: notice that ~ is only interpreted specially // when it is the first character in the file name @@ -503,26 +515,25 @@ void FileNameTestCase::TestGetHumanReadable() { "304 KB", 304351, 0, wxSIZE_CONV_SI }, }; + CLocaleSetter loc; // we want to use "C" locale for LC_NUMERIC + // so that regardless of the system's locale + // the decimal point used by GetHumanReadableSize() + // is always '.' for ( unsigned n = 0; n < WXSIZEOF(testData); n++ ) { const TestData& td = testData[n]; // take care of using the decimal point for the current locale before // the actual comparison - wxString result_localized = wxString(td.result); - result_localized.Replace(".", wxLocale::GetInfo(wxLOCALE_DECIMAL_POINT, wxLOCALE_CAT_NUMBER)); - CPPUNIT_ASSERT_EQUAL ( - result_localized, + td.result, wxFileName::GetHumanReadableSize(td.size, "NA", td.prec, td.conv) ); } // also test the default convention value - wxString result_localized = wxString("1.4 MB"); - result_localized.Replace(".", wxLocale::GetInfo(wxLOCALE_DECIMAL_POINT, wxLOCALE_CAT_NUMBER)); - CPPUNIT_ASSERT_EQUAL( result_localized, wxFileName::GetHumanReadableSize(1512993, "") ); + CPPUNIT_ASSERT_EQUAL( "1.4 MB", wxFileName::GetHumanReadableSize(1512993, "") ); } void FileNameTestCase::TestStrip() @@ -587,35 +598,46 @@ void FileNameTestCase::TestCreateTempFileName() { const char *prefix; const char *expectedFolder; - bool shouldFail; + bool shouldSucceed; } testData[] = { - { "", "$SYSTEM_TEMP", false }, - { "foo", "$SYSTEM_TEMP", false }, - { "..", "$SYSTEM_TEMP", false }, - { "../bar", "..", false }, - { "c:\\a\\place\\which\\does\\not\\exist", "", true }, -#ifdef __UNIX__ - { "/tmp/foo", "/tmp", false }, - { "/tmp/foo/bar", "", true }, + { "", "$SYSTEM_TEMP", true }, + { "foo", "$SYSTEM_TEMP", true }, + { "..", "$SYSTEM_TEMP", true }, + { "../bar", "..", true }, +#ifdef __WXMSW__ + { "$USER_DOCS_DIR\\", "$USER_DOCS_DIR", true }, + { "c:\\a\\directory\\which\\does\\not\\exist", "", false }, +#elif defined( __UNIX__ ) + { "$USER_DOCS_DIR/", "$USER_DOCS_DIR", true }, + { "/tmp/foo", "/tmp", true }, + { "/tmp/a/directory/which/does/not/exist", "", false }, #endif // __UNIX__ }; for ( size_t n = 0; n < WXSIZEOF(testData); n++ ) { - wxString path = wxFileName::CreateTempFileName(testData[n].prefix); - CPPUNIT_ASSERT_EQUAL( path.empty(), testData[n].shouldFail ); + wxString prefix = testData[n].prefix; + prefix.Replace("$USER_DOCS_DIR", wxStandardPaths::Get().GetDocumentsDir()); + + std::string errDesc = wxString::Format("failed on prefix '%s'", prefix).ToStdString(); + + wxString path = wxFileName::CreateTempFileName(prefix); + CPPUNIT_ASSERT_EQUAL_MESSAGE( errDesc, !testData[n].shouldSucceed, path.empty() ); - if (!testData[n].shouldFail) + if (testData[n].shouldSucceed) { + errDesc += "; path is " + path.ToStdString(); + // test the place where the temp file has been created wxString expected = testData[n].expectedFolder; expected.Replace("$SYSTEM_TEMP", wxStandardPaths::Get().GetTempDir()); - CPPUNIT_ASSERT_EQUAL(expected, wxFileName(path).GetPath()); + expected.Replace("$USER_DOCS_DIR", wxStandardPaths::Get().GetDocumentsDir()); + CPPUNIT_ASSERT_EQUAL_MESSAGE( errDesc, expected, wxFileName(path).GetPath() ); // the temporary file is created with full permissions for the current process // so we should always be able to remove it: - CPPUNIT_ASSERT( wxRemoveFile(path) ); + CPPUNIT_ASSERT_MESSAGE( errDesc, wxRemoveFile(path) ); } } } @@ -624,6 +646,7 @@ void FileNameTestCase::TestGetTimes() { wxFileName fn(wxFileName::CreateTempFileName("filenametest")); CPPUNIT_ASSERT( fn.IsOk() ); + wxON_BLOCK_EXIT1( wxRemoveFile, fn.GetFullPath() ); wxDateTime dtAccess, dtMod, dtCreate; CPPUNIT_ASSERT( fn.GetTimes(&dtAccess, &dtMod, &dtCreate) ); @@ -634,3 +657,73 @@ void FileNameTestCase::TestGetTimes() CPPUNIT_ASSERT(dtMod.IsEqualUpTo(wxDateTime::Now(), wxTimeSpan(0,1))); CPPUNIT_ASSERT(dtAccess.IsEqualUpTo(wxDateTime::Now(), wxTimeSpan(0,1))); } + +void FileNameTestCase::TestExists() +{ + wxFileName fn(wxFileName::CreateTempFileName("filenametest")); + CPPUNIT_ASSERT( fn.IsOk() ); + wxON_BLOCK_EXIT1( wxRemoveFile, fn.GetFullPath() ); + + CPPUNIT_ASSERT( fn.FileExists() ); + CPPUNIT_ASSERT( !wxFileName::DirExists(fn.GetFullPath()) ); + CPPUNIT_ASSERT( fn.Exists() ); + + wxFileName dirTemp(wxFileName::DirName(wxFileName::GetTempDir())); + CPPUNIT_ASSERT( !dirTemp.FileExists() ); + CPPUNIT_ASSERT( dirTemp.DirExists() ); + CPPUNIT_ASSERT( dirTemp.Exists() ); + +#ifdef __UNIX__ + CPPUNIT_ASSERT( !wxFileName::FileExists("/dev/null") ); + CPPUNIT_ASSERT( !wxFileName::DirExists("/dev/null") ); + CPPUNIT_ASSERT( wxFileName::Exists("/dev/null") ); +#endif // __UNIX__ +} + +void FileNameTestCase::TestIsSame() +{ + wxFileName fn1( wxFileName::CreateTempFileName( "filenametest1" ) ); + CPPUNIT_ASSERT( fn1.IsOk() ); + wxON_BLOCK_EXIT1( wxRemoveFile, fn1.GetFullPath() ); + + wxFileName fn2( wxFileName::CreateTempFileName( "filenametest2" ) ); + CPPUNIT_ASSERT( fn2.IsOk() ); + wxON_BLOCK_EXIT1( wxRemoveFile, fn2.GetFullPath() ); + + CPPUNIT_ASSERT( fn1.SameAs( fn1 ) ); + CPPUNIT_ASSERT( !fn1.SameAs( fn2 ) ); + +#if defined(__UNIX__) + // We need to create a temporary directory and a temporary link. + // Unfortunately we can't use wxFileName::CreateTempFileName() for neither + // as it creates plain files, so use tempnam() explicitly instead. + char* tn = tempnam(NULL, "wxfn1"); + const wxString tempdir1 = wxString::From8BitData(tn); + free(tn); + + CPPUNIT_ASSERT( wxFileName::Mkdir(tempdir1) ); + // Unfortunately the casts are needed to select the overload we need here. + wxON_BLOCK_EXIT2( static_cast(wxFileName::Rmdir), + tempdir1, static_cast(wxPATH_RMDIR_RECURSIVE) ); + + tn = tempnam(NULL, "wxfn2"); + const wxString tempdir2 = wxString::From8BitData(tn); + free(tn); + CPPUNIT_ASSERT_EQUAL( 0, symlink(tempdir1, tempdir2) ); + wxON_BLOCK_EXIT1( wxRemoveFile, tempdir2 ); + + + wxFileName fn3(tempdir1, "foo"); + wxFileName fn4(tempdir2, "foo"); + + // These files have different paths, hence are different. + CPPUNIT_ASSERT( !fn3.SameAs(fn4) ); + + // Create and close a file to trigger creating it. + wxFile(fn3.GetFullPath(), wxFile::write); + + // Now that both files do exist we should be able to detect that they are + // actually the same file. + CPPUNIT_ASSERT( fn3.SameAs(fn4) ); +#endif // __UNIX__ +}