#include <filesystem>
#include <cassert>
#include <string>
#include <type_traits>
#include "assert_macros.h"
#include "count_new.h"
#include "make_string.h"
#include "min_allocator.h"
#include "test_iterators.h"
#include "test_macros.h"
namespace fs = std::filesystem;
MultiStringType longString = MKSTR("abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ/123456789/abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ");
int main(int, char**)
{
using namespace fs;
auto const& MS = longString;
const char* value = longString;
const path p(value);
{
std::string s = p.string();
assert(s == value);
}
{
#if TEST_STD_VER > 17 && defined(__cpp_char8_t)
ASSERT_SAME_TYPE(decltype(p.u8string()), std::u8string);
std::u8string s = p.u8string();
assert(s == (const char8_t*)MS);
#else
ASSERT_SAME_TYPE(decltype(p.u8string()), std::string);
std::string s = p.u8string();
assert(s == (const char*)MS);
#endif
}
#ifndef TEST_HAS_NO_WIDE_CHARACTERS
{
std::wstring s = p.wstring();
assert(s == (const wchar_t*)MS);
}
#endif
{
std::u16string s = p.u16string();
assert(s == (const char16_t*)MS);
}
{
std::u32string s = p.u32string();
assert(s == (const char32_t*)MS);
}
return 0;
}