#include <fstream>
#include <cassert>
#include "test_macros.h"
#include "platform_support.h"
int main(int, char**)
{
std::string temp = get_temp_file_name();
{
std::fstream fs(temp.c_str(), std::ios_base::in | std::ios_base::out
| std::ios_base::trunc);
double x = 0;
fs << 3.25;
fs.seekg(0);
fs >> x;
assert(x == 3.25);
}
std::remove(temp.c_str());
#ifndef TEST_HAS_NO_WIDE_CHARACTERS
{
std::wfstream fs(temp.c_str(), std::ios_base::in | std::ios_base::out
| std::ios_base::trunc);
double x = 0;
fs << 3.25;
fs.seekg(0);
fs >> x;
assert(x == 3.25);
}
std::remove(temp.c_str());
#endif
#if TEST_STD_VER >= 23
{
std::ios_base::openmode modes[] = {
std::ios_base::out | std::ios_base::noreplace,
std::ios_base::out | std::ios_base::trunc | std::ios_base::noreplace,
std::ios_base::in | std::ios_base::out | std::ios_base::trunc | std::ios_base::noreplace,
std::ios_base::out | std::ios_base::noreplace | std::ios_base::binary,
std::ios_base::out | std::ios_base::trunc | std::ios_base::noreplace | std::ios_base::binary,
std::ios_base::in | std::ios_base::out | std::ios_base::trunc | std::ios_base::noreplace |
std::ios_base::binary,
};
for (auto mode : modes) {
std::string tmp = get_temp_file_name();
{
std::fstream f(tmp.c_str(), mode);
assert(!f.is_open());
}
{
std::remove(tmp.c_str());
std::fstream f(tmp.c_str(), mode);
assert(f.is_open());
}
}
# ifndef TEST_HAS_NO_WIDE_CHARACTERS
for (auto mode : modes) {
std::string tmp = get_temp_file_name();
{
std::wfstream f(tmp.c_str(), mode);
assert(!f.is_open());
}
{
std::remove(tmp.c_str());
std::wfstream f(tmp.c_str(), mode);
assert(f.is_open());
}
}
# endif
}
#endif
return 0;
}