* Update copyright holding and dates * compound IDE Macros updated * update copyright * update copyrights done * update templates and README
46 lines
1.5 KiB
Swift
46 lines
1.5 KiB
Swift
//
|
|
// Copyright 2025 Element Creations Ltd.
|
|
// Copyright 2025 New Vector Ltd.
|
|
//
|
|
// SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial.
|
|
// Please see LICENSE files in the repository root for full details.
|
|
//
|
|
|
|
import XCTest
|
|
|
|
@testable import ElementX
|
|
|
|
class URLTests: XCTestCase {
|
|
func testURLDirectoryName() {
|
|
let url: URL = "https://matrix.example.com/foo/bar/"
|
|
let directoryName = url.asDirectoryName()
|
|
XCTAssertEqual(directoryName, "matrix.example.com-foo-bar")
|
|
createDirectory(with: directoryName)
|
|
}
|
|
|
|
func testComplexURLDirectoryName() {
|
|
let url: URL = "https://us%3Aer:pa%40%3Ass@[2001:db8:85a3::8a2e:370:7334]:8443/..//folder/./fi%20le(1).html;p=1;q=2"
|
|
let directoryName = url.asDirectoryName()
|
|
XCTAssertEqual(directoryName, "us%3Aer-pa%40%3Ass@[2001-db8-85a3--8a2e-370-7334]-8443-..--folder-.-fi%20le(1).html;p=1;q=2")
|
|
createDirectory(with: directoryName)
|
|
}
|
|
|
|
// MARK: - Helpers
|
|
|
|
func createDirectory(with directoryName: String) {
|
|
let url = URL.temporaryDirectory.appending(path: directoryName)
|
|
try? FileManager.default.removeItem(at: url)
|
|
|
|
do {
|
|
try FileManager.default.createDirectory(at: url, withIntermediateDirectories: true)
|
|
} catch {
|
|
XCTFail("Invalid file path: \(error.localizedDescription)")
|
|
}
|
|
|
|
guard FileManager.default.directoryExists(at: url) else {
|
|
XCTFail("Invalid file path")
|
|
return
|
|
}
|
|
}
|
|
}
|