test_filter_loop.cpp
Go to the documentation of this file.
1 /****************************************************************************
2  *
3  * fkie_message_filters
4  * Copyright © 2018-2020 Fraunhofer FKIE
5  * Author: Timo Röhling
6  *
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  * http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  *
19  ****************************************************************************/
20 #include "test.h"
23 
25 {
26  using Source = mf::UserSource<int_M>;
28 
29  std::size_t callback_counts = 0;
30  Source src;
31  Filter flt;
32  flt.set_processing_function(
33  [&](const int_M& i) -> bool
34  {
35  ++callback_counts;
36  return true;
37  }
38  );
39  mf::chain(src, flt);
40  // Connect the filter output to its own input
41  mf::chain(flt, flt);
42  ASSERT_THROW(src(int_M(0)), std::logic_error);
43 }
TEST(fkie_message_filters, FilterLoop)
Primary namespace.
Definition: buffer.h:33
void chain(Filter1 &flt1, Filter2 &flt2, MoreFilters &... filters) noexcept
Convenience function to chain multiple filters.
Definition: filter_impl.h:53
NotDefaultConstructable< int > int_M
Definition: test.h:47
Manually operated data source.
Definition: user_source.h:37
Simplified filter with user-defined callback function.


fkie_message_filters
Author(s): Timo Röhling
autogenerated on Mon Feb 28 2022 22:21:43