blob: 68e7e96e77b46ebb968ad18f5293554f8159351f [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#pragma once
#ifndef GEODE_GTEST_EXTENSIONS_H_
#define GEODE_GTEST_EXTENSIONS_H_
#include <limits>
#include <regex>
#include <string>
#include <gtest/gtest.h>
namespace apache {
namespace geode {
namespace testing {
std::string squash(const std::string& str, size_t maxLength = 60) {
if (str.length() <= maxLength) {
return str;
}
return str.substr(0, maxLength / 2)
.append("...")
.append(str.substr(str.length() - maxLength / 2));
}
#define EXPECT_MATCH(r, s) \
EXPECT_PRED_FORMAT2(::apache::geode::testing::regexMatch, r, s)
#define ASSERT_MATCH(r, s) \
ASSERT_PRED_FORMAT2(::apache::geode::testing::regexMatch, r, s)
::testing::AssertionResult regexMatch(const char* s1_expression,
const char* /*s2_expression*/,
const std::regex& regex,
const std::string& source) {
if (!std::regex_match(source, regex)) {
return ::testing::AssertionFailure()
<< squash(source) << " !~ " << s1_expression;
}
return ::testing::AssertionSuccess();
}
::testing::AssertionResult regexMatch(const char* /*s1_expression*/,
const char* /*s2_expression*/,
const std::string& regex,
const std::string& source) {
if (!std::regex_match(source, std::regex(regex))) {
return ::testing::AssertionFailure()
<< squash(source) << " !~ /" << regex << "/";
}
return ::testing::AssertionSuccess();
}
} // namespace testing
} // namespace geode
} // namespace apache
#endif // GEODE_GTEST_EXTENSIONS_H_