Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Avoid assertion failures in deinitializers #168

Merged
merged 1 commit into from
Dec 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 1 addition & 6 deletions Sources/WebDriver/Session.swift
Original file line number Diff line number Diff line change
Expand Up @@ -363,11 +363,6 @@ public class Session {
}

deinit {
do { try delete() }
catch let error as ErrorResponse {
assertionFailure("Error in Session.delete: \(error)")
} catch {
assertionFailure("Unexpected error in Session.delete: \(error)")
}
try? delete() // Call `delete` directly to handle errors.
}
}
27 changes: 15 additions & 12 deletions Sources/WinAppDriver/WinAppDriver.swift
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ public class WinAppDriver: WebDriver {
public static let defaultStartWaitTime: TimeInterval = 1.0

private let httpWebDriver: HTTPWebDriver
private let processTree: Win32ProcessTree?
private var processTree: Win32ProcessTree?
/// The write end of a pipe that is connected to the child process's stdin.
private let childStdinHandle: HANDLE?
private var childStdinHandle: HANDLE?

private init(
httpWebDriver: HTTPWebDriver,
Expand Down Expand Up @@ -115,16 +115,7 @@ public class WinAppDriver: WebDriver {
}

deinit {
if let processTree {
do {
try processTree.terminate(waitTime: TimeInterval.infinity)
} catch {
assertionFailure("WinAppDriver did not terminate within the expected time: \(error).")
}
}
if let childStdinHandle {
CloseHandle(childStdinHandle)
}
try? close() // Call close() directly to handle errors.
}

@discardableResult
Expand All @@ -135,4 +126,16 @@ public class WinAppDriver: WebDriver {
public func isInconclusiveInteraction(error: ErrorResponse.Status) -> Bool {
error == .winAppDriver_elementNotInteractable || httpWebDriver.isInconclusiveInteraction(error: error)
}

public func close() throws {
if let childStdinHandle {
CloseHandle(childStdinHandle)
self.childStdinHandle = nil
}

if let processTree {
try processTree.terminate(waitTime: TimeInterval.infinity)
self.processTree = nil
}
}
}