1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112
|
// (C) Copyright Jonathan Turkanis 2004
// Distributed under the Boost Software License, Version 1.0. (See accompanying
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt.)
// See http://www.boost.org/libs/iostreams for documentation.
#include <cctype>
#include <boost/iostreams/compose.hpp>
#include <boost/iostreams/device/file.hpp>
#include <boost/iostreams/filtering_stream.hpp>
#include <boost/test/test_tools.hpp>
#include <boost/test/unit_test.hpp>
#include "detail/filters.hpp"
#include "detail/temp_file.hpp"
#include "detail/verification.hpp"
// Must come last.
#include <boost/iostreams/detail/config/disable_warnings.hpp> // BCC 5.x.
using namespace boost::iostreams;
using boost::unit_test::test_suite;
void read_composite()
{
using namespace boost::iostreams::test;
test_file src1, src2;
filtering_istream first, second;
first.push(toupper_filter());
first.push(padding_filter('a'));
first.push(file_source(src1.name(), in_mode));
second.push( compose( toupper_filter(),
compose( padding_filter('a'),
file_source(src1.name(), in_mode) ) ) );
BOOST_CHECK_MESSAGE(
compare_streams_in_chunks(first, second),
"failed reading from a stdio_filter"
);
first.reset();
second.reset();
first.push(toupper_filter());
first.push(padding_filter('a'));
first.push(file_source(src1.name(), in_mode));
second.push( compose( compose( toupper_filter(),
padding_filter('a') ),
file_source(src1.name(), in_mode) ) );
BOOST_CHECK_MESSAGE(
compare_streams_in_chunks(first, second),
"failed reading from a stdio_filter"
);
}
void write_composite()
{
using namespace std;
using namespace boost::iostreams::test;
temp_file dest1, dest2;
filtering_ostream out1, out2;
out1.push(tolower_filter());
out1.push(padding_filter('a'));
out1.push(file_sink(dest1.name(), in_mode));
out2.push( compose( tolower_filter(),
compose( padding_filter('a'),
file_sink(dest2.name(), in_mode) ) ) );
write_data_in_chunks(out1);
write_data_in_chunks(out2);
out1.reset();
out2.reset();
{
ifstream first(dest1.name().c_str());
ifstream second(dest2.name().c_str());
BOOST_CHECK_MESSAGE(
compare_streams_in_chunks(first, second),
"failed writing to a stdio_filter"
);
}
out1.push(tolower_filter());
out1.push(padding_filter('a'));
out1.push(file_sink(dest1.name(), in_mode));
out2.push( compose( compose( tolower_filter(),
padding_filter('a') ),
file_sink(dest2.name(), in_mode) ) );
write_data_in_chunks(out1);
write_data_in_chunks(out2);
out1.reset();
out2.reset();
{
ifstream first(dest1.name().c_str());
ifstream second(dest2.name().c_str());
BOOST_CHECK_MESSAGE(
compare_streams_in_chunks(first, second),
"failed writing to a stdio_filter"
);
}
}
test_suite* init_unit_test_suite(int, char* [])
{
test_suite* test = BOOST_TEST_SUITE("line_filter test");
test->add(BOOST_TEST_CASE(&read_composite));
test->add(BOOST_TEST_CASE(&write_composite));
return test;
}
#include <boost/iostreams/detail/config/enable_warnings.hpp> // BCC 5.x.
|