aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorzhanyong.wan <zhanyong.wan@8415998a-534a-0410-bf83-d39667b30386>2010-06-08 22:53:57 +0000
committerzhanyong.wan <zhanyong.wan@8415998a-534a-0410-bf83-d39667b30386>2010-06-08 22:53:57 +0000
commitb4140808f98ff09c43ca1ddaa8ff13bc47cd0089 (patch)
tree1d8698fe117e5939412cc25209be3cdc7fa70929 /src
parent0a781df32a66029c4703d647cfd447e9467a7400 (diff)
downloadgoogletest-b4140808f98ff09c43ca1ddaa8ff13bc47cd0089.tar.gz
googletest-b4140808f98ff09c43ca1ddaa8ff13bc47cd0089.tar.bz2
googletest-b4140808f98ff09c43ca1ddaa8ff13bc47cd0089.zip
Replaces Python-style interpolation with arbitrary C++ string expression in MATCHER* descriptions.
Diffstat (limited to 'src')
-rw-r--r--src/gmock-matchers.cc111
1 files changed, 11 insertions, 100 deletions
diff --git a/src/gmock-matchers.cc b/src/gmock-matchers.cc
index 0abca708..89007d9f 100644
--- a/src/gmock-matchers.cc
+++ b/src/gmock-matchers.cc
@@ -65,74 +65,6 @@ Matcher<internal::string>::Matcher(const char* s) {
namespace internal {
-// Utilities for validating and formatting description strings in the
-// MATCHER*() macros.
-
-// Returns the 0-based index of the given parameter in the
-// NULL-terminated parameter array; if the parameter is "*", returns
-// kTupleInterpolation; if it's not found in the list, returns
-// kInvalidInterpolation.
-int GetParamIndex(const char* param_names[], const string& param_name) {
- if (param_name == "*")
- return kTupleInterpolation;
-
- for (int i = 0; param_names[i] != NULL; i++) {
- if (param_name == param_names[i])
- return i;
- }
- return kInvalidInterpolation;
-}
-
-// Helper function used by ValidateMatcherDescription() to format
-// error messages.
-string FormatMatcherDescriptionSyntaxError(const char* description,
- const char* error_pos) {
- ::std::stringstream ss;
- ss << "Syntax error at index " << (error_pos - description)
- << " in matcher description \"" << description << "\": ";
- return ss.str();
-}
-
-// Parses a matcher description string and returns a vector of
-// interpolations that appear in the string; generates non-fatal
-// failures iff 'description' is an invalid matcher description.
-// 'param_names' is a NULL-terminated array of parameter names in the
-// order they appear in the MATCHER_P*() parameter list.
-Interpolations ValidateMatcherDescription(
- const char* param_names[], const char* description) {
- Interpolations interps;
- for (const char* p = description; *p != '\0';) {
- if (SkipPrefix("%%", &p)) {
- interps.push_back(Interpolation(p - 2, p, kPercentInterpolation));
- } else if (SkipPrefix("%(", &p)) {
- const char* const q = strstr(p, ")s");
- if (q == NULL) {
- // TODO(wan@google.com): change the source file location in
- // the failure to point to where the MATCHER*() macro is used.
- ADD_FAILURE() << FormatMatcherDescriptionSyntaxError(description, p - 2)
- << "an interpolation must end with \")s\", "
- << "but \"" << (p - 2) << "\" does not.";
- } else {
- const string param_name(p, q);
- const int param_index = GetParamIndex(param_names, param_name);
- if (param_index == kInvalidInterpolation) {
- ADD_FAILURE() << FormatMatcherDescriptionSyntaxError(description, p)
- << "\"" << param_name
- << "\" is an invalid parameter name.";
- } else {
- interps.push_back(Interpolation(p - 2, q + 2, param_index));
- p = q + 2;
- }
- }
- } else {
- EXPECT_NE(*p, '%') << FormatMatcherDescriptionSyntaxError(description, p)
- << "use \"%%\" instead of \"%\" to print \"%\".";
- ++p;
- }
- }
- return interps;
-}
-
// Joins a vector of strings as if they are fields of a tuple; returns
// the joined string.
string JoinAsTuple(const Strings& fields) {
@@ -152,38 +84,17 @@ string JoinAsTuple(const Strings& fields) {
}
}
-// Returns the actual matcher description, given the matcher name,
-// user-supplied description template string, interpolations in the
-// string, and the printed values of the matcher parameters.
-string FormatMatcherDescription(
- const char* matcher_name, const char* description,
- const Interpolations& interp, const Strings& param_values) {
- string result;
- if (*description == '\0') {
- // When the user supplies an empty description, we calculate one
- // from the matcher name.
- result = ConvertIdentifierNameToWords(matcher_name);
- if (param_values.size() >= 1)
- result += " " + JoinAsTuple(param_values);
- } else {
- // The end position of the last interpolation.
- const char* last_interp_end = description;
- for (size_t i = 0; i < interp.size(); i++) {
- result.append(last_interp_end, interp[i].start_pos);
- const int param_index = interp[i].param_index;
- if (param_index == kTupleInterpolation) {
- result += JoinAsTuple(param_values);
- } else if (param_index == kPercentInterpolation) {
- result += '%';
- } else if (param_index != kInvalidInterpolation) {
- result += param_values[param_index];
- }
- last_interp_end = interp[i].end_pos;
- }
- result += last_interp_end;
- }
-
- return result;
+// Returns the description for a matcher defined using the MATCHER*()
+// macro where the user-supplied description string is "", if
+// 'negation' is false; otherwise returns the description of the
+// negation of the matcher. 'param_values' contains a list of strings
+// that are the print-out of the matcher's parameters.
+string FormatMatcherDescription(bool negation, const char* matcher_name,
+ const Strings& param_values) {
+ string result = ConvertIdentifierNameToWords(matcher_name);
+ if (param_values.size() >= 1)
+ result += " " + JoinAsTuple(param_values);
+ return negation ? "not (" + result + ")" : result;
}
} // namespace internal