/* ---------------------------------------------------------------------- LAMMPS - Large-scale Atomic/Molecular Massively Parallel Simulator http://lammps.sandia.gov, Sandia National Laboratories Steve Plimpton, sjplimp@sandia.gov Copyright (2003) Sandia Corporation. Under the terms of Contract DE-AC04-94AL85000 with Sandia Corporation, the U.S. Government retains certain rights in this software. This software is distributed under the GNU General Public License. See the README file in the top-level LAMMPS directory. ------------------------------------------------------------------------- */ #include "gtest/gtest.h" #include "gmock/gmock.h" #include "fmt/format.h" #include "utils.h" #include "../testing/core.h" #include "../testing/systems/melt.h" #include "../testing/utils.h" char * ZSTD_BINARY = nullptr; using ::testing::Eq; class DumpCfgZstdTest : public MeltTest { std::string dump_style = "cfg"; public: void generate_text_and_compressed_dump(std::string text_file, std::string compressed_file, std::string compression_style, std::string fields, std::string dump_modify_options, int ntimesteps) { if (!verbose) ::testing::internal::CaptureStdout(); command(fmt::format("dump id0 all {} 1 {} {}", dump_style, text_file, fields)); command(fmt::format("dump id1 all {} 1 {} {}", compression_style, compressed_file, fields)); if (!dump_modify_options.empty()) { command(fmt::format("dump_modify id0 {}", dump_modify_options)); command(fmt::format("dump_modify id1 {}", dump_modify_options)); } command(fmt::format("run {}", ntimesteps)); if (!verbose) ::testing::internal::GetCapturedStdout(); } std::string convert_compressed_to_text(std::string compressed_file) { if (!verbose) ::testing::internal::CaptureStdout(); std::string converted_file = compressed_file.substr(0, compressed_file.find_last_of('.')); std::string cmdline = fmt::format("{} -d -c {} > {}", ZSTD_BINARY, compressed_file, converted_file); system(cmdline.c_str()); if (!verbose) ::testing::internal::GetCapturedStdout(); return converted_file; } }; TEST_F(DumpCfgZstdTest, compressed_run0) { if(!ZSTD_BINARY) GTEST_SKIP(); auto text_files = "dump_cfg_zstd_text_run*.melt.cfg"; auto compressed_files = "dump_cfg_zstd_compressed_run*.melt.cfg.zst"; auto text_file = "dump_cfg_zstd_text_run0.melt.cfg"; auto compressed_file = "dump_cfg_zstd_compressed_run0.melt.cfg.zst"; auto fields = "mass type xs ys zs id proc procp1 x y z ix iy iz vx vy vz fx fy fz"; generate_text_and_compressed_dump(text_files, compressed_files, "cfg/zstd", fields, "", 0); TearDown(); ASSERT_FILE_EXISTS(text_file); ASSERT_FILE_EXISTS(compressed_file); auto converted_file = convert_compressed_to_text(compressed_file); ASSERT_FILE_EXISTS(converted_file); ASSERT_FILE_EQUAL(text_file, converted_file); delete_file(text_file); delete_file(compressed_file); delete_file(converted_file); } TEST_F(DumpCfgZstdTest, compressed_unwrap_run0) { if(!ZSTD_BINARY) GTEST_SKIP(); auto text_files = "dump_cfg_unwrap_zstd_text_run*.melt.cfg"; auto compressed_files = "dump_cfg_unwrap_zstd_compressed_run*.melt.cfg.zst"; auto text_file = "dump_cfg_unwrap_zstd_text_run0.melt.cfg"; auto compressed_file = "dump_cfg_unwrap_zstd_compressed_run0.melt.cfg.zst"; auto fields = "mass type xsu ysu zsu id proc procp1 x y z ix iy iz vx vy vz fx fy fz"; generate_text_and_compressed_dump(text_files, compressed_files, "cfg/zstd", fields, "", 0); TearDown(); ASSERT_FILE_EXISTS(text_file); ASSERT_FILE_EXISTS(compressed_file); auto converted_file = convert_compressed_to_text(compressed_file); ASSERT_FILE_EXISTS(converted_file); ASSERT_FILE_EQUAL(text_file, converted_file); delete_file(text_file); delete_file(compressed_file); delete_file(converted_file); } int main(int argc, char **argv) { MPI_Init(&argc, &argv); ::testing::InitGoogleMock(&argc, argv); // handle arguments passed via environment variable if (const char *var = getenv("TEST_ARGS")) { std::vector env = utils::split_words(var); for (auto arg : env) { if (arg == "-v") { verbose = true; } } } ZSTD_BINARY = getenv("ZSTD_BINARY"); if ((argc > 1) && (strcmp(argv[1], "-v") == 0)) verbose = true; int rv = RUN_ALL_TESTS(); MPI_Finalize(); return rv; }