帮助程序在新西兰规范中起作用

时间:2012-06-25 22:42:25

标签: ios objective-c kiwi

我有一些重复的规格,我想干涸。常用功能不适合移入beforeEach块。本质上,它是对象创建,并且12个对象中的每一个都有4行,我想将这4行转换为单个函数调用。

我在哪里可以将帮助函数放入Kiwi规范中?

在RSpec中,我可以将def放在spec块之间,但这似乎不可能。我甚至尝试跳过SPEC_END宏并自己添加内容,这样我就可以在SPEC_BEGIN的@implementation中添加函数,但这似乎也不起作用。

更正 ...我可以通过手动编码SPEC_END宏来管理某些工作。我结束了错误的位置。但仍然失败,因为该方法不在@interface

3 个答案:

答案 0 :(得分:34)

在SPEC_BEGIN:

之后创建辅助函数作为块
SPEC_BEGIN(MySpec) 

NSDate* (^dateFromString) (NSString *) = ^NSDate* (NSString *dateString) {
    NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];
    [dateFormatter setTimeStyle:NSDateFormatterNoStyle];
    [dateFormatter setDateFormat:@"MM-dd-yyyy"];
    return [dateFormatter dateFromString:dateString];
};


describe(@"something", ^{
    NSDate *checkDate = dateFromString(@"12-01-2005");

...
});

SPEC_END

答案 1 :(得分:8)

您还可以在SPEC_BEGIN()范围之上创建直接C函数。

NSString *makeAString () {
    return @"A String";
}

或者,如果您具有将在多个Spec文件中使用的辅助函数,请将这些函数放在单独的文件中并导入标题。我发现这是清理规格的好方法。

答案 2 :(得分:5)

supermarin建议使用以下方法:

@implementation KWSpec(Additions)

+ (void)myHelperMethod:(Car*)car {
            [[car shouldNot] beNil];
        };

@end

SPEC_BEGIN(FooBarSpec)

describe(@"A newly manufactured car", ^{
    it(@"should not be nil", ^{
        [self myHelperMethod:[CarFactory makeNewCar]];
    });
});

SPEC_END

另一个选项是Doug suggests

SPEC_BEGIN(FooBarSpec)

void (^myHelperMethod)(Car*) = ^(Car* car){
        [[car shouldNot] beNil];
    };

describe(@"A newly manufactured car", ^{
    it(@"should not be nil", ^{
        myHelperMethod([CarFactory makeNewCar]);
    });
});

SPEC_END

它的好处在于它非常适合异步场景:

SPEC_BEGIN(FooBarSpec)

__block BOOL updated = NO;

void (^myHelperAsync)() = ^()
{
    [[expectFutureValue(theValue(updated)) shouldEventually] beYes];
};

describe(@"The updater", ^{
    it(@"should eventually update", ^{
         [[NSNotificationCenter defaultCenter] addObserverForName:"updated" 
                                                 object:nil 
                                                 queue:nil 
                                            usingBlock:^(NSNotification *notification)
         {
             updated = YES;
         }];
         [Updater startUpdating];
         myHelperAsync();
    });
});

SPEC_END

最后,如果您的帮助方法驻留在另一个类中,gantaa表示一个聪明的黑客:

@interface MyHelperClass

+(void)externalHelperMethod:(id)testCase forCar:(Car*)car
{
    void (^externalHelperMethodBlock)() = ^(){
        id self = testCase; //needed for Kiwi expectations to work
        [[car shouldNot] beNil];
    };
    externalHelperMethodBlock();
}

@end

SPEC_BEGIN(FooBarSpec)

describe(@"A newly manufactured car", ^{
    it(@"should not be nil", ^{
        [MyHelperClass externalHelperMethod:self forCar:[CarFactory makeNewCar]];
    });
});

SPEC_END