Phil Nash | d52f61c | 2010-11-14 22:47:30 +0000 | [diff] [blame] | 1 | /* |
Phil Nash | d52f61c | 2010-11-14 22:47:30 +0000 | [diff] [blame] | 2 | * Created by Phil on 14/11/2010. |
| 3 | * Copyright 2010 Two Blue Cubes Ltd. All rights reserved. |
| 4 | * |
| 5 | * Distributed under the Boost Software License, Version 1.0. (See accompanying |
| 6 | * file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) |
Phil Nash | d52f61c | 2010-11-14 22:47:30 +0000 | [diff] [blame] | 7 | */ |
Phil Nash | d52f61c | 2010-11-14 22:47:30 +0000 | [diff] [blame] | 8 | #ifndef TWOBLUECUBES_CATCH_OBJC_HPP_INCLUDED |
| 9 | #define TWOBLUECUBES_CATCH_OBJC_HPP_INCLUDED |
| 10 | |
Phil Nash | 0dc9e43 | 2012-08-01 08:17:07 +0100 | [diff] [blame] | 11 | #include "catch_objc_arc.hpp" |
| 12 | |
Phil Nash | d52f61c | 2010-11-14 22:47:30 +0000 | [diff] [blame] | 13 | #import <objc/runtime.h> |
Phil Nash | 6abf702 | 2012-02-10 08:28:37 +0000 | [diff] [blame] | 14 | |
Phil Nash | d52f61c | 2010-11-14 22:47:30 +0000 | [diff] [blame] | 15 | #include <string> |
Phil Nash | 823ea3e | 2011-04-26 08:32:40 +0100 | [diff] [blame] | 16 | |
Phil Nash | 89d1e6c | 2011-05-24 08:23:02 +0100 | [diff] [blame] | 17 | // NB. Any general catch headers included here must be included |
| 18 | // in catch.hpp first to make sure they are included by the single |
| 19 | // header for non obj-usage |
Phil Nash | ddfe963 | 2012-08-14 19:30:30 +0100 | [diff] [blame] | 20 | #include "internal/catch_test_case_info.h" |
Phil Nash | d52f61c | 2010-11-14 22:47:30 +0000 | [diff] [blame] | 21 | |
Phil Nash | 58e9a8b | 2011-02-08 08:42:05 +0000 | [diff] [blame] | 22 | /////////////////////////////////////////////////////////////////////////////// |
| 23 | // This protocol is really only here for (self) documenting purposes, since |
| 24 | // all its methods are optional. |
Phil Nash | f59ecbc | 2010-11-16 07:00:08 +0000 | [diff] [blame] | 25 | @protocol OcFixture |
| 26 | |
| 27 | @optional |
| 28 | |
| 29 | -(void) setUp; |
| 30 | -(void) tearDown; |
| 31 | |
| 32 | @end |
| 33 | |
Phil Nash | 44fbbb0 | 2012-05-16 15:07:11 +0100 | [diff] [blame] | 34 | namespace Catch { |
| 35 | |
Phil Nash | 9c6ce97 | 2012-08-14 08:38:22 +0100 | [diff] [blame] | 36 | class OcMethod : public SharedImpl<ITestCase> { |
Phil Nash | 44fbbb0 | 2012-05-16 15:07:11 +0100 | [diff] [blame] | 37 | |
Phil Nash | d52f61c | 2010-11-14 22:47:30 +0000 | [diff] [blame] | 38 | public: |
Phil Nash | 44fbbb0 | 2012-05-16 15:07:11 +0100 | [diff] [blame] | 39 | OcMethod( Class cls, SEL sel ) : m_cls( cls ), m_sel( sel ) {} |
Phil Nash | d52f61c | 2010-11-14 22:47:30 +0000 | [diff] [blame] | 40 | |
Phil Nash | 44fbbb0 | 2012-05-16 15:07:11 +0100 | [diff] [blame] | 41 | virtual void invoke() const { |
Phil Nash | 53c990a | 2012-03-17 18:20:06 +0000 | [diff] [blame] | 42 | id obj = [[m_cls alloc] init]; |
Phil Nash | f59ecbc | 2010-11-16 07:00:08 +0000 | [diff] [blame] | 43 | |
Phil Nash | 53c990a | 2012-03-17 18:20:06 +0000 | [diff] [blame] | 44 | performOptionalSelector( obj, @selector(setUp) ); |
| 45 | performOptionalSelector( obj, m_sel ); |
| 46 | performOptionalSelector( obj, @selector(tearDown) ); |
Phil Nash | f59ecbc | 2010-11-16 07:00:08 +0000 | [diff] [blame] | 47 | |
Phil Nash | 53c990a | 2012-03-17 18:20:06 +0000 | [diff] [blame] | 48 | arcSafeRelease( obj ); |
Phil Nash | d52f61c | 2010-11-14 22:47:30 +0000 | [diff] [blame] | 49 | } |
Phil Nash | d52f61c | 2010-11-14 22:47:30 +0000 | [diff] [blame] | 50 | private: |
Phil Nash | 9c6ce97 | 2012-08-14 08:38:22 +0100 | [diff] [blame] | 51 | virtual ~OcMethod() {} |
| 52 | |
Phil Nash | f59ecbc | 2010-11-16 07:00:08 +0000 | [diff] [blame] | 53 | Class m_cls; |
Phil Nash | d52f61c | 2010-11-14 22:47:30 +0000 | [diff] [blame] | 54 | SEL m_sel; |
| 55 | }; |
| 56 | |
Phil Nash | 44fbbb0 | 2012-05-16 15:07:11 +0100 | [diff] [blame] | 57 | namespace Detail{ |
Phil Nash | f59ecbc | 2010-11-16 07:00:08 +0000 | [diff] [blame] | 58 | |
Phil Nash | 44fbbb0 | 2012-05-16 15:07:11 +0100 | [diff] [blame] | 59 | inline bool startsWith( const std::string& str, const std::string& sub ) { |
Phil Nash | d52f61c | 2010-11-14 22:47:30 +0000 | [diff] [blame] | 60 | return str.length() > sub.length() && str.substr( 0, sub.length() ) == sub; |
| 61 | } |
| 62 | |
Phil Nash | 44fbbb0 | 2012-05-16 15:07:11 +0100 | [diff] [blame] | 63 | inline std::string getAnnotation( Class cls, |
| 64 | const std::string& annotationName, |
| 65 | const std::string& testCaseName ) { |
Phil Nash | d52f61c | 2010-11-14 22:47:30 +0000 | [diff] [blame] | 66 | NSString* selStr = [[NSString alloc] initWithFormat:@"Catch_%s_%s", annotationName.c_str(), testCaseName.c_str()]; |
| 67 | SEL sel = NSSelectorFromString( selStr ); |
Phil Nash | 53c990a | 2012-03-17 18:20:06 +0000 | [diff] [blame] | 68 | arcSafeRelease( selStr ); |
| 69 | id value = performOptionalSelector( cls, sel ); |
| 70 | if( value ) |
| 71 | return [(NSString*)value UTF8String]; |
Phil Nash | d52f61c | 2010-11-14 22:47:30 +0000 | [diff] [blame] | 72 | return ""; |
| 73 | } |
Phil Nash | f59ecbc | 2010-11-16 07:00:08 +0000 | [diff] [blame] | 74 | } |
| 75 | |
Phil Nash | 44fbbb0 | 2012-05-16 15:07:11 +0100 | [diff] [blame] | 76 | inline size_t registerTestMethods() { |
Phil Nash | f59ecbc | 2010-11-16 07:00:08 +0000 | [diff] [blame] | 77 | size_t noTestMethods = 0; |
| 78 | int noClasses = objc_getClassList( NULL, 0 ); |
Phil Nash | d52f61c | 2010-11-14 22:47:30 +0000 | [diff] [blame] | 79 | |
Phil Nash | 861a1e7 | 2012-04-28 12:29:52 +0100 | [diff] [blame] | 80 | Class* classes = (CATCH_UNSAFE_UNRETAINED Class *)malloc( sizeof(Class) * noClasses); |
Phil Nash | 53c990a | 2012-03-17 18:20:06 +0000 | [diff] [blame] | 81 | objc_getClassList( classes, noClasses ); |
Phil Nash | f59ecbc | 2010-11-16 07:00:08 +0000 | [diff] [blame] | 82 | |
Phil Nash | 44fbbb0 | 2012-05-16 15:07:11 +0100 | [diff] [blame] | 83 | for( int c = 0; c < noClasses; c++ ) { |
Phil Nash | f59ecbc | 2010-11-16 07:00:08 +0000 | [diff] [blame] | 84 | Class cls = classes[c]; |
| 85 | { |
| 86 | u_int count; |
| 87 | Method* methods = class_copyMethodList( cls, &count ); |
Graham Lee | 8cfe821 | 2012-05-21 18:11:55 +0200 | [diff] [blame] | 88 | for( u_int m = 0; m < count ; m++ ) { |
Phil Nash | f59ecbc | 2010-11-16 07:00:08 +0000 | [diff] [blame] | 89 | SEL selector = method_getName(methods[m]); |
| 90 | std::string methodName = sel_getName(selector); |
Phil Nash | 44fbbb0 | 2012-05-16 15:07:11 +0100 | [diff] [blame] | 91 | if( Detail::startsWith( methodName, "Catch_TestCase_" ) ) { |
Phil Nash | f59ecbc | 2010-11-16 07:00:08 +0000 | [diff] [blame] | 92 | std::string testCaseName = methodName.substr( 15 ); |
Phil Nash | 53c990a | 2012-03-17 18:20:06 +0000 | [diff] [blame] | 93 | std::string name = Detail::getAnnotation( cls, "Name", testCaseName ); |
| 94 | std::string desc = Detail::getAnnotation( cls, "Description", testCaseName ); |
Phil Nash | f59ecbc | 2010-11-16 07:00:08 +0000 | [diff] [blame] | 95 | |
Phil Nash | 4424634 | 2012-12-06 08:41:38 +0000 | [diff] [blame^] | 96 | getMutableRegistryHub().registerTest( makeTestCase( new OcMethod( cls, selector ), "", name.c_str(), desc.c_str(), SourceLineInfo() ) ); |
Phil Nash | f59ecbc | 2010-11-16 07:00:08 +0000 | [diff] [blame] | 97 | noTestMethods++; |
Phil Nash | f59ecbc | 2010-11-16 07:00:08 +0000 | [diff] [blame] | 98 | } |
| 99 | } |
| 100 | free(methods); |
| 101 | } |
| 102 | } |
| 103 | return noTestMethods; |
Phil Nash | 966f5db | 2012-03-04 21:18:46 +0000 | [diff] [blame] | 104 | } |
| 105 | |
Phil Nash | 44fbbb0 | 2012-05-16 15:07:11 +0100 | [diff] [blame] | 106 | namespace Matchers { |
| 107 | namespace Impl { |
| 108 | namespace NSStringMatchers { |
| 109 | |
Phil Nash | 4424634 | 2012-12-06 08:41:38 +0000 | [diff] [blame^] | 110 | template<typename MatcherT> |
| 111 | struct StringHolder : MatcherImpl<MatcherT, NSString*>{ |
Phil Nash | 966f5db | 2012-03-04 21:18:46 +0000 | [diff] [blame] | 112 | StringHolder( NSString* substr ) : m_substr( [substr copy] ){} |
Phil Nash | 4424634 | 2012-12-06 08:41:38 +0000 | [diff] [blame^] | 113 | StringHolder( StringHolder const& other ) : m_substr( [other.m_substr copy] ){} |
Phil Nash | 44fbbb0 | 2012-05-16 15:07:11 +0100 | [diff] [blame] | 114 | StringHolder() { |
Phil Nash | 53c990a | 2012-03-17 18:20:06 +0000 | [diff] [blame] | 115 | arcSafeRelease( m_substr ); |
Phil Nash | 966f5db | 2012-03-04 21:18:46 +0000 | [diff] [blame] | 116 | } |
| 117 | |
Phil Nash | 0dc9e43 | 2012-08-01 08:17:07 +0100 | [diff] [blame] | 118 | NSString* m_substr; |
Phil Nash | 966f5db | 2012-03-04 21:18:46 +0000 | [diff] [blame] | 119 | }; |
| 120 | |
Phil Nash | 4424634 | 2012-12-06 08:41:38 +0000 | [diff] [blame^] | 121 | struct Equals : StringHolder<Equals> { |
Phil Nash | db837a1 | 2012-03-14 20:04:50 +0000 | [diff] [blame] | 122 | Equals( NSString* substr ) : StringHolder( substr ){} |
| 123 | |
Phil Nash | 4424634 | 2012-12-06 08:41:38 +0000 | [diff] [blame^] | 124 | virtual bool match( ExpressionType const& str ) const { |
Phil Nash | db837a1 | 2012-03-14 20:04:50 +0000 | [diff] [blame] | 125 | return [str isEqualToString:m_substr]; |
| 126 | } |
| 127 | |
Phil Nash | 4424634 | 2012-12-06 08:41:38 +0000 | [diff] [blame^] | 128 | virtual std::string toString() const { |
| 129 | return "equals string: \"" + Catch::toString( m_substr ) + "\""; |
Phil Nash | db837a1 | 2012-03-14 20:04:50 +0000 | [diff] [blame] | 130 | } |
| 131 | }; |
| 132 | |
Phil Nash | 4424634 | 2012-12-06 08:41:38 +0000 | [diff] [blame^] | 133 | struct Contains : StringHolder<Contains> { |
Phil Nash | 966f5db | 2012-03-04 21:18:46 +0000 | [diff] [blame] | 134 | Contains( NSString* substr ) : StringHolder( substr ){} |
| 135 | |
Phil Nash | 4424634 | 2012-12-06 08:41:38 +0000 | [diff] [blame^] | 136 | virtual bool match( ExpressionType const& str ) const { |
Phil Nash | 966f5db | 2012-03-04 21:18:46 +0000 | [diff] [blame] | 137 | return [str rangeOfString:m_substr].location != NSNotFound; |
| 138 | } |
| 139 | |
Phil Nash | 4424634 | 2012-12-06 08:41:38 +0000 | [diff] [blame^] | 140 | virtual std::string toString() const { |
| 141 | return "contains string: \"" + Catch::toString( m_substr ) + "\""; |
Phil Nash | 966f5db | 2012-03-04 21:18:46 +0000 | [diff] [blame] | 142 | } |
| 143 | }; |
| 144 | |
Phil Nash | 4424634 | 2012-12-06 08:41:38 +0000 | [diff] [blame^] | 145 | struct StartsWith : StringHolder<StartsWith> { |
Phil Nash | 966f5db | 2012-03-04 21:18:46 +0000 | [diff] [blame] | 146 | StartsWith( NSString* substr ) : StringHolder( substr ){} |
| 147 | |
Phil Nash | 4424634 | 2012-12-06 08:41:38 +0000 | [diff] [blame^] | 148 | virtual bool match( ExpressionType const& str ) const { |
Phil Nash | 966f5db | 2012-03-04 21:18:46 +0000 | [diff] [blame] | 149 | return [str rangeOfString:m_substr].location == 0; |
| 150 | } |
| 151 | |
Phil Nash | 4424634 | 2012-12-06 08:41:38 +0000 | [diff] [blame^] | 152 | virtual std::string toString() const { |
| 153 | return "starts with: \"" + Catch::toString( m_substr ) + "\""; |
Phil Nash | 966f5db | 2012-03-04 21:18:46 +0000 | [diff] [blame] | 154 | } |
| 155 | }; |
Phil Nash | 4424634 | 2012-12-06 08:41:38 +0000 | [diff] [blame^] | 156 | struct EndsWith : StringHolder<EndsWith> { |
Phil Nash | 966f5db | 2012-03-04 21:18:46 +0000 | [diff] [blame] | 157 | EndsWith( NSString* substr ) : StringHolder( substr ){} |
| 158 | |
Phil Nash | 4424634 | 2012-12-06 08:41:38 +0000 | [diff] [blame^] | 159 | virtual bool match( ExpressionType const& str ) const { |
Phil Nash | 966f5db | 2012-03-04 21:18:46 +0000 | [diff] [blame] | 160 | return [str rangeOfString:m_substr].location == [str length] - [m_substr length]; |
| 161 | } |
| 162 | |
Phil Nash | 4424634 | 2012-12-06 08:41:38 +0000 | [diff] [blame^] | 163 | virtual std::string toString() const { |
| 164 | return "ends with: \"" + Catch::toString( m_substr ) + "\""; |
Phil Nash | 966f5db | 2012-03-04 21:18:46 +0000 | [diff] [blame] | 165 | } |
| 166 | }; |
| 167 | |
| 168 | } // namespace NSStringMatchers |
| 169 | } // namespace Impl |
| 170 | |
Phil Nash | db837a1 | 2012-03-14 20:04:50 +0000 | [diff] [blame] | 171 | inline Impl::NSStringMatchers::Equals |
| 172 | Equals( NSString* substr ){ return Impl::NSStringMatchers::Equals( substr ); } |
| 173 | |
Phil Nash | 966f5db | 2012-03-04 21:18:46 +0000 | [diff] [blame] | 174 | inline Impl::NSStringMatchers::Contains |
| 175 | Contains( NSString* substr ){ return Impl::NSStringMatchers::Contains( substr ); } |
Phil Nash | db837a1 | 2012-03-14 20:04:50 +0000 | [diff] [blame] | 176 | |
Phil Nash | 966f5db | 2012-03-04 21:18:46 +0000 | [diff] [blame] | 177 | inline Impl::NSStringMatchers::StartsWith |
| 178 | StartsWith( NSString* substr ){ return Impl::NSStringMatchers::StartsWith( substr ); } |
Phil Nash | db837a1 | 2012-03-14 20:04:50 +0000 | [diff] [blame] | 179 | |
Phil Nash | 966f5db | 2012-03-04 21:18:46 +0000 | [diff] [blame] | 180 | inline Impl::NSStringMatchers::EndsWith |
| 181 | EndsWith( NSString* substr ){ return Impl::NSStringMatchers::EndsWith( substr ); } |
| 182 | |
| 183 | } // namespace Matchers |
| 184 | |
| 185 | using namespace Matchers; |
| 186 | |
| 187 | } // namespace Catch |
Phil Nash | d52f61c | 2010-11-14 22:47:30 +0000 | [diff] [blame] | 188 | |
Phil Nash | 58e9a8b | 2011-02-08 08:42:05 +0000 | [diff] [blame] | 189 | /////////////////////////////////////////////////////////////////////////////// |
Phil Nash | d52f61c | 2010-11-14 22:47:30 +0000 | [diff] [blame] | 190 | #define OC_TEST_CASE( name, desc )\ |
Phil Nash | 53c990a | 2012-03-17 18:20:06 +0000 | [diff] [blame] | 191 | +(NSString*) INTERNAL_CATCH_UNIQUE_NAME( Catch_Name_test ) \ |
Phil Nash | d52f61c | 2010-11-14 22:47:30 +0000 | [diff] [blame] | 192 | {\ |
Phil Nash | 53c990a | 2012-03-17 18:20:06 +0000 | [diff] [blame] | 193 | return @ name; \ |
Phil Nash | d52f61c | 2010-11-14 22:47:30 +0000 | [diff] [blame] | 194 | }\ |
Phil Nash | 53c990a | 2012-03-17 18:20:06 +0000 | [diff] [blame] | 195 | +(NSString*) INTERNAL_CATCH_UNIQUE_NAME( Catch_Description_test ) \ |
Phil Nash | d52f61c | 2010-11-14 22:47:30 +0000 | [diff] [blame] | 196 | { \ |
Phil Nash | 53c990a | 2012-03-17 18:20:06 +0000 | [diff] [blame] | 197 | return @ desc; \ |
Phil Nash | d52f61c | 2010-11-14 22:47:30 +0000 | [diff] [blame] | 198 | } \ |
| 199 | -(void) INTERNAL_CATCH_UNIQUE_NAME( Catch_TestCase_test ) |
| 200 | |
Phil Nash | d10d2d3 | 2012-05-10 21:46:46 +0100 | [diff] [blame] | 201 | #endif // TWOBLUECUBES_CATCH_OBJC_HPP_INCLUDED |