mirror of
https://codeberg.org/comaps/comaps
synced 2025-12-19 13:03:36 +00:00
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
78 lines
1.9 KiB
C++
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
|