diff options
| author | Carl Hetherington <cth@carlh.net> | 2021-04-20 22:53:46 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2021-04-23 17:44:14 +0200 |
| commit | 87df63f0ca9cf1df4f99f5818dad45bbc4c6e3e3 (patch) | |
| tree | b8a8113e95e8577623ce8b686141031bbd89204b /test | |
| parent | 151f5c81fade29e9bebea9904fd85975351b7b78 (diff) | |
Fix fopen() on windows to cope with long filenames (part of #1755).
Diffstat (limited to 'test')
| -rw-r--r-- | test/windows_test.cc | 72 | ||||
| -rw-r--r-- | test/wscript | 1 |
2 files changed, 73 insertions, 0 deletions
diff --git a/test/windows_test.cc b/test/windows_test.cc new file mode 100644 index 000000000..4d07d5fdf --- /dev/null +++ b/test/windows_test.cc @@ -0,0 +1,72 @@ +/* + Copyright (C) 2021 Carl Hetherington <cth@carlh.net> + + This file is part of DCP-o-matic. + + DCP-o-matic is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + DCP-o-matic is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with DCP-o-matic. If not, see <http://www.gnu.org/licenses/>. + +*/ + + +#include "lib/cross.h" +#include "lib/util.h" +#include <boost/filesystem.hpp> +#include <boost/test/unit_test.hpp> +#include <iostream> + + +BOOST_AUTO_TEST_CASE (fix_long_path_test) +{ +#ifdef DCPOMATIC_WINDOWS + BOOST_CHECK_EQUAL (fix_long_path("c:\\foo"), "\\\\?\\c:\\foo"); + BOOST_CHECK_EQUAL (fix_long_path("c:\\foo\\bar"), "\\\\?\\c:\\foo\\bar"); + boost::filesystem::path fixed_bar = "\\\\?\\"; + fixed_bar += boost::filesystem::current_path(); + fixed_bar /= "bar"; + BOOST_CHECK_EQUAL (fix_long_path("bar"), fixed_bar); +#else + BOOST_CHECK_EQUAL (fix_long_path("foo/bar/baz"), "foo/bar/baz"); +#endif +} + + +#ifdef DCPOMATIC_WINDOWS +BOOST_AUTO_TEST_CASE (windows_long_filename_test) +{ + using namespace boost::filesystem; + + path too_long = current_path() / "build\\test\\a\\really\\very\\long\\filesystem\\path\\indeed\\that\\will\\be\\so\\long\\that\\windows\\cannot\\normally\\cope\\with\\it\\unless\\we\\add\\this\\crazy\\prefix\\and\\then\\magically\\it\\can\\do\\it\\fine\\I\\dont\\really\\know\\why\\its\\like\\that\\but\\hey\\it\\is\\so\\here\\we\\are\\what\\can\\we\\do\\other\\than\\bodge\\it"; + + BOOST_CHECK (too_long.string().length() > 260); + boost::system::error_code ec; + create_directories (too_long, ec); + BOOST_CHECK (ec); + + path fixed_path = fix_long_path(too_long); + create_directories (fixed_path, ec); + BOOST_CHECK (!ec); + + auto file = fopen_boost(too_long / "hello", "w"); + BOOST_REQUIRE (file); + fprintf (file, "Hello_world"); + fclose (file); + + file = fopen_boost(too_long / "hello", "r"); + BOOST_REQUIRE (file); + char buffer[64]; + fscanf (file, "%63s", buffer); + BOOST_CHECK_EQUAL (strcmp(buffer, "Hello_world"), 0); +} +#endif + diff --git a/test/wscript b/test/wscript index 4303db835..e2628ecd8 100644 --- a/test/wscript +++ b/test/wscript @@ -138,6 +138,7 @@ def build(bld): video_level_test.cc video_mxf_content_test.cc vf_kdm_test.cc + windows_test.cc writer_test.cc zipper_test.cc """ |
