@@ -252,7 +252,7 @@ + (void)configure:(Configuration *)configuration {
252
252
expect (@(secondSubscribed)).to (beFalsy ());
253
253
expect (@(errored)).to (beTruthy ());
254
254
});
255
-
255
+
256
256
qck_it (@" should not retain signals that are subscribed" , ^{
257
257
__weak RACSignal *weakSignal;
258
258
@autoreleasepool {
@@ -1985,6 +1985,20 @@ + (void)configure:(Configuration *)configuration {
1985
1985
expect (@(completed)).to (beTruthy ());
1986
1986
});
1987
1987
1988
+ qck_it (@" should dispose previous inner signal before subscribing to new inner signal" , ^{
1989
+ RACSubject *otherSignal = [RACSubject subject ];
1990
+ RACSignal *signal = [RACSignal createSignal: ^RACDisposable *(id <RACSubscriber> subscriber) {
1991
+ [otherSignal sendNext: @" foo" ];
1992
+ return nil ;
1993
+ }];
1994
+
1995
+ [subject sendNext: otherSignal];
1996
+ expect (values).to (equal (@[]));
1997
+
1998
+ [subject sendNext: signal ];
1999
+ expect (values).to (equal (@[]));
2000
+ });
2001
+
1988
2002
qck_it (@" should accept nil signals" , ^{
1989
2003
[subject sendNext: nil ];
1990
2004
[subject sendNext: [RACSignal createSignal: ^ RACDisposable * (id <RACSubscriber> subscriber) {
@@ -1997,6 +2011,37 @@ + (void)configure:(Configuration *)configuration {
1997
2011
expect (values).to (equal (expected));
1998
2012
});
1999
2013
2014
+ qck_it (@" should deliver in right order when inner signals deliver on multiple schedulers" , ^{
2015
+ for (int i = 0 ; i < 50 ; ++i) {
2016
+ @autoreleasepool {
2017
+ RACSignal *signalA = [[RACSignal return: @1 ]
2018
+ subscribeOn: [RACScheduler scheduler ]];
2019
+
2020
+ RACSignal *signalB = [[RACSignal return: @2 ]
2021
+ subscribeOn: [RACScheduler scheduler ]];
2022
+
2023
+ __block NSMutableArray *values = [NSMutableArray array ];
2024
+ RACSubject *subject = [RACSubject subject ];
2025
+
2026
+ __block atomic_bool completed = NO ;
2027
+ [[subject
2028
+ switchToLatest ]
2029
+ subscribeNext: ^(id x) {
2030
+ [values addObject: x];
2031
+ } completed: ^{
2032
+ expect (values.lastObject ).to (equal (@2 ));
2033
+ completed = YES ;
2034
+ }];
2035
+
2036
+ [subject sendNext: signalA];
2037
+ [subject sendNext: signalB];
2038
+ [subject sendCompleted ];
2039
+
2040
+ expect (completed).toEventually (beTruthy ());
2041
+ }
2042
+ }
2043
+ });
2044
+
2000
2045
qck_it (@" should return a cold signal" , ^{
2001
2046
__block NSUInteger subscriptions = 0 ;
2002
2047
RACSignal *signalOfSignals = [RACSignal createSignal: ^ RACDisposable * (id <RACSubscriber> subscriber) {
@@ -3264,7 +3309,7 @@ + (void)configure:(Configuration *)configuration {
3264
3309
qck_beforeEach (^{
3265
3310
signal = [[[RACSignal return: @0 ] concat: [RACSignal return: @1 ]] concat: [RACSignal return: @2 ]];
3266
3311
});
3267
-
3312
+
3268
3313
qck_it (@" should return true when the predicate is truthy for at least one value" , ^{
3269
3314
RACSignal *any = [signal any: ^BOOL (NSNumber *value) {
3270
3315
return value.integerValue > 0 ;
@@ -3280,7 +3325,7 @@ + (void)configure:(Configuration *)configuration {
3280
3325
expect (values).to (equal (@[@YES ]));
3281
3326
expect (@(completed)).to (equal (@YES ));
3282
3327
});
3283
-
3328
+
3284
3329
qck_it (@" should return false when the predicate is falsy for all values" , ^{
3285
3330
RACSignal *any = [signal any: ^BOOL (NSNumber *value) {
3286
3331
return value.integerValue == 3 ;
@@ -3322,7 +3367,7 @@ + (void)configure:(Configuration *)configuration {
3322
3367
qck_beforeEach (^{
3323
3368
signal = [[[RACSignal return: @0 ] concat: [RACSignal return: @1 ]] concat: [RACSignal return: @2 ]];
3324
3369
});
3325
-
3370
+
3326
3371
qck_it (@" should return true when all values pass" , ^{
3327
3372
RACSignal *all = [signal all: ^BOOL (NSNumber *value) {
3328
3373
return value.integerValue >= 0 ;
@@ -3338,7 +3383,7 @@ + (void)configure:(Configuration *)configuration {
3338
3383
expect (values).to (equal (@[@YES ]));
3339
3384
expect (@(completed)).to (equal (@YES ));
3340
3385
});
3341
-
3386
+
3342
3387
qck_it (@" should return false when at least one value fails" , ^{
3343
3388
RACSignal *all = [signal all: ^BOOL (NSNumber *value) {
3344
3389
return value.integerValue < 2 ;
0 commit comments