2014-05-16 08:23:31 +02:00
|
|
|
/*
|
|
|
|
* Created by Phil on 15/5/2013.
|
|
|
|
* Copyright 2014 Two Blue Cubes Ltd. All rights reserved.
|
|
|
|
*
|
|
|
|
* Distributed under the Boost Software License, Version 1.0. (See accompanying
|
|
|
|
* file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
|
|
|
*/
|
|
|
|
#ifndef TWOBLUECUBES_CATCH_TEST_SPEC_PARSER_HPP_INCLUDED
|
|
|
|
#define TWOBLUECUBES_CATCH_TEST_SPEC_PARSER_HPP_INCLUDED
|
|
|
|
|
2014-05-16 19:24:07 +02:00
|
|
|
#ifdef __clang__
|
|
|
|
#pragma clang diagnostic push
|
|
|
|
#pragma clang diagnostic ignored "-Wpadded"
|
|
|
|
#endif
|
|
|
|
|
2017-09-07 12:24:33 +02:00
|
|
|
#include "catch_test_spec.h"
|
2017-07-25 21:57:35 +02:00
|
|
|
#include "catch_string_manip.h"
|
2014-06-30 08:33:17 +02:00
|
|
|
#include "catch_interfaces_tag_alias_registry.h"
|
2014-05-16 08:23:31 +02:00
|
|
|
|
|
|
|
namespace Catch {
|
|
|
|
|
|
|
|
class TestSpecParser {
|
2017-01-11 17:24:00 +01:00
|
|
|
enum Mode{ None, Name, QuotedName, Tag, EscapedName };
|
2017-07-20 00:27:28 +02:00
|
|
|
Mode m_mode = None;
|
2019-09-14 11:38:47 +02:00
|
|
|
Mode lastMode = None;
|
2017-07-20 00:27:28 +02:00
|
|
|
bool m_exclusion = false;
|
2019-08-06 20:51:19 +02:00
|
|
|
std::size_t m_pos = 0;
|
2019-10-08 12:55:08 +02:00
|
|
|
std::size_t m_realPatternPos = 0;
|
2014-05-16 08:23:31 +02:00
|
|
|
std::string m_arg;
|
2019-08-06 20:51:19 +02:00
|
|
|
std::string m_substring;
|
|
|
|
std::string m_patternName;
|
2017-01-11 17:24:00 +01:00
|
|
|
std::vector<std::size_t> m_escapeChars;
|
2014-05-16 08:23:31 +02:00
|
|
|
TestSpec::Filter m_currentFilter;
|
2014-05-16 19:24:07 +02:00
|
|
|
TestSpec m_testSpec;
|
2017-07-20 00:27:28 +02:00
|
|
|
ITagAliasRegistry const* m_tagAliases = nullptr;
|
2014-05-16 08:23:31 +02:00
|
|
|
|
|
|
|
public:
|
2017-07-19 10:13:47 +02:00
|
|
|
TestSpecParser( ITagAliasRegistry const& tagAliases );
|
|
|
|
|
|
|
|
TestSpecParser& parse( std::string const& arg );
|
|
|
|
TestSpec testSpec();
|
2014-06-30 08:33:17 +02:00
|
|
|
|
2014-05-16 08:23:31 +02:00
|
|
|
private:
|
2019-10-19 15:50:46 +02:00
|
|
|
bool visitChar( char c );
|
2019-08-06 20:51:19 +02:00
|
|
|
void startNewMode( Mode mode );
|
|
|
|
bool processNoneChar( char c );
|
|
|
|
void processNameChar( char c );
|
|
|
|
bool processOtherChar( char c );
|
|
|
|
void endMode();
|
2017-07-19 10:13:47 +02:00
|
|
|
void escape();
|
2019-08-06 20:51:19 +02:00
|
|
|
bool isControlChar( char c ) const;
|
2019-09-14 11:38:47 +02:00
|
|
|
void saveLastMode();
|
|
|
|
void revertBackToLastMode();
|
2019-10-19 15:50:46 +02:00
|
|
|
void addFilter();
|
|
|
|
bool separate();
|
2019-11-05 23:28:47 +01:00
|
|
|
|
|
|
|
// Handles common preprocessing of the pattern for name/tag patterns
|
|
|
|
std::string preprocessPattern();
|
|
|
|
// Adds the current pattern as a test name
|
|
|
|
void addNamePattern();
|
|
|
|
// Adds the current pattern as a tag
|
|
|
|
void addTagPattern();
|
|
|
|
|
2019-10-19 15:50:46 +02:00
|
|
|
inline void addCharToPattern(char c) {
|
|
|
|
m_substring += c;
|
|
|
|
m_patternName += c;
|
|
|
|
m_realPatternPos++;
|
|
|
|
}
|
2019-11-05 23:28:47 +01:00
|
|
|
|
2014-05-16 08:23:31 +02:00
|
|
|
};
|
2017-07-19 10:13:47 +02:00
|
|
|
TestSpec parseTestSpec( std::string const& arg );
|
2014-05-16 08:23:31 +02:00
|
|
|
|
|
|
|
} // namespace Catch
|
|
|
|
|
2014-05-16 19:24:07 +02:00
|
|
|
#ifdef __clang__
|
|
|
|
#pragma clang diagnostic pop
|
|
|
|
#endif
|
|
|
|
|
2019-09-14 11:38:47 +02:00
|
|
|
#endif // TWOBLUECUBES_CATCH_TEST_SPEC_PARSER_HPP_INCLUDED
|