| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439 |
- // Copyright 2021 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.
- import FirebaseAuth
- import FirebaseCore
- import FirebaseStorage
- import XCTest
- @available(iOS 13.0, macOS 10.15, macCatalyst 13.0, tvOS 13.0, watchOS 6.0, *)
- class StorageAsyncAwait: StorageIntegrationCommon {
- func testGetMetadata() async throws {
- let ref = storage.reference().child("ios/public/1mb2")
- let result = try await ref.getMetadata()
- XCTAssertNotNil(result)
- }
- func testUpdateMetadata() async throws {
- let meta = StorageMetadata()
- meta.contentType = "lol/custom"
- meta.customMetadata = ["lol": "custom metadata is neat",
- "ちかてつ": "🚇",
- "shinkansen": "新幹線"]
- let ref = storage.reference(withPath: "ios/public/1mb2")
- let metadata = try await ref.updateMetadata(meta)
- XCTAssertEqual(meta.contentType, metadata.contentType)
- XCTAssertEqual(meta.customMetadata!["lol"], metadata.customMetadata!["lol"])
- XCTAssertEqual(meta.customMetadata!["ちかてつ"], metadata.customMetadata!["ちかてつ"])
- XCTAssertEqual(meta.customMetadata!["shinkansen"],
- metadata.customMetadata!["shinkansen"])
- }
- func testDelete() async throws {
- let objectLocation = "ios/public/fileToDelete"
- let ref = storage.reference(withPath: objectLocation)
- let data = try XCTUnwrap("Hello Swift World".data(using: .utf8), "Data construction failed")
- let result = try await ref.putDataAsync(data)
- XCTAssertNotNil(result)
- _ = try await ref.delete()
- // Next delete should fail and verify the first delete succeeded.
- var caughtError = false
- do {
- _ = try await ref.delete()
- } catch {
- caughtError = true
- let nsError = error as NSError
- XCTAssertEqual(nsError.code, StorageErrorCode.objectNotFound.rawValue)
- XCTAssertEqual(nsError.userInfo["ResponseErrorCode"] as? Int, 404)
- let underlyingError = try XCTUnwrap(nsError.userInfo[NSUnderlyingErrorKey] as? NSError)
- XCTAssertEqual(underlyingError.code, 404)
- XCTAssertEqual(underlyingError.domain, "com.google.HTTPStatus")
- }
- XCTAssertTrue(caughtError)
- }
- func testDeleteAfterPut() async throws {
- let ref = storage.reference(withPath: "ios/public/fileToDelete")
- let data = try XCTUnwrap("Hello Swift World".data(using: .utf8), "Data construction failed")
- let result = try await ref.putDataAsync(data)
- XCTAssertNotNil(result)
- let result2: Void = try await ref.delete()
- XCTAssertNotNil(result2)
- }
- func testSimplePutData() async throws {
- let ref = storage.reference(withPath: "ios/public/testBytesUpload")
- let data = try XCTUnwrap("Hello Swift World".data(using: .utf8), "Data construction failed")
- let result = try await ref.putDataAsync(data)
- XCTAssertNotNil(result)
- }
- func testSimplePutSpecialCharacter() async throws {
- let ref = storage.reference(withPath: "ios/public/-._~!$'()*,=:@&+;")
- let data = try XCTUnwrap("Hello Swift World-._~!$'()*,=:@&+;".data(using: .utf8),
- "Data construction failed")
- let result = try await ref.putDataAsync(data)
- XCTAssertNotNil(result)
- }
- func testSimplePutDataInBackgroundQueue() async throws {
- actor Background {
- func uploadData(_ ref: StorageReference) async throws -> StorageMetadata {
- let data = try XCTUnwrap(
- "Hello Swift World".data(using: .utf8),
- "Data construction failed"
- )
- XCTAssertFalse(Thread.isMainThread)
- return try await ref.putDataAsync(data)
- }
- }
- let ref = storage.reference(withPath: "ios/public/testBytesUpload")
- let result = try await Background().uploadData(ref)
- XCTAssertNotNil(result)
- }
- func testSimplePutEmptyData() async throws {
- let ref = storage.reference(withPath: "ios/public/testSimplePutEmptyData")
- let data = Data()
- let result = try await ref.putDataAsync(data)
- XCTAssertNotNil(result)
- }
- func testSimplePutDataUnauthorized() async throws {
- let objectLocation = "ios/private/secretfile.txt"
- let ref = storage.reference(withPath: objectLocation)
- let data = try XCTUnwrap("Hello Swift World".data(using: .utf8), "Data construction failed")
- do {
- _ = try await ref.putDataAsync(data)
- XCTFail("Unexpected success from unauthorized putData")
- } catch let StorageError.unauthorized(bucket, object, _) {
- XCTAssertEqual(bucket, "ios-opensource-samples.appspot.com")
- XCTAssertEqual(object, objectLocation)
- } catch {
- XCTFail("error failed to convert to StorageError.unauthorized \(error)")
- }
- }
- func testSimplePutDataUnauthorizedWithNSError() async throws {
- let objectLocation = "ios/private/secretfile.txt"
- let ref = storage.reference(withPath: objectLocation)
- let data = try XCTUnwrap("Hello Swift World".data(using: .utf8), "Data construction failed")
- do {
- _ = try await ref.putDataAsync(data)
- XCTFail("Unexpected success from unauthorized putData")
- } catch {
- let e = error as NSError
- XCTAssertEqual(e.domain, StorageErrorDomain)
- XCTAssertEqual(e.code, StorageErrorCode.unauthorized.rawValue)
- XCTAssertEqual(e.localizedDescription, "User does not have permission to access" +
- " gs://ios-opensource-samples.appspot.com/ios/private/secretfile.txt.")
- XCTAssertEqual(e.userInfo["ResponseErrorCode"] as? Int, 403)
- print(e)
- }
- }
- func testAttemptToUploadDirectoryShouldFail() async throws {
- // This `.numbers` file is actually a directory.
- let fileName = "HomeImprovement.numbers"
- let bundle = Bundle(for: StorageIntegrationCommon.self)
- let fileURL = try XCTUnwrap(bundle.url(forResource: fileName, withExtension: ""),
- "Failed to get filePath")
- let ref = storage.reference(withPath: "ios/public/" + fileName)
- do {
- _ = try await ref.putFileAsync(from: fileURL)
- XCTFail("Unexpected success from putFile of a directory")
- } catch let StorageError.unknown(reason, _) {
- XCTAssertTrue(reason.starts(with: "File at URL:"))
- XCTAssertTrue(reason.hasSuffix(
- "is not reachable. Ensure file URL is not a directory, symbolic link, or invalid url."
- ))
- } catch {
- XCTFail("error failed to convert to StorageError.unknown \(error)")
- }
- }
- func testPutFileWithSpecialCharacters() async throws {
- let fileName = "hello&+@_ .txt"
- let ref = storage.reference(withPath: "ios/public/" + fileName)
- let data = try XCTUnwrap("Hello Swift World".data(using: .utf8), "Data construction failed")
- let tmpDirURL = URL(fileURLWithPath: NSTemporaryDirectory())
- let fileURL = tmpDirURL.appendingPathComponent(#function + "hello.txt")
- try data.write(to: fileURL, options: .atomicWrite)
- let metadata = try await ref.putFileAsync(from: fileURL)
- XCTAssertEqual(fileName, metadata.name)
- let result = try await ref.getMetadata()
- XCTAssertNotNil(result)
- }
- func testSimplePutDataNoMetadata() async throws {
- let ref = storage.reference(withPath: "ios/public/testSimplePutDataNoMetadata")
- let data = try XCTUnwrap("Hello Swift World".data(using: .utf8), "Data construction failed")
- let result = try await ref.putDataAsync(data)
- XCTAssertNotNil(result)
- }
- func testSimplePutFileNoMetadata() async throws {
- let fileName = "hello&+@_ .txt"
- let ref = storage.reference(withPath: "ios/public/" + fileName)
- let data = try XCTUnwrap("Hello Swift World".data(using: .utf8), "Data construction failed")
- let tmpDirURL = URL(fileURLWithPath: NSTemporaryDirectory())
- let fileURL = tmpDirURL.appendingPathComponent("hello.txt")
- try data.write(to: fileURL, options: .atomicWrite)
- let result = try await ref.putFileAsync(from: fileURL)
- XCTAssertNotNil(result)
- }
- func testSimplePutFileWithAsyncProgress() async throws {
- var checkedProgress = false
- let ref = storage.reference(withPath: "ios/public/testSimplePutFile")
- let data = try XCTUnwrap("Hello Swift World".data(using: .utf8), "Data construction failed")
- let tmpDirURL = URL(fileURLWithPath: NSTemporaryDirectory())
- let fileURL = tmpDirURL.appendingPathComponent(#function + "hello.txt")
- try data.write(to: fileURL, options: .atomicWrite)
- var uploadedBytes: Int64 = -1
- let successMetadata = try await ref.putFileAsync(from: fileURL) { progress in
- if let completed = progress?.completedUnitCount {
- checkedProgress = true
- XCTAssertGreaterThanOrEqual(completed, uploadedBytes)
- uploadedBytes = completed
- }
- }
- XCTAssertEqual(successMetadata.size, 17)
- XCTAssertTrue(checkedProgress)
- }
- func testSimpleGetData() async throws {
- let ref = storage.reference(withPath: "ios/public/1mb2")
- let result = try await ref.data(maxSize: 1024 * 1024)
- XCTAssertNotNil(result)
- }
- func testSimpleGetDataWithTask() async throws {
- let ref = storage.reference(withPath: "ios/public/1mb2")
- let result = try await ref.data(maxSize: 1024 * 1024)
- XCTAssertNotNil(result)
- }
- func testSimpleGetDataInBackgroundQueue() async throws {
- actor Background {
- func data(from ref: StorageReference) async throws -> Data {
- XCTAssertFalse(Thread.isMainThread)
- return try await ref.data(maxSize: 1024 * 1024)
- }
- }
- let ref = storage.reference(withPath: "ios/public/1mb2")
- let result = try await Background().data(from: ref)
- XCTAssertNotNil(result)
- }
- func testSimpleGetDataTooSmall() async {
- let ref = storage.reference(withPath: "ios/public/1mb2")
- let max: Int64 = 1024
- do {
- _ = try await ref.data(maxSize: max)
- XCTFail("Unexpected success from getData too small")
- } catch let StorageError.downloadSizeExceeded(total, maxSize) {
- XCTAssertEqual(total, 1_048_576)
- XCTAssertEqual(maxSize, max)
- } catch {
- XCTFail("error failed to convert to StorageError.downloadSizeExceeded")
- }
- }
- func testSimpleGetDownloadURL() async throws {
- let ref = storage.reference(withPath: "ios/public/1mb2")
- // Download URL format is
- // "https://firebasestorage.googleapis.com:443/v0/b/{bucket}/o/{path}?alt=media&token={token}"
- let downloadURLPattern =
- "^https:\\/\\/firebasestorage.googleapis.com:443\\/v0\\/b\\/[^\\/]*\\/o\\/" +
- "ios%2Fpublic%2F1mb2\\?alt=media&token=[a-z0-9-]*$"
- let downloadURL = try await ref.downloadURL()
- let testRegex = try NSRegularExpression(pattern: downloadURLPattern)
- let urlString = downloadURL.absoluteString
- let range = NSRange(location: 0, length: urlString.count)
- XCTAssertNotNil(testRegex.firstMatch(in: urlString, options: [], range: range))
- }
- func testAsyncWrite() async throws {
- let ref = storage.reference(withPath: "ios/public/helloworld" + #function)
- let tmpDirURL = URL(fileURLWithPath: NSTemporaryDirectory())
- let fileURL = tmpDirURL.appendingPathComponent(#function + "hello.txt")
- let data = try XCTUnwrap("Hello Swift World".data(using: .utf8), "Data construction failed")
- _ = try await ref.putDataAsync(data)
- let url = try await ref.writeAsync(toFile: fileURL)
- XCTAssertEqual(url.lastPathComponent, #function + "hello.txt")
- }
- func testSimpleGetFile() throws {
- let expectation = self.expectation(description: #function)
- let ref = storage.reference(withPath: "ios/public/helloworld" + #function)
- let tmpDirURL = URL(fileURLWithPath: NSTemporaryDirectory())
- let fileURL = tmpDirURL.appendingPathComponent(#function + "hello.txt")
- let data = try XCTUnwrap("Hello Swift World".data(using: .utf8), "Data construction failed")
- Task {
- _ = try await ref.putDataAsync(data)
- let task = ref.write(toFile: fileURL)
- task.observe(StorageTaskStatus.success) { snapshot in
- do {
- let stringData = try String(contentsOf: fileURL, encoding: .utf8)
- XCTAssertEqual(stringData, "Hello Swift World")
- XCTAssertEqual(snapshot.description, "<State: Success>")
- } catch {
- XCTFail("Error processing success snapshot")
- }
- expectation.fulfill()
- }
- task.observe(StorageTaskStatus.progress) { snapshot in
- XCTAssertNil(snapshot.error, "Error should be nil")
- guard snapshot.progress != nil else {
- XCTFail("Missing progress")
- return
- }
- }
- task.observe(StorageTaskStatus.failure) { snapshot in
- XCTAssertNil(snapshot.error, "Error should be nil")
- }
- }
- waitForExpectations()
- }
- func testSimpleGetFileWithAsyncProgressCallbackAPI() async throws {
- var checkedProgress = false
- let ref = storage.reference().child("ios/public/1mb")
- let url = URL(fileURLWithPath: "\(NSTemporaryDirectory())/hello.txt")
- let fileURL = url
- var downloadedBytes: Int64 = 0
- var resumeAtBytes = 256 * 1024
- let successURL = try await ref.writeAsync(toFile: fileURL) { progress in
- if let completed = progress?.completedUnitCount {
- checkedProgress = true
- XCTAssertGreaterThanOrEqual(completed, downloadedBytes)
- downloadedBytes = completed
- if completed > resumeAtBytes {
- resumeAtBytes = Int.max
- }
- }
- }
- XCTAssertTrue(checkedProgress)
- XCTAssertEqual(successURL, url)
- XCTAssertEqual(resumeAtBytes, Int.max)
- }
- private func assertMetadata(actualMetadata: StorageMetadata,
- expectedContentType: String,
- expectedCustomMetadata: [String: String]) {
- XCTAssertEqual(actualMetadata.cacheControl, "cache-control")
- XCTAssertEqual(actualMetadata.contentDisposition, "content-disposition")
- XCTAssertEqual(actualMetadata.contentEncoding, "gzip")
- XCTAssertEqual(actualMetadata.contentLanguage, "de")
- XCTAssertEqual(actualMetadata.contentType, expectedContentType)
- XCTAssertEqual(actualMetadata.md5Hash?.count, 24)
- for (key, value) in expectedCustomMetadata {
- XCTAssertEqual(actualMetadata.customMetadata![key], value)
- }
- }
- private func assertMetadataNil(actualMetadata: StorageMetadata) {
- XCTAssertNil(actualMetadata.cacheControl)
- XCTAssertNil(actualMetadata.contentDisposition)
- XCTAssertEqual(actualMetadata.contentEncoding, "identity")
- XCTAssertNil(actualMetadata.contentLanguage)
- XCTAssertNil(actualMetadata.contentType)
- XCTAssertEqual(actualMetadata.md5Hash?.count, 24)
- XCTAssertNil(actualMetadata.customMetadata)
- }
- func testUpdateMetadata2() async throws {
- let ref = storage.reference(withPath: "ios/public/1mb2")
- let metadata = StorageMetadata()
- metadata.cacheControl = "cache-control"
- metadata.contentDisposition = "content-disposition"
- metadata.contentEncoding = "gzip"
- metadata.contentLanguage = "de"
- metadata.contentType = "content-type-a"
- metadata.customMetadata = ["a": "b"]
- let updatedMetadata = try await ref.updateMetadata(metadata)
- assertMetadata(actualMetadata: updatedMetadata,
- expectedContentType: "content-type-a",
- expectedCustomMetadata: ["a": "b"])
- let metadata2 = updatedMetadata
- metadata2.contentType = "content-type-b"
- metadata2.customMetadata = ["a": "b", "c": "d"]
- let metadata3 = try await ref.updateMetadata(metadata2)
- assertMetadata(actualMetadata: metadata3,
- expectedContentType: "content-type-b",
- expectedCustomMetadata: ["a": "b", "c": "d"])
- metadata.cacheControl = nil
- metadata.contentDisposition = nil
- metadata.contentEncoding = nil
- metadata.contentLanguage = nil
- metadata.contentType = nil
- metadata.customMetadata = nil
- let metadata4 = try await ref.updateMetadata(metadata)
- XCTAssertNotNil(metadata4)
- }
- func testPagedListFiles() async throws {
- let ref = storage.reference(withPath: "ios/public/list")
- let listResult = try await ref.list(maxResults: 2)
- XCTAssertEqual(listResult.items, [ref.child("a"), ref.child("b")])
- XCTAssertEqual(listResult.prefixes, [])
- let pageToken = try XCTUnwrap(listResult.pageToken)
- let listResult2 = try await ref.list(maxResults: 2, pageToken: pageToken)
- XCTAssertEqual(listResult2.items, [])
- XCTAssertEqual(listResult2.prefixes, [ref.child("prefix")])
- XCTAssertNil(listResult2.pageToken, "pageToken should be nil")
- }
- func testPagedListFilesError() async throws {
- let ref = storage.reference(withPath: "ios/public/list")
- do {
- let _: StorageListResult = try await ref.list(maxResults: 22222)
- XCTFail("Unexpected success from ref.list")
- } catch let StorageError.invalidArgument(message) {
- XCTAssertEqual(message, "Argument 'maxResults' must be between 1 and 1000 inclusive.")
- } catch {
- XCTFail("Unexpected error")
- }
- }
- func testListAllFiles() async throws {
- let ref = storage.reference(withPath: "ios/public/list")
- let listResult = try await ref.listAll()
- XCTAssertEqual(listResult.items, [ref.child("a"), ref.child("b")])
- XCTAssertEqual(listResult.prefixes, [ref.child("prefix")])
- XCTAssertNil(listResult.pageToken, "pageToken should be nil")
- }
- private func waitForExpectations() {
- let kTestTimeout = 60.0
- waitForExpectations(timeout: kTestTimeout,
- handler: { error in
- if let error {
- print(error)
- }
- })
- }
- }
|