You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

56 lines
1.8 KiB

5 years ago
  1. /**
  2. Copyright 2018 Google Inc. All rights reserved.
  3. Licensed under the Apache License, Version 2.0 (the "License");
  4. you may not use this file except in compliance with the License.
  5. You may obtain a copy of the License at:
  6. http://www.apache.org/licenses/LICENSE-2.0
  7. Unless required by applicable law or agreed to in writing, software
  8. distributed under the License is distributed on an "AS IS" BASIS,
  9. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  10. See the License for the specific language governing permissions and
  11. limitations under the License.
  12. */
  13. #import "FBLPromise+Testing.h"
  14. BOOL FBLWaitForPromisesWithTimeout(NSTimeInterval timeout) {
  15. BOOL isTimedOut = NO;
  16. NSDate *timeoutDate = [NSDate dateWithTimeIntervalSinceNow:timeout];
  17. static NSTimeInterval const minimalTimeout = 0.01;
  18. static int64_t const minimalTimeToWait = (int64_t)(minimalTimeout * NSEC_PER_SEC);
  19. dispatch_time_t waitTime = dispatch_time(DISPATCH_TIME_NOW, minimalTimeToWait);
  20. dispatch_group_t dispatchGroup = FBLPromise.dispatchGroup;
  21. NSRunLoop *runLoop = NSRunLoop.currentRunLoop;
  22. while (dispatch_group_wait(dispatchGroup, waitTime)) {
  23. isTimedOut = timeoutDate.timeIntervalSinceNow < 0.0;
  24. if (isTimedOut) {
  25. break;
  26. }
  27. [runLoop runUntilDate:[NSDate dateWithTimeIntervalSinceNow:minimalTimeout]];
  28. }
  29. return !isTimedOut;
  30. }
  31. @implementation FBLPromise (TestingAdditions)
  32. // These properties are implemented in the FBLPromise class itself.
  33. @dynamic isPending;
  34. @dynamic isFulfilled;
  35. @dynamic isRejected;
  36. @dynamic pendingObjects;
  37. @dynamic value;
  38. @dynamic error;
  39. + (dispatch_group_t)dispatchGroup {
  40. static dispatch_group_t gDispatchGroup;
  41. static dispatch_once_t onceToken;
  42. dispatch_once(&onceToken, ^{
  43. gDispatchGroup = dispatch_group_create();
  44. });
  45. return gDispatchGroup;
  46. }
  47. @end