Update instructions in containers.rst
[gromacs.git] / src / gromacs / commandline / tests / cmdlineprogramcontext.cpp
blob5c12b2bdf4cebf473afa90a24d4172483141bfbc
1 /*
2 * This file is part of the GROMACS molecular simulation package.
4 * Copyright (c) 2013,2014,2015,2016,2017 by the GROMACS development team.
5 * Copyright (c) 2018,2019,2020, by the GROMACS development team, led by
6 * Mark Abraham, David van der Spoel, Berk Hess, and Erik Lindahl,
7 * and including many others, as listed in the AUTHORS file in the
8 * top-level source directory and at http://www.gromacs.org.
10 * GROMACS is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU Lesser General Public License
12 * as published by the Free Software Foundation; either version 2.1
13 * of the License, or (at your option) any later version.
15 * GROMACS is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 * Lesser General Public License for more details.
20 * You should have received a copy of the GNU Lesser General Public
21 * License along with GROMACS; if not, see
22 * http://www.gnu.org/licenses, or write to the Free Software Foundation,
23 * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
25 * If you want to redistribute modifications to GROMACS, please
26 * consider that scientific software is very special. Version
27 * control is crucial - bugs must be traceable. We will be happy to
28 * consider code for inclusion in the official distribution, but
29 * derived work must not be called official GROMACS. Details are found
30 * in the README & COPYING files - if they are missing, get the
31 * official version at http://www.gromacs.org.
33 * To help us fund GROMACS development, we humbly ask that you cite
34 * the research papers on the package. Check out http://www.gromacs.org.
36 /*! \internal \file
37 * \brief
38 * Tests for gmx::CommandLineProgramContext.
40 * \author Teemu Murtola <teemu.murtola@gmail.com>
41 * \ingroup module_commandline
43 #include "gmxpre.h"
45 #include "gromacs/commandline/cmdlineprogramcontext.h"
47 #include "config.h"
49 #include <memory>
50 #include <string>
51 #include <vector>
53 #include <gtest/gtest.h>
55 #include "buildinfo.h"
56 #include "gromacs/utility/classhelpers.h"
57 #include "gromacs/utility/path.h"
59 #include "testutils/cmdlinetest.h"
61 using gmx::Path;
63 #if GMX_NATIVE_WINDOWS || GMX_CYGWIN
64 //! Extension for executable files on the platform.
65 # define EXECUTABLE_EXTENSION ".exe"
66 #else
67 //! Extension for executable files on the platform.
68 # define EXECUTABLE_EXTENSION ""
69 //! Defined if the platform supports symlinks and those can be tested.
70 # define TEST_SYMLINKS
71 #endif
73 namespace
76 class TestExecutableEnvironment : public gmx::IExecutableEnvironment
78 public:
79 TestExecutableEnvironment() :
80 workingDirectory_(CMAKE_BINARY_DIR "/src/gromacs/commandline/tests/test-bin")
84 std::string getWorkingDirectory() const override { return workingDirectory_; }
85 std::vector<std::string> getExecutablePaths() const override { return path_; }
87 std::string workingDirectory_;
88 std::vector<std::string> path_;
90 GMX_DISALLOW_COPY_AND_ASSIGN(TestExecutableEnvironment);
93 //! Shorthand for a smart pointer to TestExecutableEnvironment.
94 typedef std::unique_ptr<TestExecutableEnvironment> TestExecutableEnvironmentPointer;
96 class CommandLineProgramContextTest : public ::testing::Test
98 public:
99 CommandLineProgramContextTest() : env_(new TestExecutableEnvironment())
101 expectedExecutable_ = Path::normalize(
102 Path::join(env_->getWorkingDirectory(), "bin/test-exe" EXECUTABLE_EXTENSION));
105 void testBinaryPathSearch(const char* argv0)
107 ASSERT_TRUE(env_.get() != nullptr);
108 gmx::CommandLineProgramContext info(1, &argv0, move(env_));
109 EXPECT_EQ(expectedExecutable_, info.fullBinaryPath());
111 void testBinaryPathSearch(const std::string& argv0) { testBinaryPathSearch(argv0.c_str()); }
113 std::string expectedExecutable_;
114 TestExecutableEnvironmentPointer env_;
117 TEST_F(CommandLineProgramContextTest, FindsBinaryWithAbsolutePath)
119 testBinaryPathSearch(Path::join(env_->getWorkingDirectory(), "bin/test-exe"));
122 TEST_F(CommandLineProgramContextTest, FindsBinaryWithRelativePath)
124 testBinaryPathSearch("bin/test-exe");
127 TEST_F(CommandLineProgramContextTest, FindsBinaryFromPath)
129 env_->path_.push_back(Path::join(env_->getWorkingDirectory(), "bin"));
130 testBinaryPathSearch("test-exe");
133 TEST_F(CommandLineProgramContextTest, FindsBinaryFromCurrentDirectory)
135 env_->workingDirectory_ = Path::join(env_->getWorkingDirectory(), "bin");
136 env_->path_.emplace_back("");
137 testBinaryPathSearch("test-exe");
140 #ifdef TEST_SYMLINKS
141 TEST_F(CommandLineProgramContextTest, FindsBinaryFromAbsoluteSymLink)
143 testBinaryPathSearch("bin/test-abs-link");
146 TEST_F(CommandLineProgramContextTest, FindsBinaryFromRelativeSymLink)
148 testBinaryPathSearch("bin/test-rel-link");
150 #endif
152 } // namespace