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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
|
/*
* 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.
*
* Verifies that the close() member functions of filters and devices
* are called with the correct arguments in the correct order when
* they are combined using combine().
*
* File: libs/iostreams/test/combine_test.cpp
* Date: Sun Jan 06 01:37:37 MST 2008
* Copyright: 2007-2008 CodeRage, LLC
* Author: Jonathan Turkanis
* Contact: turkanis at coderage dot com
*/
#include <boost/iostreams/chain.hpp>
#include <boost/iostreams/combine.hpp>
#include <boost/test/test_tools.hpp>
#include <boost/test/unit_test.hpp>
#include "detail/closable.hpp"
#include "detail/operation_sequence.hpp"
using namespace boost::iostreams;
using namespace boost::iostreams::test;
using boost::unit_test::test_suite;
namespace io = boost::iostreams;
void combine_test()
{
// Combine a source and a sink
{
operation_sequence seq;
chain<bidirectional> ch;
ch.push(
io::combine(
closable_device<input>(seq.new_operation(1)),
closable_device<output>(seq.new_operation(2))
)
);
BOOST_CHECK_NO_THROW(ch.reset());
BOOST_CHECK_OPERATION_SEQUENCE(seq);
}
// Combine two bidirectional devices
{
operation_sequence seq;
chain<bidirectional> ch;
ch.push(
io::combine(
closable_device<bidirectional>(
seq.new_operation(1),
seq.new_operation(2)
),
closable_device<bidirectional>(
seq.new_operation(3),
seq.new_operation(4)
)
)
);
BOOST_CHECK_NO_THROW(ch.reset());
BOOST_CHECK_OPERATION_SEQUENCE(seq);
}
// Combine two seekable devices
{
operation_sequence seq;
chain<bidirectional> ch;
ch.push(
io::combine(
closable_device<seekable>(seq.new_operation(1)),
closable_device<seekable>(seq.new_operation(2))
)
);
BOOST_CHECK_NO_THROW(ch.reset());
BOOST_CHECK_OPERATION_SEQUENCE(seq);
}
// Combine an input filter and an output filter
{
operation_sequence seq;
chain<bidirectional> ch;
ch.push(
io::combine(
closable_filter<input>(seq.new_operation(2)),
closable_filter<output>(seq.new_operation(3))
)
);
ch.push(
closable_device<bidirectional>(
seq.new_operation(1),
seq.new_operation(4)
)
);
BOOST_CHECK_NO_THROW(ch.reset());
BOOST_CHECK_OPERATION_SEQUENCE(seq);
}
// Combine two bidirectional filters
{
operation_sequence seq;
chain<bidirectional> ch;
ch.push(
io::combine(
closable_filter<bidirectional>(
seq.new_operation(2),
seq.new_operation(3)
),
closable_filter<bidirectional>(
seq.new_operation(4),
seq.new_operation(5)
)
)
);
ch.push(
closable_device<bidirectional>(
seq.new_operation(1),
seq.new_operation(6)
)
);
BOOST_CHECK_NO_THROW(ch.reset());
BOOST_CHECK_OPERATION_SEQUENCE(seq);
}
// Combine two seekable filters
{
operation_sequence seq;
chain<bidirectional> ch;
ch.push(
io::combine(
closable_filter<seekable>(seq.new_operation(2)),
closable_filter<seekable>(seq.new_operation(3))
)
);
ch.push(
closable_device<bidirectional>(
seq.new_operation(1),
seq.new_operation(4)
)
);
BOOST_CHECK_NO_THROW(ch.reset());
BOOST_CHECK_OPERATION_SEQUENCE(seq);
}
// Combine a dual-use filter and an input filter
{
operation_sequence seq;
chain<bidirectional> ch;
operation dummy;
ch.push(
io::combine(
closable_filter<input>(seq.new_operation(2)),
closable_filter<dual_use>(
dummy,
seq.new_operation(3)
)
)
);
ch.push(
closable_device<bidirectional>(
seq.new_operation(1),
seq.new_operation(4)
)
);
BOOST_CHECK_NO_THROW(ch.reset());
BOOST_CHECK_OPERATION_SEQUENCE(seq);
}
// Combine a dual-use filter and an output filter
{
operation_sequence seq;
chain<bidirectional> ch;
operation dummy;
ch.push(
io::combine(
closable_filter<dual_use>(
seq.new_operation(2),
dummy
),
closable_filter<output>(seq.new_operation(3))
)
);
ch.push(
closable_device<bidirectional>(
seq.new_operation(1),
seq.new_operation(4)
)
);
BOOST_CHECK_NO_THROW(ch.reset());
BOOST_CHECK_OPERATION_SEQUENCE(seq);
}
// Combine two dual-use filters
{
operation_sequence seq;
chain<bidirectional> ch;
operation dummy;
ch.push(
io::combine(
closable_filter<dual_use>(
seq.new_operation(2),
dummy
),
closable_filter<dual_use>(
dummy,
seq.new_operation(3)
)
)
);
ch.push(
closable_device<bidirectional>(
seq.new_operation(1),
seq.new_operation(4)
)
);
BOOST_CHECK_NO_THROW(ch.reset());
BOOST_CHECK_OPERATION_SEQUENCE(seq);
}
}
test_suite* init_unit_test_suite(int, char* [])
{
test_suite* test = BOOST_TEST_SUITE("combine test");
test->add(BOOST_TEST_CASE(&combine_test));
return test;
}
|