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
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
// *****************************************************************************
/*!
  \file      tests/unit/Base/TestTaggedTuple.cpp
  \copyright 2012-2015 J. Bakosi,
             2016-2018 Los Alamos National Security, LLC.,
             2019-2021 Triad National Security, LLC.,
             2022-2024 J. Bakosi
             All rights reserved. See the LICENSE file for details.
  \brief     Unit tests for tk::TaggedTuple
  \details   Unit tests for tk::TaggedTuple
*/
// *****************************************************************************

#include "NoWarning/tut.hpp"

#include "TUTConfig.hpp"
#include "TaggedTuple.hpp"
#include "Types.hpp"

#ifndef DOXYGEN_GENERATING_OUTPUT

namespace tut {

//! All tests in group inherited from this base
struct TaggedTuple_common {
  // Tags
  DEFTAG( name );
  DEFTAG( age );
  DEFTAG( email );
  DEFTAG( tag1 );
  DEFTAG( tag2 );
  DEFTAG( tag3 );
  DEFTAG( tag4 );
  DEFTAG( tag5 );
  DEFTAG( tag6 );
  DEFTAG( tag7 );
  DEFTAG( tag8 );
  DEFTAG( tag9 );

  // Define a tagged tuple: odd template arguments are tags, even ones are types
  using record = tk::TaggedTuple< brigand::list< name,  std::string,
                                                 age,   int,
                                                 email, std::string > >;

  // Declare a record, initialize with an std::initializer_list
  record tup{{ "Bob", 32, "bob@bob.bob" }};

  using map_value_tuple = tk::TaggedTuple< brigand::list< tag1, tk::real > >;
  using tuple1 = tk::TaggedTuple< brigand::list<
                   tag1, std::string,
                   tag2, int,
                   tag5, std::vector< int >,
                   tag6, std::vector< std::vector< int > >,
                   tag9, std::vector< std::vector< std::vector< int > > >,
                   tag7, std::map< int, std::string >,
                   tag8, std::map< int, map_value_tuple > > >;
  using tuple2 = tk::TaggedTuple< brigand::list<
                   tag1, std::string,
                   tag2, int,
                   tag3, tuple1,
                   tag5, std::vector< int >,
                   tag6, std::vector< std::vector< int > >,
                   tag9, std::vector< std::vector< std::vector< int > > >,
                   tag7, std::map< int, std::string >,
                   tag8, std::map< int, map_value_tuple > > >;
  using control = tk::TaggedTuple< brigand::list<
                   tag1, std::string,
                   tag2, int,
                   tag3, tuple1,
                   tag4, tuple2,
                   tag5, std::vector< int >,
                   tag6, std::vector< std::vector< int > >,
                   tag9, std::vector< std::vector< std::vector< int > > >,
                   tag7, std::map< int, std::string >,
                   tag8, std::map< int, map_value_tuple > > >;

  double precision = std::numeric_limits< tk::real >::epsilon();

