mirror of
https://github.com/nicoverbruggen/phpmon.git
synced 2025-08-07 20:10:08 +02:00
117 lines
3.5 KiB
Swift
117 lines
3.5 KiB
Swift
//
|
|
// TestableShell.swift
|
|
// PHP Monitor
|
|
//
|
|
// Created by Nico Verbruggen on 21/09/2022.
|
|
// Copyright © 2022 Nico Verbruggen. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
public class TestableShell: Shellable {
|
|
var PATH: String {
|
|
return "/usr/local/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin"
|
|
}
|
|
|
|
init(expectations: [String: BatchFakeShellOutput]) {
|
|
self.expectations = expectations
|
|
}
|
|
|
|
var expectations: [String: BatchFakeShellOutput] = [:]
|
|
|
|
func quiet(_ command: String) async {
|
|
_ = try! await self.attach(command, didReceiveOutput: { _, _ in }, withTimeout: 60)
|
|
}
|
|
|
|
func pipe(_ command: String) async -> ShellOutput {
|
|
let (_, output) = try! await self.attach(command, didReceiveOutput: { _, _ in }, withTimeout: 60)
|
|
return output
|
|
}
|
|
|
|
func attach(
|
|
_ command: String,
|
|
didReceiveOutput: @escaping (String, ShellStream) -> Void,
|
|
withTimeout timeout: TimeInterval
|
|
) async throws -> (Process, ShellOutput) {
|
|
assert(expectations.keys.contains(command), "No response declared for command: \(command)")
|
|
|
|
guard let expectation = expectations[command] else {
|
|
return (Process(), .err("No Expected Output"))
|
|
}
|
|
|
|
let output = await expectation.output(didReceiveOutput: { output, type in
|
|
didReceiveOutput(output, type)
|
|
}, ignoreDelay: isRunningTests)
|
|
|
|
return (Process(), output)
|
|
}
|
|
}
|
|
|
|
struct FakeShellOutput {
|
|
let delay: TimeInterval
|
|
let output: String
|
|
let stream: ShellStream
|
|
|
|
static func instant(_ output: String, _ stream: ShellStream = .stdOut) -> FakeShellOutput {
|
|
return FakeShellOutput(delay: 0, output: output, stream: stream)
|
|
}
|
|
|
|
static func delayed(_ delay: TimeInterval, _ output: String, _ stream: ShellStream = .stdOut) -> FakeShellOutput {
|
|
return FakeShellOutput(delay: delay, output: output, stream: stream)
|
|
}
|
|
}
|
|
|
|
struct BatchFakeShellOutput {
|
|
var items: [FakeShellOutput]
|
|
|
|
static func with(_ items: [FakeShellOutput]) -> BatchFakeShellOutput {
|
|
return BatchFakeShellOutput(items: items)
|
|
}
|
|
|
|
static func instant(_ output: String, _ stream: ShellStream = .stdOut) -> BatchFakeShellOutput {
|
|
return BatchFakeShellOutput(items: [.instant(output, stream)])
|
|
}
|
|
|
|
static func delayed(
|
|
_ delay: TimeInterval,
|
|
_ output: String,
|
|
_ stream: ShellStream = .stdOut
|
|
) -> BatchFakeShellOutput {
|
|
return BatchFakeShellOutput(items: [.delayed(delay, output, stream)])
|
|
}
|
|
|
|
/**
|
|
Outputs the fake shell output as expected.
|
|
*/
|
|
public func output(
|
|
didReceiveOutput: @escaping (String, ShellStream) -> Void,
|
|
ignoreDelay: Bool = false
|
|
) async -> ShellOutput {
|
|
var output = ShellOutput(out: "", err: "")
|
|
|
|
for item in items {
|
|
if !ignoreDelay {
|
|
let delay = UInt64(item.delay * 1_000_000_000)
|
|
try! await Task.sleep(nanoseconds: delay)
|
|
}
|
|
|
|
if item.stream == .stdErr {
|
|
output.err += item.output
|
|
} else if item.stream == .stdOut {
|
|
output.out += item.output
|
|
}
|
|
}
|
|
|
|
return output
|
|
}
|
|
|
|
/**
|
|
For testing purposes (and speed) we may omit the delay, regardless of its timespan.
|
|
*/
|
|
public func outputInstantaneously(
|
|
didReceiveOutput: @escaping (String, ShellStream) -> Void = { _, _ in }
|
|
) async -> ShellOutput {
|
|
return await self.output(didReceiveOutput: didReceiveOutput, ignoreDelay: true)
|
|
}
|
|
}
|