This PR contains the work done to support input parameters for the `create` command of the executable target, and to render content dynamically for the newly-generated project. Reviewed-on: #4 Co-authored-by: Javier Cicchelli <javier@rock-n-code.com> Co-committed-by: Javier Cicchelli <javier@rock-n-code.com>
56 lines
1.4 KiB
Swift
56 lines
1.4 KiB
Swift
import ColibriLibrary
|
|
import Foundation
|
|
|
|
final class FileServiceSpy {
|
|
|
|
// MARK: Properties
|
|
|
|
private(set) var actions: [Action] = []
|
|
|
|
}
|
|
|
|
// MARK: - FileServicing
|
|
|
|
extension FileServiceSpy: FileServicing {
|
|
|
|
var currentFolder: URL {
|
|
get async { .someCurrentFolder }
|
|
}
|
|
|
|
func copyFile(from source: URL, to destination: URL) async throws (FileServiceError) {
|
|
actions.append(.fileCopied(source, destination))
|
|
}
|
|
|
|
func createFile(at location: URL, with data: Data) async throws (FileServiceError) {
|
|
actions.append(.fileCreated(location, data))
|
|
}
|
|
|
|
func createFolder(at location: URL) async throws (FileServiceError) {
|
|
actions.append(.folderCreated(location))
|
|
}
|
|
|
|
func deleteItem(at location: URL) async throws (FileServiceError) {
|
|
actions.append(.itemDeleted(location))
|
|
}
|
|
|
|
@discardableResult
|
|
func isItemExists(at location: URL) async throws (FileServiceError) -> Bool {
|
|
actions.append(.itemExists(location))
|
|
|
|
return .random()
|
|
}
|
|
|
|
}
|
|
|
|
// MARK: - Action
|
|
|
|
extension FileServiceSpy {
|
|
enum Action: Equatable {
|
|
case fileCreated(_ location: URL, _ data: Data)
|
|
case fileCopied(_ source: URL, _ destination: URL)
|
|
case folderCreated(_ location: URL)
|
|
case itemDeleted(_ location: URL)
|
|
case itemExists(_ location: URL)
|
|
}
|
|
}
|