  //! Lambda to compare two maps of TaggedTuple objects
  void compare( const std::map< int, map_value_tuple >& lhs,<--- The function 'compare' is never used.
                const std::map< int, map_value_tuple >& rhs )
  {
    ensure_equals( "sizes of lhs and rhs not equal", lhs.size(), rhs.size() );
    for (const auto& e : lhs) {
      auto r = rhs.find( e.first );
      ensure( "key in lhs not found in rhs", r != end(rhs) );
      auto v = r->second.template get< tag1 >();
      ensure_equals( "value in lhs not equal value in rhs",
                     e.second.template get< tag1 >(), v, precision );
    }
  }
};

//! Test group shortcuts
using TaggedTuple_group = test_group< TaggedTuple_common, MAX_TESTS_IN_GROUP >;
using TaggedTuple_object = TaggedTuple_group::object;

//! Define test group
static TaggedTuple_group TaggedTuple( "Base/TaggedTuple" );

//! Test definitions for group

//! Test const-ref accessor of TaggedTuple
template<> template<>
void TaggedTuple_object::test< 1 >() {
  set_test_name( "const-ref accessors" );

  // Define a struct holding a record with const-ref accessors
  struct A {
    explicit A( const record& r ) : m_rec( r ) {}
    const std::string& getName() const { return m_rec.get< name >(); }
    const int& getAge() const { return m_rec.get< age >(); }
    const std::string& getEmail() const { return m_rec.get< email >(); }
    const record m_rec;
  };

  // Use const-ref accessors to read out the initialized data
  A a( tup );
  ensure_equals( "const-ref accessor to std::string", a.getName(), "Bob" );
  ensure_equals( "const-ref accessor to int", a.getAge(), 32 );
  ensure_equals( "const-ref accessor to std::string",
                 a.getEmail(), "bob@bob.bob" );
}

//! Test non-const-ref accessors of TaggedTuple
template<> template<>
void TaggedTuple_object::test< 2 >() {
  set_test_name( "non-const-ref accessors" );

  // Use (non-const) ref accessors to read out the initialized data
  ensure_equals( "non-const-ref accessor to std::string",
                 tup.get< name >(), "Bob" );
  ensure_equals( "non-const-ref accessor to int",
                 tup.get< age >(), 32 );
  ensure_equals( "non-const-ref accessor to std::string",
                 tup.get< email >(), "bob@bob.bob" );
}

//! Test set(const char*) with const rvalue argument of TaggedTuple
template<> template<>
void TaggedTuple_object::test< 3 >() {
  set_test_name( "get(const char*) - const rvalue arg" );

  record t{{ "Bob", 32, "bob@bob.bob" }};
  t.get< name >() = "Alice";     // const rvalue
  ensure_equals( "get() after set(const char*)", t.get< name >(), "Alice" );
}

//! Test set(std::string) with non-const lvalue argument of TaggedTuple
template<> template<>
void TaggedTuple_object::test< 4 >() {
  set_test_name( "get(std::string) - non-const lvalue arg" );

  record t{{ "Bob", 32, "bob@bob.bob" }};
  std::string n( "Alice" );
  t.get< name >() = n;           // non-const lvalue
  ensure_equals( "get() after set(std::string)", t.get< name >(), "Alice" );
  ensure_equals( "original source kept intact", n, "Alice" );
}

//! Test set(std::string) with const lvalue argument of TaggedTuple
template<> template<>
void TaggedTuple_object::test< 5 >() {
  set_test_name( "get(const std::string) - const lvalue" );

  record t{{ "Bob", 32, "bob@bob.bob" }};
  const std::string n( "Alice" );
  t.get< name >() = n;           // const lvalue
  ensure_equals( "get() after set(std::string)", t.get< name >(), "Alice" );
  ensure_equals( "original source kept intact", n, "Alice" );
}

//! Test set(std::string) with rvalue argument of TaggedTuple
template<> template<>
void TaggedTuple_object::test< 6 >() {
  set_test_name( "get(std::string&&) - rvalue ref arg" );

  record t{{ "Bob", 32, "bob@bob.bob" }};
  std::string n( "Alice" );
  t.get< name >() = std::move(n);           // rvalue reference
  ensure_equals( "get() after set(std::string)", t.get< name >(), "Alice" );
  // n here should still be in a valid but unspecified state, so we try to use
  // it, if that's not the case, the constructor or the copy assignment throws.
  // Also suppress cppcheck warning on accessing a moved-from variable, because
  // here we are testing if the moved-from variable, n, is still in a valid
  // state after the move and wether if equating n with k really zeroes k out.
  std::string k( "abc" );
  // cppcheck-suppress accessMoved
  k = n;
  ensure_equals( "original source in valid but unspecified state", k, n );
}

//! Test size of TaggedTuple
template<> template<>
void TaggedTuple_object::test< 7 >() {
  set_test_name( "TaggedTuple::size()" );
  static_assert( record::size() == 3, "Size of tuple incorrect" );
  ensure_equals( "TaggedTuple::size() incorrect", record().size(), 3UL );
}

//! Test set(), const-ref get() at three levels
template<> template<>
void TaggedTuple_object::test< 8 >() {
  set_test_name( "set(), const-ref get() at three depths" );

  control c;
  c.get< tag1 >() = "blah1";
  c.get< tag3, tag1 >() ="blah2";
  c.get< tag4, tag3, tag1 >() = "blah3";

  ensure_equals( "get() 1st level", c.get< tag1 >(), "blah1" );
  ensure_equals( "get() 2nd level", c.get< tag3, tag1 >(), "blah2" );
  ensure_equals( "get() 3rd level", c.get< tag4, tag3, tag1 >(), "blah3" );
}

//! Test set(), rvalue get() at three levels
template<> template<>
void TaggedTuple_object::test< 9 >() {
  set_test_name( "set(), rvalue get() at three depths" );

  control c;
  c.get< tag1 >() = "blah1";
  c.get< tag3, tag1 >() = "blah2";
  c.get< tag4, tag3, tag1 >() = "blah3";

  ensure_equals( "get() 1st level", c.get< tag1 >(), "blah1" );
  ensure_equals( "get() 2nd level", c.get< tag3, tag1 >(), "blah2" );
  ensure_equals( "get() 3rd level", c.get< tag4, tag3, tag1 >(), "blah3" );
}

//! Test push_back() at three levels
template<> template<>
void TaggedTuple_object::test< 11 >() {
  set_test_name( "push_back() at three depths" );

  control c;
  c.get< tag5 >().push_back( 1 );
  c.get< tag5 >().push_back( 1 );
  c.get< tag3, tag5 >().push_back( 2 );
  c.get< tag3, tag5 >().push_back( 2 );
  c.get< tag4, tag3, tag5 >().push_back( 3 );
  c.get< tag4, tag3, tag5 >().push_back( 3 );

  ensure_equals( "vector size at 1st level", c.get< tag5 >().size(), 2UL );
  ensure_equals( "vector size at 2nd level",
                 c.get< tag3, tag5 >().size(), 2UL );
  ensure_equals( "vector size at 3rd level",
                 c.get< tag4, tag3, tag5 >().size(), 2UL );

  ensure( "vector elements incorrect at 1st level",
          c.get< tag5 >() == std::vector< int >{ 1, 1 } );
  ensure( "vector elements incorrect at 2nd level",
          c.get< tag3, tag5 >() == std::vector< int >{ 2, 2 } );
  ensure( "vector elements incorrect at 3rd level",
          c.get< tag4, tag3, tag5 >() == std::vector< int >{ 3, 3 } );
}

//! Test push_back_back() at three levels
template<> template<>
void TaggedTuple_object::test< 12 >() {
  set_test_name( "push_back_back() at three depths" );

  control c;
  c.get< tag6 >().push_back( {} );  // create an outer vector element
  c.get< tag6 >().back().push_back( 1 );     // push to inner vector
  c.get< tag6 >().back().push_back( 1 );
  c.get< tag3, tag6 >().push_back( {} );
  c.get< tag3, tag6 >().back().push_back( 2 );
  c.get< tag3, tag6 >().back().push_back( 2 );
  c.get< tag4, tag3, tag6 >().push_back( {} );
  c.get< tag4, tag3, tag6 >().back().push_back( 3 );
  c.get< tag4, tag3, tag6 >().back().push_back( 3 );

  ensure_equals( "vector size at 1st level",
                 c.get< tag6 >().back().size(), 2UL );
  ensure_equals( "vector size at 2nd level",
                 c.get< tag3, tag6 >().back().size(), 2UL );
  ensure_equals( "vector size at 3rd level",
                 c.get< tag4, tag3, tag6 >().back().size(), 2UL );

  ensure( "vector elements incorrect at 1st level",
          c.get< tag6 >().back() == std::vector< int >{ 1, 1 } );
  ensure( "vector elements incorrect at 2nd level",
          c.get< tag3, tag6 >().back() == std::vector< int >{ 2, 2 } );
  ensure( "vector elements incorrect at 3rd level",
          c.get< tag4, tag3, tag6 >().back() == std::vector< int >{ 3, 3 } );
}

} // tut::

#endif  // DOXYGEN_GENERATING_OUTPUT