OLD | NEW |
(Empty) | |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #import "base/mac/scoped_objc_class_swizzler.h" |
| 6 |
| 7 #import "base/mac/scoped_nsobject.h" |
| 8 #include "testing/gtest/include/gtest/gtest.h" |
| 9 |
| 10 @interface ObjCClassSwizzlerTestOne : NSObject |
| 11 + (NSInteger)function; |
| 12 - (NSInteger)method; |
| 13 - (NSInteger)modifier; |
| 14 @end |
| 15 |
| 16 @interface ObjCClassSwizzlerTestTwo : NSObject |
| 17 + (NSInteger)function; |
| 18 - (NSInteger)method; |
| 19 - (NSInteger)modifier; |
| 20 @end |
| 21 |
| 22 @implementation ObjCClassSwizzlerTestOne : NSObject |
| 23 |
| 24 + (NSInteger)function { |
| 25 return 10; |
| 26 } |
| 27 |
| 28 - (NSInteger)method { |
| 29 // Multiply by a modifier to ensure |self| in a swizzled implementation |
| 30 // refers to the original object. |
| 31 return 1 * [self modifier]; |
| 32 } |
| 33 |
| 34 - (NSInteger)modifier { |
| 35 return 3; |
| 36 } |
| 37 |
| 38 @end |
| 39 |
| 40 @implementation ObjCClassSwizzlerTestTwo : NSObject |
| 41 |
| 42 + (NSInteger)function { |
| 43 return 20; |
| 44 } |
| 45 |
| 46 - (NSInteger)method { |
| 47 return 2 * [self modifier]; |
| 48 } |
| 49 |
| 50 - (NSInteger)modifier { |
| 51 return 7; |
| 52 } |
| 53 |
| 54 @end |
| 55 |
| 56 namespace base { |
| 57 namespace mac { |
| 58 |
| 59 TEST(ObjCClassSwizzlerTest, SwizzleInstanceMethods) { |
| 60 base::scoped_nsobject<ObjCClassSwizzlerTestOne> object_one( |
| 61 [[ObjCClassSwizzlerTestOne alloc] init]); |
| 62 base::scoped_nsobject<ObjCClassSwizzlerTestTwo> object_two( |
| 63 [[ObjCClassSwizzlerTestTwo alloc] init]); |
| 64 EXPECT_EQ(3, [object_one method]); |
| 65 EXPECT_EQ(14, [object_two method]); |
| 66 |
| 67 { |
| 68 base::mac::ScopedObjCClassSwizzler swizzler( |
| 69 [ObjCClassSwizzlerTestOne class], |
| 70 [ObjCClassSwizzlerTestTwo class], |
| 71 @selector(method)); |
| 72 EXPECT_EQ(6, [object_one method]); |
| 73 EXPECT_EQ(7, [object_two method]); |
| 74 |
| 75 IMP original = swizzler.GetOriginalImplementation(); |
| 76 id expected_result = reinterpret_cast<id>(3); |
| 77 EXPECT_EQ(expected_result, original(object_one, @selector(method))); |
| 78 } |
| 79 |
| 80 EXPECT_EQ(3, [object_one method]); |
| 81 EXPECT_EQ(14, [object_two method]); |
| 82 } |
| 83 |
| 84 TEST(ObjCClassSwizzlerTest, SwizzleClassMethods) { |
| 85 EXPECT_EQ(10, [ObjCClassSwizzlerTestOne function]); |
| 86 EXPECT_EQ(20, [ObjCClassSwizzlerTestTwo function]); |
| 87 |
| 88 { |
| 89 base::mac::ScopedObjCClassSwizzler swizzler( |
| 90 [ObjCClassSwizzlerTestOne class], |
| 91 [ObjCClassSwizzlerTestTwo class], |
| 92 @selector(function)); |
| 93 EXPECT_EQ(20, [ObjCClassSwizzlerTestOne function]); |
| 94 EXPECT_EQ(10, [ObjCClassSwizzlerTestTwo function]); |
| 95 |
| 96 IMP original = swizzler.GetOriginalImplementation(); |
| 97 id expected_result = reinterpret_cast<id>(10); |
| 98 EXPECT_EQ(expected_result, original(nil, @selector(function))); |
| 99 } |
| 100 |
| 101 EXPECT_EQ(10, [ObjCClassSwizzlerTestOne function]); |
| 102 EXPECT_EQ(20, [ObjCClassSwizzlerTestTwo function]); |
| 103 } |
| 104 |
| 105 } // namespace mac |
| 106 } // namespace base |
OLD | NEW |