// Copyright Joakim Karlsson & Kim Gräsman 2010-2012. // Distributed under the Boost Software License, Version 1.0. // (See accompanying file LICENSE_1_0.txt or copy at // http://www.boost.org/LICENSE_1_0.txt) #ifndef IGLOO_ENDSWITHCONSTRAINT_H #define IGLOO_ENDSWITHCONSTRAINT_H #include "./expressions/expression.h" namespace snowhouse { template struct EndsWithConstraint : Expression< EndsWithConstraint > { EndsWithConstraint(const ExpectedType& expected) : m_expected(expected) {} bool operator()(const std::string& actual) const { size_t expectedPos = actual.length() - m_expected.length(); return actual.find(m_expected) == expectedPos; } ExpectedType m_expected; }; template< typename ExpectedType > inline EndsWithConstraint EndsWith(const ExpectedType& expected) { return EndsWithConstraint(expected); } inline EndsWithConstraint EndsWith(const char* expected) { return EndsWithConstraint(expected); } template< typename ExpectedType > struct Stringizer< EndsWithConstraint< ExpectedType > > { static std::string ToString(const EndsWithConstraint& constraint) { std::ostringstream builder; builder << "ends with " << snowhouse::Stringize(constraint.m_expected); return builder.str(); } }; } #endif