mirror of
https://github.com/zhigang1992/RestKit.git
synced 2026-01-12 22:51:50 +08:00
77 lines
2.8 KiB
Objective-C
77 lines
2.8 KiB
Objective-C
//
|
|
// RKTestEnvironment.m
|
|
// RestKit
|
|
//
|
|
// Created by Blake Watters on 3/14/11.
|
|
// Copyright (c) 2009-2012 RestKit. All rights reserved.
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
//
|
|
|
|
#include <objc/runtime.h>
|
|
#import "RKTestEnvironment.h"
|
|
#import "RKParserRegistry.h"
|
|
|
|
RKOAuthClient* RKTestNewOAuthClient(RKTestResponseLoader* loader){
|
|
[loader setTimeout:10];
|
|
RKOAuthClient* client = [RKOAuthClient clientWithClientID:@"appID" secret:@"appSecret"];
|
|
client.delegate = loader;
|
|
client.authorizationURL = [NSString stringWithFormat:@"%@/oauth/authorize", [RKTestFactory baseURLString]];
|
|
return client;
|
|
}
|
|
|
|
void RKTestClearCacheDirectory(void) {
|
|
|
|
}
|
|
|
|
@implementation RKTestCase
|
|
|
|
+ (void)initialize
|
|
{
|
|
// Configure fixture bundle. The 'org.restkit.tests' identifier is shared between
|
|
// the logic and application test bundles
|
|
NSBundle *fixtureBundle = [NSBundle bundleWithIdentifier:@"org.restkit.tests"];
|
|
[RKTestFixture setFixtureBundle:fixtureBundle];
|
|
|
|
// Ensure the required directories exist
|
|
BOOL directoryExists;
|
|
NSError *error = nil;
|
|
directoryExists = [RKDirectory ensureDirectoryExistsAtPath:[RKDirectory applicationDataDirectory] error:&error];
|
|
if (! directoryExists) {
|
|
RKLogError(@"Failed to create application data directory. Unable to run tests: %@", error);
|
|
NSAssert(directoryExists, @"Failed to create application data directory.");
|
|
}
|
|
|
|
directoryExists = [RKDirectory ensureDirectoryExistsAtPath:[RKDirectory cachesDirectory] error:&error];
|
|
if (! directoryExists) {
|
|
RKLogError(@"Failed to create caches directory. Unable to run tests: %@", error);
|
|
NSAssert(directoryExists, @"Failed to create caches directory.");
|
|
}
|
|
}
|
|
|
|
@end
|
|
|
|
@implementation SenTestCase (MethodSwizzling)
|
|
- (void)swizzleMethod:(SEL)aOriginalMethod
|
|
inClass:(Class)aOriginalClass
|
|
withMethod:(SEL)aNewMethod
|
|
fromClass:(Class)aNewClass
|
|
executeBlock:(void (^)(void))aBlock {
|
|
Method originalMethod = class_getClassMethod(aOriginalClass, aOriginalMethod);
|
|
Method mockMethod = class_getInstanceMethod(aNewClass, aNewMethod);
|
|
method_exchangeImplementations(originalMethod, mockMethod);
|
|
aBlock();
|
|
method_exchangeImplementations(mockMethod, originalMethod);
|
|
}
|
|
@end
|