/testlibs/gmock/src/gmock-matchers.cc

https://github.com/deltaforge/nebu-common-cpp · C++ · 101 lines · 42 code · 12 blank · 47 comment · 3 complexity · 0acea1a90a5ad1849062d610a9887d37 MD5 · raw file

  1. // Copyright 2007, Google Inc.
  2. // All rights reserved.
  3. //
  4. // Redistribution and use in source and binary forms, with or without
  5. // modification, are permitted provided that the following conditions are
  6. // met:
  7. //
  8. // * Redistributions of source code must retain the above copyright
  9. // notice, this list of conditions and the following disclaimer.
  10. // * Redistributions in binary form must reproduce the above
  11. // copyright notice, this list of conditions and the following disclaimer
  12. // in the documentation and/or other materials provided with the
  13. // distribution.
  14. // * Neither the name of Google Inc. nor the names of its
  15. // contributors may be used to endorse or promote products derived from
  16. // this software without specific prior written permission.
  17. //
  18. // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  19. // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  20. // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  21. // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  22. // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  23. // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  24. // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  25. // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  26. // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  27. // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  28. // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  29. //
  30. // Author: wan@google.com (Zhanyong Wan)
  31. // Google Mock - a framework for writing C++ mock classes.
  32. //
  33. // This file implements Matcher<const string&>, Matcher<string>, and
  34. // utilities for defining matchers.
  35. #include "gmock/gmock-matchers.h"
  36. #include "gmock/gmock-generated-matchers.h"
  37. #include <string.h>
  38. #include <sstream>
  39. #include <string>
  40. namespace testing {
  41. // Constructs a matcher that matches a const string& whose value is
  42. // equal to s.
  43. Matcher<const internal::string&>::Matcher(const internal::string& s) {
  44. *this = Eq(s);
  45. }
  46. // Constructs a matcher that matches a const string& whose value is
  47. // equal to s.
  48. Matcher<const internal::string&>::Matcher(const char* s) {
  49. *this = Eq(internal::string(s));
  50. }
  51. // Constructs a matcher that matches a string whose value is equal to s.
  52. Matcher<internal::string>::Matcher(const internal::string& s) { *this = Eq(s); }
  53. // Constructs a matcher that matches a string whose value is equal to s.
  54. Matcher<internal::string>::Matcher(const char* s) {
  55. *this = Eq(internal::string(s));
  56. }
  57. namespace internal {
  58. // Joins a vector of strings as if they are fields of a tuple; returns
  59. // the joined string.
  60. string JoinAsTuple(const Strings& fields) {
  61. switch (fields.size()) {
  62. case 0:
  63. return "";
  64. case 1:
  65. return fields[0];
  66. default:
  67. string result = "(" + fields[0];
  68. for (size_t i = 1; i < fields.size(); i++) {
  69. result += ", ";
  70. result += fields[i];
  71. }
  72. result += ")";
  73. return result;
  74. }
  75. }
  76. // Returns the description for a matcher defined using the MATCHER*()
  77. // macro where the user-supplied description string is "", if
  78. // 'negation' is false; otherwise returns the description of the
  79. // negation of the matcher. 'param_values' contains a list of strings
  80. // that are the print-out of the matcher's parameters.
  81. string FormatMatcherDescription(bool negation, const char* matcher_name,
  82. const Strings& param_values) {
  83. string result = ConvertIdentifierNameToWords(matcher_name);
  84. if (param_values.size() >= 1)
  85. result += " " + JoinAsTuple(param_values);
  86. return negation ? "not (" + result + ")" : result;
  87. }
  88. } // namespace internal
  89. } // namespace testing