Sort includes outside src/gromacs
[alexxy/gromacs.git] / src / testutils / mpi-printer.cpp
1 /*
2  * This file is part of the GROMACS molecular simulation package.
3  *
4  * Copyright (c) 2013,2014, 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.
8  *
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.
13  *
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.
18  *
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.
23  *
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.
31  *
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.
34  */
35 #include "gmxpre.h"
36
37 #include "mpi-printer.h"
38
39 #include "config.h"
40
41 #include "gromacs/utility/gmxmpi.h"
42
43 #ifdef GMX_LIB_MPI
44
45 #include <sstream>
46 #include <vector>
47
48 #include <boost/scoped_ptr.hpp>
49 #include <gtest/gtest.h>
50
51 #include "gromacs/utility/common.h"
52 #include "gromacs/utility/gmxassert.h"
53
54 #define FORWARD_TO_DEFAULT_PRINTER1(MethodName, Param1Type) \
55     virtual void MethodName(const Param1Type &param1) { \
56         if (rank_ == 0) { \
57             defaultPrinter_->MethodName(param1); \
58         } \
59     }
60 #define FORWARD_TO_DEFAULT_PRINTER2(MethodName, Param1Type, Param2Type) \
61     virtual void MethodName(const Param1Type &param1, Param2Type param2) { \
62         if (rank_ == 0) { \
63             defaultPrinter_->MethodName(param1, param2); \
64         } \
65     }
66
67 namespace
68 {
69
70 class MPIEventForward : public ::testing::TestEventListener
71 {
72     public:
73         MPIEventForward(TestEventListener* defaultPrinter, int rank, int size)
74             : defaultPrinter_(defaultPrinter), rank_(rank), size_(size)
75         {
76         }
77
78         FORWARD_TO_DEFAULT_PRINTER1(OnTestProgramStart, ::testing::UnitTest);
79         FORWARD_TO_DEFAULT_PRINTER2(OnTestIterationStart, ::testing::UnitTest, int);
80         FORWARD_TO_DEFAULT_PRINTER1(OnEnvironmentsSetUpStart, ::testing::UnitTest);
81         FORWARD_TO_DEFAULT_PRINTER1(OnEnvironmentsSetUpEnd, ::testing::UnitTest);
82         FORWARD_TO_DEFAULT_PRINTER1(OnTestCaseStart, ::testing::TestCase);
83         FORWARD_TO_DEFAULT_PRINTER1(OnTestStart, ::testing::TestInfo);
84         virtual void OnTestPartResult(const ::testing::TestPartResult & /*result*/)
85         {
86             // Do nothing; all printing is done in OnTestEnd().
87         }
88         virtual void OnTestEnd(const ::testing::TestInfo &test_info);
89         FORWARD_TO_DEFAULT_PRINTER1(OnTestCaseEnd, ::testing::TestCase);
90         FORWARD_TO_DEFAULT_PRINTER1(OnEnvironmentsTearDownStart, ::testing::UnitTest);
91         FORWARD_TO_DEFAULT_PRINTER1(OnEnvironmentsTearDownEnd, ::testing::UnitTest);
92         FORWARD_TO_DEFAULT_PRINTER2(OnTestIterationEnd, ::testing::UnitTest, int);
93         FORWARD_TO_DEFAULT_PRINTER1(OnTestProgramEnd, ::testing::UnitTest);
94
95     private:
96         boost::scoped_ptr<TestEventListener> defaultPrinter_;
97         int                                  rank_;
98         int                                  size_;
99
100         GMX_DISALLOW_COPY_AND_ASSIGN(MPIEventForward);
101 };
102
103 void MPIEventForward::OnTestEnd(const ::testing::TestInfo &test_info)
104 {
105     // Serialize printing test results to stdout in rank order by
106     // passing a flag in order from ranks 0 .. (n-1). Rank 0 does not
107     // need to recieve, rank n-1 does not need to send.
108     int timeToPrint = (0 == rank_);
109     if (!timeToPrint)
110     {
111         MPI_Recv(&timeToPrint, 1, MPI_INT, rank_ - 1, 0, MPI_COMM_WORLD, MPI_STATUS_IGNORE);
112     }
113
114     // Now this rank can print
115     int localPassed                     = true;
116     const ::testing::TestResult *result = test_info.result();
117     if (result->Failed())
118     {
119         // TODO: This sometimes races with the defaultPrinter_, but
120         // unsure why
121         printf("Test failures from rank %d:\n", rank_);
122         for (int i = 0; i < result->total_part_count(); ++i)
123         {
124             /* TODO: A future implementation might forward the
125                contents / output of OnTestPartResult to the master
126                rank to handle all the output there. Currently, the
127                output of the expected and actual behaviour only occurs
128                if the failing ranks include rank 0, and is only
129                indicative of rank 0. */
130             defaultPrinter_->OnTestPartResult(result->GetTestPartResult(i));
131         }
132         localPassed = false;
133     }
134
135     // Pass on the printing token to the next rank
136     if (size_ != rank_ + 1)
137     {
138         MPI_Send(&timeToPrint, 1, MPI_INT, rank_ + 1, 0, MPI_COMM_WORLD);
139     }
140
141     std::vector<int> bDidRankPass(size_);
142     MPI_Gather(&localPassed, 1, MPI_INT, &(bDidRankPass[0]), 1, MPI_INT, 0, MPI_COMM_WORLD);
143
144     if (rank_ == 0)
145     {
146         std::stringstream failingRanks;
147         bool              allPassed = true;
148
149         for (size_t i = 0; i != bDidRankPass.size(); ++i)
150         {
151             if (!bDidRankPass[i])
152             {
153                 if (!allPassed)
154                 {
155                     failingRanks << ",";
156                 }
157                 allPassed = false;
158                 failingRanks << i;
159             }
160         }
161
162         defaultPrinter_->OnTestEnd(test_info);
163
164         if (!allPassed)
165         {
166             ::testing::Test::RecordProperty("AllFailingRanks", failingRanks.str().c_str());
167             // This marks the current test failed, and modifies test_info
168             // behind the scenes, so the default printer sees the test as
169             // failed even if localPassed is true.
170             ADD_FAILURE() <<
171             "See AllFailingRanks for the rank IDs that failed. Only if "
172             "rank 0 was among those that failed, will there be some "
173             "accompanying information about the failure, and it will "
174             "pertain only to that rank. Run this test manually to get "
175             "more information.";
176         }
177     }
178 }
179
180 } // namespace
181
182 #endif
183
184 //! \cond internal
185 void gmx::test::initMPIOutput()
186 {
187 #ifdef GMX_LIB_MPI
188     int size, rank;
189
190     MPI_Comm_size(MPI_COMM_WORLD, &size);
191     if (size == 1)
192     {
193         return;
194     }
195     MPI_Comm_rank(MPI_COMM_WORLD, &rank);
196     ::testing::UnitTest           &unit_test  = *::testing::UnitTest::GetInstance();
197     ::testing::TestEventListeners &listeners  = unit_test.listeners();
198     ::testing::TestEventListener  *defprinter =
199         listeners.Release(listeners.default_result_printer());
200     listeners.Append(new MPIEventForward(defprinter, rank, size));
201     if (0 != rank)
202     {
203         /* Permit only rank 0 to write to the single GTest XML file,
204            by removing the generator on the other ranks. This
205            suppresses races when writing that file. */
206         ::testing::TestEventListener *oldlistener = listeners.Release(listeners.default_xml_generator());
207         delete oldlistener;
208     }
209 #endif
210 }
211 //! \endcond