MolSSI Integral Reference Project
test_common.hpp
Go to the documentation of this file.
1 /*! \file
2  *
3  * \brief Miscellaneous testing functions
4  */
5 
6 #pragma once
7 
8 #include <string>
9 #include <vector>
10 #include <istream>
11 #include <limits>
12 
13 namespace mirp {
14 
15 //! \brief Maximum length of a line
16 static const std::streamsize max_length = std::numeric_limits<std::streamsize>::max();
17 
18 
19 /*! \brief Print the results of a test
20  *
21  * \param [in] nfailed Number of failed tests
22  * \param [in] ntests Total number of tests run
23  */
24 void print_results(unsigned long nfailed, unsigned long ntests);
25 
26 
27 /*! \brief Convert a character representing an angular momentum to an integer
28  *
29  * Converts s,p,d,f,... to 0,1,2,3,...
30  *
31  * The character is case insensitive
32  *
33  * \throw std::runtime_error if the character cannot be converted to an integer
34  */
35 int amchar_to_int(char am);
36 
37 
38 /*! \brief Convert a string representing an element to its atomic Z number
39  *
40  * Converts H to 1, He to 2, etc
41  *
42  * The element string is case insensitive
43  *
44  * \throw std::runtime_error if the character cannot be converted to an integer
45  */
46 int element_to_z(const std::string & element);
47 
48 
49 /*! \brief Converts a string to lower case, returning a copy */
50 std::string str_tolower(const std::string & s);
51 
52 
53 /*! \brief Trims spaces and tabs from both ends of a string, returning a copy */
54 std::string trim(const std::string & s);
55 
56 
57 /*! \brief Splits a string into components
58  *
59  * The components must be separated by the character \p sep
60  */
61 std::vector<std::string> split(const std::string & s, char sep = ' ');
62 
63 
64 /*! \brief Advances the stream past any comment and blank lines
65  *
66  * The stream will be advanced past the lines that were read.
67  *
68  * If an EOF is encountered, false is returned
69  *
70  * \param [in] fs The stream to read from
71  * \param [in] commentchar Lines beginning with the character will be skipped
72  * \return True if there is additional data in the file, false on EOF
73  */
74 bool file_skip(std::istream & fs, char commentchar);
75 
76 } // close namespace mirp
77 
bool file_skip(std::istream &fs, char commentchar)
Advances the stream past any comment and blank lines.
Definition: test_common.cpp:150
void print_results(unsigned long nfailed, unsigned long ntests)
Print the results of a test.
Definition: test_common.cpp:64
std::string str_tolower(const std::string &s)
Converts a string to lower case, returning a copy.
Definition: test_common.cpp:103
static const std::streamsize max_length
Maximum length of a line.
Definition: test_common.hpp:16
int element_to_z(const std::string &element)
Convert a string representing an element to its atomic Z number.
Definition: test_common.cpp:89
int amchar_to_int(char am)
Convert a character representing an angular momentum to an integer.
Definition: test_common.cpp:74
std::string trim(const std::string &s)
Trims spaces and tabs from both ends of a string, returning a copy.
Definition: test_common.cpp:112
std::vector< std::string > split(const std::string &s, char sep)
Splits a string into components.
Definition: test_common.cpp:126