Add shared test fixture for string tests.
[alexxy/gromacs.git] / src / testutils / stringtest.cpp
1 /*
2  *
3  *                This source code is part of
4  *
5  *                 G   R   O   M   A   C   S
6  *
7  *          GROningen MAchine for Chemical Simulations
8  *
9  * Written by David van der Spoel, Erik Lindahl, Berk Hess, and others.
10  * Copyright (c) 1991-2000, University of Groningen, The Netherlands.
11  * Copyright (c) 2001-2009, The GROMACS development team,
12  * check out http://www.gromacs.org for more information.
13
14  * This program is free software; you can redistribute it and/or
15  * modify it under the terms of the GNU General Public License
16  * as published by the Free Software Foundation; either version 2
17  * of the License, or (at your option) any later version.
18  *
19  * If you want to redistribute modifications, please consider that
20  * scientific software is very special. Version control is crucial -
21  * bugs must be traceable. We will be happy to consider code for
22  * inclusion in the official distribution, but derived work must not
23  * be called official GROMACS. Details are found in the README & COPYING
24  * files - if they are missing, get the official version at www.gromacs.org.
25  *
26  * To help us fund GROMACS development, we humbly ask that you cite
27  * the papers on the package - you can find them in the top README file.
28  *
29  * For more info, check our website at http://www.gromacs.org
30  */
31 /*! \internal \file
32  * \brief
33  * Implements gmx::test::StringTestBase.
34  *
35  * \author Teemu Murtola <teemu.murtola@cbr.su.se>
36  * \ingroup module_testutils
37  */
38 #include "testutils/stringtest.h"
39
40 #include "gromacs/options/basicoptions.h"
41 #include "gromacs/options/options.h"
42 #include "gromacs/utility/file.h"
43 #include "testutils/testoptions.h"
44
45 namespace gmx
46 {
47 namespace test
48 {
49
50 bool StringTestBase::s_bWriteToStdOut = false;
51
52 void StringTestBase::SetUpTestCase()
53 {
54     Options options(NULL, NULL);
55     options.addOption(BooleanOption("stdout").store(&s_bWriteToStdOut));
56     parseTestOptions(&options);
57 }
58
59 StringTestBase::StringTestBase()
60 {
61 }
62
63 StringTestBase::~StringTestBase()
64 {
65 }
66
67 TestReferenceChecker &
68 StringTestBase::checker()
69 {
70     if (checker_.get() == NULL)
71     {
72         checker_.reset(new TestReferenceChecker(data_.rootChecker()));
73     }
74     return *checker_;
75 }
76
77 void
78 StringTestBase::checkText(const std::string &text, const char *id)
79 {
80     if (s_bWriteToStdOut)
81     {
82         printf("%s:\n", id);
83         printf("%s[END]\n", text.c_str());
84     }
85     else
86     {
87         checker().checkStringBlock(text, id);
88     }
89 }
90
91 void
92 StringTestBase::checkFileContents(const std::string &filename, const char *id)
93 {
94     std::string text = File::readToString(filename);
95     checkText(text, id);
96 }
97
98 } // namespace test
99 } // namespace gmx