~raof/mir/symbols-file

« back to all changes in this revision

Viewing changes to 3rd_party/gmock/src/gmock-matchers.cc

  • Committer: Tarmac
  • Author(s): Kevin DuBois
  • Date: 2013-07-12 06:12:08 UTC
  • mfrom: (835.4.12 rm-internal-gmock)
  • Revision ID: tarmac-20130712061208-axrnr0n8xgjgexhz
remove google mock from the internal source tree. Rather, use the google-mock package and build the source externally. Fixes: https://bugs.launchpad.net/bugs/1185265, https://bugs.launchpad.net/bugs/1194017.

Approved by Didier Roche, PS Jenkins bot.

Show diffs side-by-side

added added

removed removed

Lines of Context:
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
 
 
32
 
// Google Mock - a framework for writing C++ mock classes.
33
 
//
34
 
// This file implements Matcher<const string&>, Matcher<string>, and
35
 
// utilities for defining matchers.
36
 
 
37
 
#include "gmock/gmock-matchers.h"
38
 
#include "gmock/gmock-generated-matchers.h"
39
 
 
40
 
#include <string.h>
41
 
#include <sstream>
42
 
#include <string>
43
 
 
44
 
namespace testing {
45
 
 
46
 
// Constructs a matcher that matches a const string& whose value is
47
 
// equal to s.
48
 
Matcher<const internal::string&>::Matcher(const internal::string& s) {
49
 
  *this = Eq(s);
50
 
}
51
 
 
52
 
// Constructs a matcher that matches a const string& whose value is
53
 
// equal to s.
54
 
Matcher<const internal::string&>::Matcher(const char* s) {
55
 
  *this = Eq(internal::string(s));
56
 
}
57
 
 
58
 
// Constructs a matcher that matches a string whose value is equal to s.
59
 
Matcher<internal::string>::Matcher(const internal::string& s) { *this = Eq(s); }
60
 
 
61
 
// Constructs a matcher that matches a string whose value is equal to s.
62
 
Matcher<internal::string>::Matcher(const char* s) {
63
 
  *this = Eq(internal::string(s));
64
 
}
65
 
 
66
 
#if GTEST_HAS_STRING_PIECE_
67
 
// Constructs a matcher that matches a const StringPiece& whose value is
68
 
// equal to s.
69
 
Matcher<const StringPiece&>::Matcher(const internal::string& s) {
70
 
  *this = Eq(s);
71
 
}
72
 
 
73
 
// Constructs a matcher that matches a const StringPiece& whose value is
74
 
// equal to s.
75
 
Matcher<const StringPiece&>::Matcher(const char* s) {
76
 
  *this = Eq(internal::string(s));
77
 
}
78
 
 
79
 
// Constructs a matcher that matches a const StringPiece& whose value is
80
 
// equal to s.
81
 
Matcher<const StringPiece&>::Matcher(StringPiece s) {
82
 
  *this = Eq(s.ToString());
83
 
}
84
 
 
85
 
// Constructs a matcher that matches a StringPiece whose value is equal to s.
86
 
Matcher<StringPiece>::Matcher(const internal::string& s) {
87
 
  *this = Eq(s);
88
 
}
89
 
 
90
 
// Constructs a matcher that matches a StringPiece whose value is equal to s.
91
 
Matcher<StringPiece>::Matcher(const char* s) {
92
 
  *this = Eq(internal::string(s));
93
 
}
94
 
 
95
 
// Constructs a matcher that matches a StringPiece whose value is equal to s.
96
 
Matcher<StringPiece>::Matcher(StringPiece s) {
97
 
  *this = Eq(s.ToString());
98
 
}
99
 
#endif  // GTEST_HAS_STRING_PIECE_
100
 
 
101
 
namespace internal {
102
 
 
103
 
// Joins a vector of strings as if they are fields of a tuple; returns
104
 
// the joined string.
105
 
GTEST_API_ string JoinAsTuple(const Strings& fields) {
106
 
  switch (fields.size()) {
107
 
    case 0:
108
 
      return "";
109
 
    case 1:
110
 
      return fields[0];
111
 
    default:
112
 
      string result = "(" + fields[0];
113
 
      for (size_t i = 1; i < fields.size(); i++) {
114
 
        result += ", ";
115
 
        result += fields[i];
116
 
      }
117
 
      result += ")";
118
 
      return result;
119
 
  }
120
 
}
121
 
 
122
 
// Returns the description for a matcher defined using the MATCHER*()
123
 
// macro where the user-supplied description string is "", if
124
 
// 'negation' is false; otherwise returns the description of the
125
 
// negation of the matcher.  'param_values' contains a list of strings
126
 
// that are the print-out of the matcher's parameters.
127
 
GTEST_API_ string FormatMatcherDescription(bool negation,
128
 
                                           const char* matcher_name,
129
 
                                           const Strings& param_values) {
130
 
  string result = ConvertIdentifierNameToWords(matcher_name);
131
 
  if (param_values.size() >= 1)
132
 
    result += " " + JoinAsTuple(param_values);
133
 
  return negation ? "not (" + result + ")" : result;
134
 
}
135
 
 
136
 
}  // namespace internal
137
 
}  // namespace testing