summaryrefslogtreecommitdiff
path: root/vendor/bandit/bandit/assertion_frameworks/snowhouse/snowhouse/constraints/haslengthconstraint.h
blob: fb6e7cc97e3100fe4f22f03d79ae2f8df45fc2fc (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
//          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_HASLENGTHCONSTRAINT_H
#define IGLOO_HASLENGTHCONSTRAINT_H

#include "./expressions/expression.h"

namespace snowhouse {

  template <typename ExpectedType>
  struct HasLengthConstraint : Expression< HasLengthConstraint<ExpectedType> >
  {
    HasLengthConstraint(const ExpectedType& expected) 
      : m_expected(expected) {}
      
    template <typename ActualType>
    bool operator()(const ActualType& actual) const
    {                                    
      typedef typename ActualType::size_type SizeType;
      SizeType expectedSize = static_cast<SizeType>(m_expected);
      return (actual.size() == expectedSize);
    } 
    
    ExpectedType m_expected;
  };              

  template< typename ExpectedType >
  inline HasLengthConstraint<ExpectedType> HasLength(const ExpectedType& expected)
  {
    return HasLengthConstraint<ExpectedType>(expected);
  }
  
  inline HasLengthConstraint<int> IsEmpty()
  {
    return HasLength<int>(0);
  }

  inline HasLengthConstraint<std::string> HasLength(const char* expected)
  {
    return HasLengthConstraint<std::string>(expected);
  }

  template< typename ExpectedType >
  struct Stringizer< HasLengthConstraint< ExpectedType > >
  {
    static std::string ToString(const HasLengthConstraint<ExpectedType>& constraint)
    {
      std::ostringstream builder;
	  builder << "of length " << snowhouse::Stringize(constraint.m_expected);

      return builder.str();
    }
  };
}      

#endif