File tree 2 files changed +27
-1
lines changed
src/core/regex/include/sourcemeta/core
2 files changed +27
-1
lines changed Original file line number Diff line number Diff line change 27
27
#include < variant> // std::variant
28
28
29
29
// / @defgroup regex Regex
30
- // / @brief A regex ECMA implementation for JSON Schema
30
+ // / @brief An opinionated regex ECMA 262 implementation for JSON Schema
31
31
// /
32
32
// / This functionality is included as follows:
33
33
// /
@@ -95,6 +95,10 @@ auto to_regex(const T &pattern) -> std::optional<Regex<T>> {
95
95
if (pattern == " .*" || pattern == " ^.*$" || pattern == " ^(.*)$" ||
96
96
pattern == " (.*)" || pattern == " [\\ s\\ S]*" || pattern == " ^[\\ s\\ S]*$" ) {
97
97
return RegexTypeNoop{};
98
+
99
+ // Note that the JSON Schema specification does not impose the use of any
100
+ // regular expression flag. Given popular adoption, we assume `.` matches
101
+ // new line characters (as in the `DOTALL`) option
98
102
} else if (pattern == " .+" || pattern == " ^.+$" || pattern == " ^(.+)$" ||
99
103
pattern == " ." ) {
100
104
return RegexTypeNonEmpty{};
@@ -125,6 +129,9 @@ auto to_regex(const T &pattern) -> std::optional<Regex<T>> {
125
129
// treated as non-marking sub-expressions (?:expr)
126
130
boost::regex::nosubs |
127
131
132
+ // Make the `.` character class match new lines
133
+ boost::regex::mod_s |
134
+
128
135
// Instructs the regular expression engine to make matching faster,
129
136
// with the potential cost of making construction slower
130
137
boost::regex::optimize};
Original file line number Diff line number Diff line change @@ -93,6 +93,25 @@ TEST(Regex_matches, match_true_14) {
93
93
" @namespace/mypackage" ));
94
94
}
95
95
96
+ TEST (Regex_matches, match_true_15) {
97
+ const auto regex{sourcemeta::core::to_regex<std::string>(" ." )};
98
+ EXPECT_TRUE (regex.has_value ());
99
+ EXPECT_TRUE (sourcemeta::core::matches<std::string>(regex.value (), " \n " ));
100
+ }
101
+
102
+ TEST (Regex_matches, match_true_16) {
103
+ const auto regex{sourcemeta::core::to_regex<std::string>(" ." )};
104
+ EXPECT_TRUE (regex.has_value ());
105
+ EXPECT_TRUE (sourcemeta::core::matches<std::string>(regex.value (), " \r " ));
106
+ }
107
+
108
+ TEST (Regex_matches, match_true_17) {
109
+ const auto regex{sourcemeta::core::to_regex<std::string>(" ^.+$" )};
110
+ EXPECT_TRUE (regex.has_value ());
111
+ EXPECT_TRUE (
112
+ sourcemeta::core::matches<std::string>(regex.value (), " foo\n bar\r " ));
113
+ }
114
+
96
115
TEST (Regex_matches, match_false_1) {
97
116
const auto regex{sourcemeta::core::to_regex<std::string>(" ^foo" )};
98
117
EXPECT_TRUE (regex.has_value ());
You can’t perform that action at this time.
0 commit comments