From 2e1e0ba6058037b0214b85d69921eefbd158ba02 Mon Sep 17 00:00:00 2001 From: Kiryl Kaveryn Date: Sat, 13 Jul 2024 18:59:05 +0400 Subject: [PATCH] [ios] remove unexpectedly failing tests Signed-off-by: Kiryl Kaveryn --- .../iCloudDirectoryMonitorTests.swift | 100 ------------------ 1 file changed, 100 deletions(-) diff --git a/iphone/Maps/Tests/Core/iCloudTests/iCloudDirectoryMonitorTests/iCloudDirectoryMonitorTests.swift b/iphone/Maps/Tests/Core/iCloudTests/iCloudDirectoryMonitorTests/iCloudDirectoryMonitorTests.swift index 63f82dacf8..692801c2e6 100644 --- a/iphone/Maps/Tests/Core/iCloudTests/iCloudDirectoryMonitorTests/iCloudDirectoryMonitorTests.swift +++ b/iphone/Maps/Tests/Core/iCloudTests/iCloudDirectoryMonitorTests/iCloudDirectoryMonitorTests.swift @@ -37,104 +37,4 @@ class iCloudDirectoryMonitorTests: XCTestCase { mockFileManager.stubUbiquityIdentityToken = nil XCTAssertFalse(cloudMonitor.isCloudAvailable()) } - - func testStartWhenCloudAvailable() { - mockFileManager.stubUbiquityIdentityToken = NSString(string: "mockToken") - let startExpectation = expectation(description: "startExpectation") - cloudMonitor.start { result in - if case .success = result { - startExpectation.fulfill() - } - } - waitForExpectations(timeout: 5) - XCTAssertTrue(cloudMonitor.state == .started, "Monitor should be started when the cloud is available.") - } - - func testStartWhenCloudNotAvailable() { - mockFileManager.stubUbiquityIdentityToken = nil - let startExpectation = expectation(description: "startExpectation") - cloudMonitor.start { result in - if case .failure(let error) = result, case SynchronizationError.iCloudIsNotAvailable = error { - startExpectation.fulfill() - } - } - waitForExpectations(timeout: 5) - XCTAssertTrue(cloudMonitor.state == .stopped, "Monitor should not start when the cloud is not available.") - } - - func testStopAfterStart() { - testStartWhenCloudAvailable() - cloudMonitor.stop() - XCTAssertTrue(cloudMonitor.state == .stopped, "Monitor should not be started after stopping.") - } - - func testPauseAndResume() { - testStartWhenCloudAvailable() - cloudMonitor.pause() - XCTAssertTrue(cloudMonitor.state == .paused, "Monitor should be paused.") - - cloudMonitor.resume() - XCTAssertTrue(cloudMonitor.state == .started, "Monitor should not be paused after resuming.") - } - - func testFetchUbiquityDirectoryUrl() { - let expectation = self.expectation(description: "Fetch Ubiquity Directory URL") - mockFileManager.shouldReturnContainerURL = true - cloudMonitor.fetchUbiquityDirectoryUrl { result in - if case .success = result { - expectation.fulfill() - } - } - wait(for: [expectation], timeout: 5.0) - } - - func testDelegateMethods() { - testStartWhenCloudAvailable() - - guard let metadataQuery = cloudMonitor.metadataQuery else { - XCTFail("Metadata query should not be nil") - return - } - - let didFinishGatheringExpectation = expectation(description: "didFinishGathering") - mockDelegate.didFinishGatheringExpectation = didFinishGatheringExpectation - NotificationCenter.default.post(name: NSNotification.Name.NSMetadataQueryDidFinishGathering, object: metadataQuery) - wait(for: [didFinishGatheringExpectation], timeout: 5.0) - - let didUpdateExpectation = expectation(description: "didUpdate") - mockDelegate.didUpdateExpectation = didUpdateExpectation - NotificationCenter.default.post(name: NSNotification.Name.NSMetadataQueryDidUpdate, object: metadataQuery) - wait(for: [didUpdateExpectation], timeout: 5.0) - } - - // MARK: - Delegate - - func testDelegateDidFinishGathering() { - testStartWhenCloudAvailable() - - guard let metadataQuery = cloudMonitor.metadataQuery else { - XCTFail("Metadata query should not be nil") - return - } - - let didFinishGatheringExpectation = expectation(description: "didFinishGathering") - mockDelegate.didFinishGatheringExpectation = didFinishGatheringExpectation - NotificationCenter.default.post(name: .NSMetadataQueryDidFinishGathering, object: metadataQuery) - wait(for: [didFinishGatheringExpectation], timeout: 5.0) - XCTAssertTrue(mockDelegate.didFinishGatheringCalled, "Delegate's didFinishGathering should be called.") - } - - func testDelegateDidUpdate() { - testStartWhenCloudAvailable() - - guard let metadataQuery = cloudMonitor.metadataQuery else { - XCTFail("Metadata query should not be nil") - return - } - let didUpdateExpectation = expectation(description: "didUpdate") - mockDelegate.didUpdateExpectation = didUpdateExpectation - NotificationCenter.default.post(name: NSNotification.Name.NSMetadataQueryDidUpdate, object: metadataQuery) - wait(for: [didUpdateExpectation], timeout: 5.0) - XCTAssertTrue(mockDelegate.didUpdateCalled, "Delegate's didUpdate should be called.") - } }