@@ -1563,39 +1563,84 @@ - (void)testDelayedCancelFetchWithCallback {
1563
1563
[self internalCancelFetchWithCallback: 1 ];
1564
1564
}
1565
1565
1566
+ - (void )testDelayedCancelFetchWithCallback_WithoutFetcherService {
1567
+ _fetcherService = nil ;
1568
+ [self internalCancelFetchWithCallback: 1 ];
1569
+ }
1570
+
1566
1571
- (void )testImmediateCancelFetchWithCallback {
1567
1572
[self internalCancelFetchWithCallback: 0 ];
1568
1573
}
1569
1574
1575
+ - (void )testImmediateCancelFetchWithCallback_WithoutFetcherService {
1576
+ _fetcherService = nil ;
1577
+ [self internalCancelFetchWithCallback: 0 ];
1578
+ }
1579
+
1570
1580
- (void )testDelayedSyncAuthCancelFetchWithCallback {
1571
1581
[self internalCancelFetchWithCallback: 1 authorizer: [TestAuthorizer syncAuthorizer ]];
1572
1582
}
1573
1583
1584
+ - (void )testDelayedSyncAuthCancelFetchWithCallback_WithoutFetcherService {
1585
+ _fetcherService = nil ;
1586
+ [self internalCancelFetchWithCallback: 1 authorizer: [TestAuthorizer syncAuthorizer ]];
1587
+ }
1588
+
1574
1589
- (void )testImmediateSyncAuthCancelFetchWithCallback {
1575
1590
XCTSkip (@" Has failed on CI, but not locally, needs investigation." );
1576
1591
[self internalCancelFetchWithCallback: 0 authorizer: [TestAuthorizer syncAuthorizer ]];
1577
1592
}
1578
1593
1594
+ - (void )testImmediateSyncAuthCancelFetchWithCallback_WithoutFetcherService {
1595
+ _fetcherService = nil ;
1596
+ XCTSkip (@" Has failed on CI, but not locally, needs investigation." );
1597
+ [self internalCancelFetchWithCallback: 0 authorizer: [TestAuthorizer syncAuthorizer ]];
1598
+ }
1599
+
1579
1600
- (void )testDelayedAsyncAuthCancelFetchWithCallback {
1580
1601
XCTSkip (@" Currently fails, needs fixing." );
1581
1602
[self internalCancelFetchWithCallback: 1 authorizer: [TestAuthorizer asyncAuthorizer ]];
1582
1603
}
1583
1604
1605
+ - (void )testDelayedAsyncAuthCancelFetchWithCallback_WithoutFetcherService {
1606
+ _fetcherService = nil ;
1607
+ XCTSkip (@" Currently fails, needs fixing." );
1608
+ [self internalCancelFetchWithCallback: 1 authorizer: [TestAuthorizer asyncAuthorizer ]];
1609
+ }
1610
+
1584
1611
- (void )testImmediateAsyncAuthCancelFetchWithCallback {
1585
1612
XCTSkip (@" Currently fails, needs fixing." );
1586
1613
[self internalCancelFetchWithCallback: 0 authorizer: [TestAuthorizer asyncAuthorizer ]];
1587
1614
}
1588
1615
1616
+ - (void )testImmediateAsyncAuthCancelFetchWithCallback_WithoutFetcherService {
1617
+ _fetcherService = nil ;
1618
+ XCTSkip (@" Currently fails, needs fixing." );
1619
+ [self internalCancelFetchWithCallback: 0 authorizer: [TestAuthorizer asyncAuthorizer ]];
1620
+ }
1621
+
1589
1622
- (void )testDelayedAsyncDelayedAuthCancelFetchWithCallback {
1590
1623
XCTSkip (@" Currently fails, needs fixing." );
1591
1624
[self internalCancelFetchWithCallback: 1 authorizer: [TestAuthorizer asyncAuthorizerDelayed: 2 ]];
1592
1625
}
1593
1626
1627
+ - (void )testDelayedAsyncDelayedAuthCancelFetchWithCallback_WithoutFetcherService {
1628
+ _fetcherService = nil ;
1629
+ XCTSkip (@" Currently fails, needs fixing." );
1630
+ [self internalCancelFetchWithCallback: 1 authorizer: [TestAuthorizer asyncAuthorizerDelayed: 2 ]];
1631
+ }
1632
+
1594
1633
- (void )testImmediateAsyncDelayedAuthCancelFetchWithCallback {
1595
1634
XCTSkip (@" Currently fails, needs fixing." );
1596
1635
[self internalCancelFetchWithCallback: 0 authorizer: [TestAuthorizer asyncAuthorizerDelayed: 1 ]];
1597
1636
}
1598
1637
1638
+ - (void )testImmediateAsyncDelayedAuthCancelFetchWithCallback_WithoutFetcherService {
1639
+ _fetcherService = nil ;
1640
+ XCTSkip (@" Currently fails, needs fixing." );
1641
+ [self internalCancelFetchWithCallback: 0 authorizer: [TestAuthorizer asyncAuthorizerDelayed: 1 ]];
1642
+ }
1643
+
1599
1644
- (void )internalCancelFetchWithCallback : (unsigned int )sleepTime {
1600
1645
[self internalCancelFetchWithCallback: sleepTime authorizer: nil ];
1601
1646
}
0 commit comments