1 /*
2     Copyright (c) 2022 Intel Corporation
3 
4     Licensed under the Apache License, Version 2.0 (the "License");
5     you may not use this file except in compliance with the License.
6     You may obtain a copy of the License at
7 
8         http://www.apache.org/licenses/LICENSE-2.0
9 
10     Unless required by applicable law or agreed to in writing, software
11     distributed under the License is distributed on an "AS IS" BASIS,
12     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13     See the License for the specific language governing permissions and
14     limitations under the License.
15 */
16 
17 // Message based key matching is a preview feature
18 #define TBB_PREVIEW_FLOW_GRAPH_FEATURES 1
19 
20 #include "common/config.h"
21 
22 #include "test_join_node.h"
23 
24 //! \file test_join_node_msg_key_matching_n_args.cpp
25 //! \brief Test for [preview] functionality
26 
27 template <typename T1, typename T2>
28 using make_tuple = decltype(std::tuple_cat(T1(), std::tuple<T2>()));
29 using T1 = std::tuple<MyMessageKeyWithoutKeyMethod<std::string, double>>;
30 using T2 = make_tuple<T1, MyMessageKeyWithBrokenKey<std::string, int>>;
31 using T3 = make_tuple < T2, MyMessageKeyWithoutKey<std::string, int>>;
32 using T4 = make_tuple < T3, MyMessageKeyWithoutKeyMethod<std::string, size_t>>;
33 using T5 = make_tuple < T4, MyMessageKeyWithBrokenKey<std::string, int>>;
34 using T6 = make_tuple < T5, MyMessageKeyWithoutKeyMethod<std::string, short>>;
35 using T7 = make_tuple < T6, MyMessageKeyWithoutKeyMethod<std::string, threebyte>>;
36 using T8 = make_tuple < T7, MyMessageKeyWithBrokenKey<std::string, int>>;
37 using T9 = make_tuple < T8, MyMessageKeyWithoutKeyMethod<std::string, threebyte>>;
38 using T10 = make_tuple < T9, MyMessageKeyWithBrokenKey<std::string, size_t>>;
39 
40 #if TBB_TEST_LOW_WORKLOAD && TBB_USE_DEBUG
41 // the compiler might generate huge object file in debug (>64M)
42 #define TEST_CASE_TEMPLATE_N_ARGS(dec) TEST_CASE_TEMPLATE(dec, T, T2, T10)
43 #else
44 #define TEST_CASE_TEMPLATE_N_ARGS(dec) TEST_CASE_TEMPLATE(dec, T, T2, T3, T4, T5, T6, T7, T8, T9, T10)
45 #endif
46 
47 //! Serial test with different tuple sizes
48 //! \brief \ref error_guessing
49 TEST_CASE_TEMPLATE_N_ARGS("Serial N tests") {
50     generate_test<serial_test, T, message_based_key_matching<std::string&> >::do_test();
51 }
52 
53 //! Parallel test with different tuple sizes
54 //! \brief \ref error_guessing
55 TEST_CASE_TEMPLATE_N_ARGS("Parallel N tests") {
56     generate_test<parallel_test, T, message_based_key_matching<std::string&> >::do_test();
57 }
58