summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJulian Rex <julian.rex@gmail.com>2018-06-18 14:24:14 -0400
committerGitHub <noreply@github.com>2018-06-18 14:24:14 -0400
commit87143a355d12fa4bfd3f094e187a8bab8148e7de (patch)
treeab04b44ab253a2b37eb4ce4abd9949aaa5f19807
parentc3857a9db861c0d435ad0ba3acd8564c82cc2283 (diff)
downloadqtlocation-mapboxgl-87143a355d12fa4bfd3f094e187a8bab8148e7de.tar.gz
[ios] Fix for integration tests not running on iOS 9. (#12145)
-rw-r--r--platform/ios/Integration Tests/MGLCameraTransitionTests.mm6
-rw-r--r--platform/ios/Integration Tests/MGLMapViewIntegrationTest.m25
2 files changed, 26 insertions, 5 deletions
diff --git a/platform/ios/Integration Tests/MGLCameraTransitionTests.mm b/platform/ios/Integration Tests/MGLCameraTransitionTests.mm
index 4a9db60982..0b28104c96 100644
--- a/platform/ios/Integration Tests/MGLCameraTransitionTests.mm
+++ b/platform/ios/Integration Tests/MGLCameraTransitionTests.mm
@@ -323,11 +323,7 @@
// Should take MGLAnimationDuration
[self.mapView setCenterCoordinate:target zoomLevel:zoomLevel animated:YES];
- // Run the loop, so the camera can fly to the new camera
- while (runloop) {
- [[NSRunLoop mainRunLoop] runMode:NSDefaultRunLoopMode beforeDate:[NSDate distantFuture]];
- }
- [self waitForExpectations:@[expectation] timeout:0.5];
+ [self waitForExpectations:@[expectation] timeout:2.0];
NSLog(@"setCenterCoordinate: %0.4fs", stop1 - stop0);
NSLog(@"flyToCamera: %0.4fs", stop2 - stop1);
diff --git a/platform/ios/Integration Tests/MGLMapViewIntegrationTest.m b/platform/ios/Integration Tests/MGLMapViewIntegrationTest.m
index c42b8eef89..8fb41d0d11 100644
--- a/platform/ios/Integration Tests/MGLMapViewIntegrationTest.m
+++ b/platform/ios/Integration Tests/MGLMapViewIntegrationTest.m
@@ -1,5 +1,9 @@
#import "MGLMapViewIntegrationTest.h"
+@interface MGLMapView (MGLMapViewIntegrationTest)
+- (void)updateFromDisplayLink;
+@end
+
@implementation MGLMapViewIntegrationTest
- (void)setUp {
@@ -78,6 +82,27 @@
[self waitForExpectations:@[self.renderFinishedExpectation] timeout:timeout];
}
+- (void)waitForExpectations:(NSArray<XCTestExpectation *> *)expectations timeout:(NSTimeInterval)seconds {
+
+ NSTimer *timer;
+
+ if (@available(iOS 10.0, *)) {
+ // We're good.
+ }
+ else if (self.mapView) {
+ // Before iOS 10 it seems that the display link is not called during the
+ // waitForExpectations below
+ timer = [NSTimer scheduledTimerWithTimeInterval:1.0/30.0
+ target:self.mapView
+ selector:@selector(updateFromDisplayLink)
+ userInfo:nil
+ repeats:YES];
+ }
+
+ [super waitForExpectations:expectations timeout:seconds];
+ [timer invalidate];
+}
+
- (MGLStyle *)style {
return self.mapView.style;
}