38 lines
1.2 KiB
C++
38 lines
1.2 KiB
C++
#include <unistd.h>
|
|
#include <stdlib.h>
|
|
#include "filesystem_test.h"
|
|
#include "pbd/file_utils.h"
|
|
|
|
using namespace std;
|
|
|
|
CPPUNIT_TEST_SUITE_REGISTRATION (FilesystemTest);
|
|
|
|
void
|
|
FilesystemTest::testPathIsWithin ()
|
|
{
|
|
#ifndef PLATFORM_WINDOWS
|
|
system ("rm -r foo");
|
|
CPPUNIT_ASSERT (g_mkdir_with_parents ("foo/bar/baz", 0755) == 0);
|
|
|
|
CPPUNIT_ASSERT (PBD::path_is_within ("foo/bar/baz", "foo/bar/baz"));
|
|
CPPUNIT_ASSERT (PBD::path_is_within ("foo/bar", "foo/bar/baz"));
|
|
CPPUNIT_ASSERT (PBD::path_is_within ("foo", "foo/bar/baz"));
|
|
CPPUNIT_ASSERT (PBD::path_is_within ("foo/bar", "foo/bar/baz"));
|
|
CPPUNIT_ASSERT (PBD::path_is_within ("foo/bar", "foo/bar"));
|
|
|
|
CPPUNIT_ASSERT (PBD::path_is_within ("foo/bar/baz", "frobozz") == false);
|
|
|
|
int const r = symlink ("bar", "foo/jim");
|
|
CPPUNIT_ASSERT (r == 0);
|
|
|
|
CPPUNIT_ASSERT (PBD::path_is_within ("foo/bar/baz", "foo/bar/baz"));
|
|
CPPUNIT_ASSERT (PBD::path_is_within ("foo/bar", "foo/bar/baz"));
|
|
CPPUNIT_ASSERT (PBD::path_is_within ("foo", "foo/bar/baz"));
|
|
CPPUNIT_ASSERT (PBD::path_is_within ("foo/bar", "foo/bar/baz"));
|
|
CPPUNIT_ASSERT (PBD::path_is_within ("foo/bar", "foo/bar"));
|
|
|
|
CPPUNIT_ASSERT (PBD::path_is_within ("foo/jim/baz", "frobozz") == false);
|
|
#endif
|
|
}
|
|
|