Add replacements for pbc enumerations
[gromacs.git] / src / gromacs / math / tests / paddedvector.cpp
blob26790e83f6ae36b923baac810c9f761099269ac3
1 /*
2 * This file is part of the GROMACS molecular simulation package.
4 * Copyright (c) 2018, by the GROMACS development team, led by
5 * Mark Abraham, David van der Spoel, Berk Hess, and Erik Lindahl,
6 * and including many others, as listed in the AUTHORS file in the
7 * top-level source directory and at http://www.gromacs.org.
9 * GROMACS is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU Lesser General Public License
11 * as published by the Free Software Foundation; either version 2.1
12 * of the License, or (at your option) any later version.
14 * GROMACS is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * Lesser General Public License for more details.
19 * You should have received a copy of the GNU Lesser General Public
20 * License along with GROMACS; if not, see
21 * http://www.gnu.org/licenses, or write to the Free Software Foundation,
22 * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
24 * If you want to redistribute modifications to GROMACS, please
25 * consider that scientific software is very special. Version
26 * control is crucial - bugs must be traceable. We will be happy to
27 * consider code for inclusion in the official distribution, but
28 * derived work must not be called official GROMACS. Details are found
29 * in the README & COPYING files - if they are missing, get the
30 * official version at http://www.gromacs.org.
32 * To help us fund GROMACS development, we humbly ask that you cite
33 * the research papers on the package. Check out http://www.gromacs.org.
35 /*! \internal \file
36 * \brief
37 * Tests implementation of gmx::PaddedVector
39 * In particular we need to check that the padding works, and that
40 * unpadded_end() is maintained correctly.
42 * \author Mark Abraham <mark.j.abraham@gmail.com>
43 * \ingroup module_math
45 #include "gmxpre.h"
47 #include "gromacs/math/paddedvector.h"
49 #include <memory>
50 #include <vector>
52 #include <gtest/gtest.h>
54 #include "gromacs/math/vec.h"
55 #include "gromacs/math/vectypes.h"
56 #include "gromacs/utility/alignedallocator.h"
57 #include "gromacs/utility/basedefinitions.h"
59 #include "gromacs/math/tests/testarrayrefs.h"
61 namespace gmx
63 namespace test
66 //! Typed test fixture
67 template <typename T>
68 class PaddedVectorTest : public ::testing::Test
70 public:
73 //! The types used in testing
74 using Implementations = ::testing::Types <
75 std::allocator<int32_t>,
76 std::allocator<float>,
77 std::allocator<double>,
78 std::allocator < BasicVector < float>>,
79 std::allocator < BasicVector < double>>,
80 AlignedAllocator<int32_t>,
81 AlignedAllocator<float>,
82 AlignedAllocator<double>,
83 AlignedAllocator < BasicVector < float>>,
84 AlignedAllocator < BasicVector<double>>
86 TYPED_TEST_CASE(PaddedVectorTest, Implementations);
88 TYPED_TEST(PaddedVectorTest, ConstructsResizesAndReserves)
90 using VectorType = PaddedVector<typename TypeParam::value_type, TypeParam>;
92 VectorType v;
93 fillInput(&v, 1);
95 EXPECT_EQ(v.size(), v.size());
96 EXPECT_EQ(v.paddedSize(), v.arrayRefWithPadding().size());
97 EXPECT_LE(v.size(), v.arrayRefWithPadding().size());
99 VectorType vReserved;
100 vReserved.reserveWithPadding(5);
101 fillInput(&vReserved, 1);
103 EXPECT_EQ(vReserved.size(), vReserved.size());
104 EXPECT_EQ(vReserved.paddedSize(), vReserved.arrayRefWithPadding().size());
105 EXPECT_LE(vReserved.size(), vReserved.arrayRefWithPadding().size());
107 EXPECT_LE(v.paddedSize(), vReserved.paddedSize());
110 TYPED_TEST(PaddedVectorTest, CanCopyAssign)
112 using VectorType = PaddedVector<typename TypeParam::value_type, TypeParam>;
114 VectorType v, w;
115 fillInput(&v, 1);
116 fillInput(&w, 2);
118 w = v;
119 compareViews(v.arrayRefWithPadding().unpaddedArrayRef(),
120 w.arrayRefWithPadding().unpaddedArrayRef());
121 compareViews(makeArrayRef(v), makeArrayRef(v));
124 TYPED_TEST(PaddedVectorTest, CanMoveAssign)
126 using VectorType = PaddedVector<typename TypeParam::value_type, TypeParam>;
128 VectorType v, w, x;
129 fillInput(&v, 1);
130 fillInput(&w, 2);
131 fillInput(&x, 1);
133 SCOPED_TRACE("Comparing padded views before move");
134 compareViews(v.arrayRefWithPadding().unpaddedArrayRef(),
135 x.arrayRefWithPadding().unpaddedArrayRef());
136 SCOPED_TRACE("Comparing unpadded views before move");
137 compareViews(makeArrayRef(v), makeArrayRef(x));
139 w = std::move(x);
141 SCOPED_TRACE("Comparing padded views");
142 compareViews(v.arrayRefWithPadding().unpaddedArrayRef(),
143 w.arrayRefWithPadding().unpaddedArrayRef());
144 SCOPED_TRACE("Comparing unpadded views");
145 compareViews(makeArrayRef(v), makeArrayRef(w));
148 TYPED_TEST(PaddedVectorTest, CanSwap)
150 using VectorType = PaddedVector<typename TypeParam::value_type, TypeParam>;
152 VectorType v, w, x;
153 fillInput(&v, 1);
154 fillInput(&w, 2);
155 fillInput(&x, 1);
157 std::swap(w, x);
158 compareViews(v.arrayRefWithPadding().unpaddedArrayRef(),
159 w.arrayRefWithPadding().unpaddedArrayRef());
160 compareViews(makeArrayRef(v), makeArrayRef(w));
163 } // namespace test
164 } // namespace gmx