Files
comaps/platform/platform_tests_support/scoped_file.cpp
Konstantin Pastbin e3e4a1985a Organic Maps sources as of 02.04.2025 (fad26bbf22ac3da75e01e62aa01e5c8e11861005)
To expand with full Organic Maps and Maps.ME commits history run:
  git remote add om-historic [om-historic.git repo url]
  git fetch --tags om-historic
  git replace squashed-history historic-commits
2025-05-08 21:10:51 +07:00

78 lines
1.9 KiB
C++

#include "platform/platform_tests_support/scoped_file.hpp"
#include "testing/testing.hpp"
#include "platform/country_file.hpp"
#include "platform/mwm_version.hpp"
#include "platform/platform_tests_support/scoped_dir.hpp"
#include "coding/file_writer.hpp"
#include "coding/internal/file_data.hpp"
#include "coding/writer.hpp"
#include "base/assert.hpp"
#include "base/file_name_utils.hpp"
#include "base/logging.hpp"
#include <sstream>
namespace platform
{
namespace tests_support
{
ScopedFile::ScopedFile(std::string const & relativePath, Mode mode)
: ScopedFile(relativePath, {} /* contents */, mode)
{
}
ScopedFile::ScopedFile(std::string const & relativePath, std::string const & contents)
: ScopedFile(relativePath, contents, Mode::Create)
{
}
ScopedFile::ScopedFile(ScopedDir const & dir, CountryFile const & countryFile, MapFileType type)
: ScopedFile(base::JoinPath(dir.GetRelativePath(), countryFile.GetFileName(type)), Mode::Create)
{
}
ScopedFile::ScopedFile(std::string const & relativePath, std::string const & contents, Mode mode)
: m_fullPath(base::JoinPath(GetPlatform().WritableDir(), relativePath))
{
if (mode == Mode::DoNotCreate)
return;
try
{
FileWriter writer(GetFullPath());
writer.Write(contents.data(), contents.size());
}
catch (Writer::Exception const & e)
{
LOG(LERROR, ("Can't create test file:", e.what()));
}
CHECK(Exists(), ("Can't create test file", GetFullPath()));
}
ScopedFile::~ScopedFile()
{
if (m_reset)
return;
if (!Exists())
{
LOG(LERROR, ("File", GetFullPath(), "did not exist or was deleted before dtor of ScopedFile."));
return;
}
if (!base::DeleteFileX(GetFullPath()))
LOG(LERROR, ("Can't remove test file:", GetFullPath()));
}
std::string DebugPrint(ScopedFile const & file)
{
std::ostringstream os;
os << "ScopedFile [" << file.GetFullPath() << "]";
return os.str();
}
} // namespace tests_support
} // namespace platform