OpenFPM  5.2.0
Project that contain the implementation of distributed structures
RawReader_unit_tests.hpp
1 /*
2  * RawReader_unit_tests.hpp
3  *
4  * Created on: April 16, 2016
5  * Author: i-bird
6  */
7 
8 #ifndef OPENFPM_IO_RAW_READER_UNIT_TESTS_HPP_
9 #define OPENFPM_IO_RAW_READER_UNIT_TESTS_HPP_
10 
11 #include "RawReader.hpp"
12 
13 BOOST_AUTO_TEST_SUITE( raw_reader_unit_test )
14 
15 
16 BOOST_AUTO_TEST_CASE( raw_reader_read_test )
17 {
18  Vcluster<> & v_cl = create_vcluster();
19 
20  if (v_cl.getProcessUnitID() != 0)
21  return;
22 
23  std::string c2 = std::string("test_data/raw_read_sv_test.bin");
24 
26 
28 
29 #ifndef SE_CLASS3
30 
31  rr.read(c2,read_bin_test,FORTRAN_STYLE | STRUCT_OF_ARRAY,12);
32 
33  auto it = read_bin_test.getIterator();
34 
35  while (it.isNext())
36  {
37  auto key = it.get();
38 
39  BOOST_REQUIRE_EQUAL(read_bin_test.template get<0>(key),1.5f);
40 
41  BOOST_REQUIRE_EQUAL(read_bin_test.template get<1>(key)[0],1.5f);
42  BOOST_REQUIRE_EQUAL(read_bin_test.template get<1>(key)[1],2.5f);
43  BOOST_REQUIRE_EQUAL(read_bin_test.template get<1>(key)[2],3.5f);
44 
45  ++it;
46  }
47 
48 #endif
49 }
50 
51 
52 
53 BOOST_AUTO_TEST_SUITE_END()
54 
55 #endif /* OPENFPM_DATA_SRC_PLOT_PLOT_UNIT_TESTS_HPP_ */
bool read(std::string file, grid_cpu< dim, T > &gr, size_t opt=0, size_t skip=0)
Read a raw grid.
Definition: RawReader.hpp:125
size_t getProcessUnitID()
Get the process unit id.
Implementation of VCluster class.
Definition: VCluster.hpp:59