From 64db2c5392d2b1b2c18302ba57492f1512d1c2d6 Mon Sep 17 00:00:00 2001 From: Anatoly Serdtcev Date: Thu, 31 Oct 2019 20:25:37 +0300 Subject: [PATCH] [generator:tests] Add directory recursive cleaner helper --- generator/generator_tests/common.hpp | 2 + .../platform_tests_support/scoped_dir.cpp | 37 ++++++++++++------- .../platform_tests_support/scoped_dir.hpp | 3 +- 3 files changed, 27 insertions(+), 15 deletions(-) diff --git a/generator/generator_tests/common.hpp b/generator/generator_tests/common.hpp index 9793f29..59d42c9 100644 --- a/generator/generator_tests/common.hpp +++ b/generator/generator_tests/common.hpp @@ -5,6 +5,7 @@ #include "geometry/point2d.hpp" #include "geometry/rect2d.hpp" +#include "platform/platform_tests_support/scoped_dir.hpp" #include "platform/platform_tests_support/scoped_file.hpp" #include @@ -13,6 +14,7 @@ namespace generator_tests { using Tags = std::vector>; +using platform::tests_support::ScopedDir; using platform::tests_support::ScopedFile; OsmElement MakeOsmElement(uint64_t id, Tags const & tags, OsmElement::EntityType t); diff --git a/platform/platform_tests_support/scoped_dir.cpp b/platform/platform_tests_support/scoped_dir.cpp index 6aa976d..43ac701 100644 --- a/platform/platform_tests_support/scoped_dir.cpp +++ b/platform/platform_tests_support/scoped_dir.cpp @@ -11,10 +11,11 @@ namespace platform { namespace tests_support { -ScopedDir::ScopedDir(std::string const & relativePath) +ScopedDir::ScopedDir(std::string const & relativePath, bool recursiveForceRemove) : m_fullPath(base::JoinPath(GetPlatform().WritableDir(), relativePath)) , m_relativePath(relativePath) , m_reset(false) + , m_recursiveForceRemove{recursiveForceRemove} { Platform::EError ret = Platform::MkDir(GetFullPath()); switch (ret) @@ -43,20 +44,28 @@ ScopedDir::~ScopedDir() return; std::string const fullPath = GetFullPath(); - Platform::EError ret = Platform::RmDir(fullPath); - switch (ret) + if (m_recursiveForceRemove) { - case Platform::ERR_OK: - break; - case Platform::ERR_FILE_DOES_NOT_EXIST: - LOG(LERROR, (fullPath, "was deleted before destruction of ScopedDir.")); - break; - case Platform::ERR_DIRECTORY_NOT_EMPTY: - LOG(LERROR, ("There are files in", fullPath)); - break; - default: - LOG(LERROR, ("Platform::RmDir() error for", fullPath, ":", ret)); - break; + if (!Platform::RmDirRecursively(fullPath)) + LOG(LERROR, ("Fail to force remove directory", fullPath)); + } + else + { + Platform::EError const ret = Platform::RmDir(fullPath); + switch (ret) + { + case Platform::ERR_OK: + break; + case Platform::ERR_FILE_DOES_NOT_EXIST: + LOG(LERROR, (fullPath, "was deleted before destruction of ScopedDir.")); + break; + case Platform::ERR_DIRECTORY_NOT_EMPTY: + LOG(LERROR, ("There are files in", fullPath)); + break; + default: + LOG(LERROR, ("Platform::RmDir() error for", fullPath, ":", ret)); + break; + } } } diff --git a/platform/platform_tests_support/scoped_dir.hpp b/platform/platform_tests_support/scoped_dir.hpp index 743bdfc..25baa58 100644 --- a/platform/platform_tests_support/scoped_dir.hpp +++ b/platform/platform_tests_support/scoped_dir.hpp @@ -16,7 +16,7 @@ class ScopedDir public: /// Creates test dir in a writable directory. /// @param path Path for a testing directory, should be relative to writable-dir. - ScopedDir(std::string const & relativePath); + ScopedDir(std::string const & relativePath, bool recursiveForceRemove = false); ScopedDir(ScopedDir const & parent, std::string const & name); @@ -34,6 +34,7 @@ private: std::string const m_fullPath; std::string const m_relativePath; bool m_reset; + bool m_recursiveForceRemove; DISALLOW_COPY_AND_MOVE(ScopedDir); };