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 | 0847a0f | 2011-02-01 16:09:18 +0000 | [diff] [blame] | 20 | #include "internal/catch_test_case_info.hpp" |
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 | da0ae95 | 2012-08-07 07:58:34 +0100 | [diff] [blame] | 96 | getMutableRegistryHub().registerTest( TestCaseInfo( 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 | |
| 110 | struct StringHolder { |
Phil Nash | 966f5db | 2012-03-04 21:18:46 +0000 | [diff] [blame] | 111 | StringHolder( NSString* substr ) : m_substr( [substr copy] ){} |
Phil Nash | 44fbbb0 | 2012-05-16 15:07:11 +0100 | [diff] [blame] | 112 | StringHolder() { |
Phil Nash | 53c990a | 2012-03-17 18:20:06 +0000 | [diff] [blame] | 113 | arcSafeRelease( m_substr ); |
Phil Nash | 966f5db | 2012-03-04 21:18:46 +0000 | [diff] [blame] | 114 | } |
| 115 | |
Phil Nash | 0dc9e43 | 2012-08-01 08:17:07 +0100 | [diff] [blame] | 116 | NSString* m_substr; |
Phil Nash | 966f5db | 2012-03-04 21:18:46 +0000 | [diff] [blame] | 117 | }; |
| 118 | |
Phil Nash | 44fbbb0 | 2012-05-16 15:07:11 +0100 | [diff] [blame] | 119 | struct Equals : StringHolder { |
Phil Nash | db837a1 | 2012-03-14 20:04:50 +0000 | [diff] [blame] | 120 | Equals( NSString* substr ) : StringHolder( substr ){} |
| 121 | |
Phil Nash | 44fbbb0 | 2012-05-16 15:07:11 +0100 | [diff] [blame] | 122 | bool operator()( NSString* str ) const { |
Phil Nash | db837a1 | 2012-03-14 20:04:50 +0000 | [diff] [blame] | 123 | return [str isEqualToString:m_substr]; |
| 124 | } |
| 125 | |
Phil Nash | 44fbbb0 | 2012-05-16 15:07:11 +0100 | [diff] [blame] | 126 | friend std::ostream& operator<<( std::ostream& os, const Equals& matcher ) { |
Phil Nash | db837a1 | 2012-03-14 20:04:50 +0000 | [diff] [blame] | 127 | os << "equals string: " << Catch::toString( matcher.m_substr ); |
| 128 | return os; |
| 129 | } |
| 130 | }; |
| 131 | |
Phil Nash | 44fbbb0 | 2012-05-16 15:07:11 +0100 | [diff] [blame] | 132 | struct Contains : StringHolder { |
Phil Nash | 966f5db | 2012-03-04 21:18:46 +0000 | [diff] [blame] | 133 | Contains( NSString* substr ) : StringHolder( substr ){} |
| 134 | |
Phil Nash | 44fbbb0 | 2012-05-16 15:07:11 +0100 | [diff] [blame] | 135 | bool operator()( NSString* str ) const { |
Phil Nash | 966f5db | 2012-03-04 21:18:46 +0000 | [diff] [blame] | 136 | return [str rangeOfString:m_substr].location != NSNotFound; |
| 137 | } |
| 138 | |
Phil Nash | 44fbbb0 | 2012-05-16 15:07:11 +0100 | [diff] [blame] | 139 | friend std::ostream& operator<<( std::ostream& os, const Contains& matcher ) { |
Phil Nash | 966f5db | 2012-03-04 21:18:46 +0000 | [diff] [blame] | 140 | os << "contains: " << Catch::toString( matcher.m_substr ); |
| 141 | return os; |
| 142 | } |
| 143 | }; |
| 144 | |
Phil Nash | 44fbbb0 | 2012-05-16 15:07:11 +0100 | [diff] [blame] | 145 | struct StartsWith : StringHolder { |
Phil Nash | 966f5db | 2012-03-04 21:18:46 +0000 | [diff] [blame] | 146 | StartsWith( NSString* substr ) : StringHolder( substr ){} |
| 147 | |
Phil Nash | 44fbbb0 | 2012-05-16 15:07:11 +0100 | [diff] [blame] | 148 | bool operator()( NSString* 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 | 44fbbb0 | 2012-05-16 15:07:11 +0100 | [diff] [blame] | 152 | friend std::ostream& operator<<( std::ostream& os, const StartsWith& matcher ) { |
Phil Nash | 966f5db | 2012-03-04 21:18:46 +0000 | [diff] [blame] | 153 | os << "starts with: " << Catch::toString( matcher.m_substr ); |
| 154 | return os; |
| 155 | } |
| 156 | }; |
Phil Nash | 44fbbb0 | 2012-05-16 15:07:11 +0100 | [diff] [blame] | 157 | struct EndsWith : StringHolder { |
Phil Nash | 966f5db | 2012-03-04 21:18:46 +0000 | [diff] [blame] | 158 | EndsWith( NSString* substr ) : StringHolder( substr ){} |
| 159 | |
Phil Nash | 44fbbb0 | 2012-05-16 15:07:11 +0100 | [diff] [blame] | 160 | bool operator()( NSString* str ) const { |
Phil Nash | 966f5db | 2012-03-04 21:18:46 +0000 | [diff] [blame] | 161 | return [str rangeOfString:m_substr].location == [str length] - [m_substr length]; |
| 162 | } |
| 163 | |
Phil Nash | 44fbbb0 | 2012-05-16 15:07:11 +0100 | [diff] [blame] | 164 | friend std::ostream& operator<<( std::ostream& os, const EndsWith& matcher ) { |
Phil Nash | 966f5db | 2012-03-04 21:18:46 +0000 | [diff] [blame] | 165 | os << "ends with: " << Catch::toString( matcher.m_substr ); |
| 166 | return os; |
| 167 | } |
| 168 | }; |
| 169 | |
| 170 | } // namespace NSStringMatchers |
| 171 | } // namespace Impl |
| 172 | |
Phil Nash | db837a1 | 2012-03-14 20:04:50 +0000 | [diff] [blame] | 173 | inline Impl::NSStringMatchers::Equals |
| 174 | Equals( NSString* substr ){ return Impl::NSStringMatchers::Equals( substr ); } |
| 175 | |
Phil Nash | 966f5db | 2012-03-04 21:18:46 +0000 | [diff] [blame] | 176 | inline Impl::NSStringMatchers::Contains |
| 177 | Contains( NSString* substr ){ return Impl::NSStringMatchers::Contains( substr ); } |
Phil Nash | db837a1 | 2012-03-14 20:04:50 +0000 | [diff] [blame] | 178 | |
Phil Nash | 966f5db | 2012-03-04 21:18:46 +0000 | [diff] [blame] | 179 | inline Impl::NSStringMatchers::StartsWith |
| 180 | StartsWith( NSString* substr ){ return Impl::NSStringMatchers::StartsWith( substr ); } |
Phil Nash | db837a1 | 2012-03-14 20:04:50 +0000 | [diff] [blame] | 181 | |
Phil Nash | 966f5db | 2012-03-04 21:18:46 +0000 | [diff] [blame] | 182 | inline Impl::NSStringMatchers::EndsWith |
| 183 | EndsWith( NSString* substr ){ return Impl::NSStringMatchers::EndsWith( substr ); } |
| 184 | |
| 185 | } // namespace Matchers |
| 186 | |
| 187 | using namespace Matchers; |
| 188 | |
| 189 | } // namespace Catch |
Phil Nash | d52f61c | 2010-11-14 22:47:30 +0000 | [diff] [blame] | 190 | |
Phil Nash | 58e9a8b | 2011-02-08 08:42:05 +0000 | [diff] [blame] | 191 | /////////////////////////////////////////////////////////////////////////////// |
Phil Nash | d52f61c | 2010-11-14 22:47:30 +0000 | [diff] [blame] | 192 | #define OC_TEST_CASE( name, desc )\ |
Phil Nash | 53c990a | 2012-03-17 18:20:06 +0000 | [diff] [blame] | 193 | +(NSString*) INTERNAL_CATCH_UNIQUE_NAME( Catch_Name_test ) \ |
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 | return @ name; \ |
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 | +(NSString*) INTERNAL_CATCH_UNIQUE_NAME( Catch_Description_test ) \ |
Phil Nash | d52f61c | 2010-11-14 22:47:30 +0000 | [diff] [blame] | 198 | { \ |
Phil Nash | 53c990a | 2012-03-17 18:20:06 +0000 | [diff] [blame] | 199 | return @ desc; \ |
Phil Nash | d52f61c | 2010-11-14 22:47:30 +0000 | [diff] [blame] | 200 | } \ |
| 201 | -(void) INTERNAL_CATCH_UNIQUE_NAME( Catch_TestCase_test ) |
| 202 | |
Phil Nash | d10d2d3 | 2012-05-10 21:46:46 +0100 | [diff] [blame] | 203 | #endif // TWOBLUECUBES_CATCH_OBJC_HPP_INCLUDED |