summaryrefslogtreecommitdiff
path: root/vendor/bandit/bandit/assertion_frameworks/matchers/Matcher.h
blob: ad48c0a56530069323f972b0aa5c23e9c56d0c02 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
#ifndef BANDIT_MATCHER_H
#define BANDIT_MATCHER_H

#include <sstream>

//#import "CedarStringifiers.h"

namespace bandit { namespace Matchers {
    class Matcher
    {
    public:
        Matcher() {}

        template<typename U>
	std::string failure_message(const U& value, bool negate) const
	{
	    std::ostringstream ss;
	    ss << "Expected <" << value << "> " << (negate ? "to not " : "to ") << failure_message_end();
	    return ss.str();
	}

	std::string failure_message(char *const value, bool negate) const
	{
	    return failure_message((value ? value : "NULL"), negate);
	}

        template<typename U>
	std::string failure_message(const std::unique_ptr<U>& value, bool negate) const
	{
	    return failure_message(value.get(), negate);
	}

	std::string failure_message(const std::nullptr_t pointer, bool negate) const
	{
	    (void)pointer;
	    return failure_message("nullptr", negate);
	}

	template<typename U>
	std::string failure_message(std::function<U>& value, bool negate) const
	{
	    return failure_message(typeid(value).name(), negate);
	}

	template<typename U>
	std::string failure_message(const std::function<U>& value, bool negate) const
	{
	    return failure_message(typeid(value).name(), negate);
	}

	template<typename U, template <class T, class = std::allocator<T> > class container >
	std::string failure_message(const container<U>& value, bool negate) const
	{
	    return failure_message(typeid(value).name(), negate);
	}

	template<typename U, template <class T, class = std::less<T>, class = std::allocator<T> > class container >
	std::string failure_message(const container<U>& value, bool negate) const
	{
	    return failure_message(typeid(value).name(), negate);
	}

	template<typename U, typename V, template <class K, class T, class = std::less<K>, class = std::allocator<std::pair<const K,T>> > class container >
	std::string failure_message(const container<U,V>& value, bool negate) const
	{
	    return failure_message(typeid(value).name(), negate);
	}

    protected:
        virtual std::string failure_message_end() const = 0;
    };
}}

#endif	// BANDIT_MATCHER_H