| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107 |
- // Copyright 2022 Google LLC
- //
- // Licensed under the Apache License, Version 2.0 (the "License");
- // you may not use this file except in compliance with the License.
- // You may obtain a copy of the License at
- //
- // http://www.apache.org/licenses/LICENSE-2.0
- //
- // Unless required by applicable law or agreed to in writing, software
- // distributed under the License is distributed on an "AS IS" BASIS,
- // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- // See the License for the specific language governing permissions and
- // limitations under the License.
- @testable import FirebaseStorage
- import Foundation
- import GTMSessionFetcherCore
- import XCTest
- @available(iOS 13, tvOS 13, macOS 10.15, macCatalyst 13, watchOS 7, *)
- class StorageDeleteTests: StorageTestHelpers {
- func testFetcherConfiguration() async {
- let testBlock = { (fetcher: GTMSessionFetcher!,
- response: GTMSessionFetcherTestResponse) in
- XCTAssertEqual(fetcher.request?.url, self.objectURL())
- XCTAssertEqual(fetcher.request?.httpMethod, "DELETE")
- let httpResponse = HTTPURLResponse(
- url: (fetcher.request?.url)!,
- statusCode: 200,
- httpVersion: "HTTP/1.1",
- headerFields: nil
- )
- response(httpResponse, nil, nil)
- }
- await StorageFetcherService.shared.updateTestBlock(testBlock)
- let path = objectPath()
- let ref = StorageReference(storage: storage(), path: path)
- do {
- let _ = try await ref.delete()
- } catch {
- // All testing is in test block.
- }
- }
- func testSuccessfulFetch() async {
- await StorageFetcherService.shared.updateTestBlock(successBlock())
- let path = objectPath()
- let ref = StorageReference(storage: storage(), path: path)
- do {
- let _ = try await ref.delete()
- } catch {
- // All testing is in test block.
- }
- }
- func testSuccessfulFetchWithEmulator() async {
- let storage = self.storage()
- storage.useEmulator(withHost: "localhost", port: 8080)
- let testBlock = successBlock(
- withURL: URL(string: "http://localhost:8080/v0/b/bucket/o/object")!
- )
- await StorageFetcherService.shared.updateTestBlock(successBlock())
- let path = objectPath()
- let ref = StorageReference(storage: storage, path: path)
- do {
- let _ = try await ref.delete()
- } catch {
- // All testing is in test block.
- }
- }
- func testUnsuccessfulFetchUnauthenticated() async {
- let storage = storage()
- await StorageFetcherService.shared.updateTestBlock(unauthenticatedBlock())
- let path = objectPath()
- let ref = StorageReference(storage: storage, path: path)
- do {
- try await ref.delete()
- } catch {
- XCTAssertEqual((error as NSError).code, StorageErrorCode.unauthenticated.rawValue)
- }
- }
- func testUnsuccessfulFetchUnauthorized() async {
- let storage = storage()
- await StorageFetcherService.shared.updateTestBlock(unauthorizedBlock())
- let path = objectPath()
- let ref = StorageReference(storage: storage, path: path)
- do {
- try await ref.delete()
- } catch {
- XCTAssertEqual((error as NSError).code, StorageErrorCode.unauthorized.rawValue)
- }
- }
- func testUnsuccessfulFetchObjectDoesntExist() async {
- let storage = storage()
- await StorageFetcherService.shared.updateTestBlock(notFoundBlock())
- let path = objectPath()
- let ref = StorageReference(storage: storage, path: path)
- do {
- try await ref.delete()
- } catch {
- XCTAssertEqual((error as NSError).code, StorageErrorCode.objectNotFound.rawValue)
- }
- }
- }
|