mas/MasKitTests/Controllers/AppLibraryMock.swift

45 lines
1.2 KiB
Swift
Raw Normal View History

//
// AppLibraryMock.swift
// MasKitTests
//
// Created by Ben Chatelain on 12/27/18.
// Copyright © 2018 mas-cli. All rights reserved.
//
@testable import MasKit
class AppLibraryMock: AppLibrary {
var installedApps = [SoftwareProduct]()
/// Finds an app using a bundle identifier.
///
/// - Parameter bundleId: Bundle identifier of app.
/// - Returns: Software Product of app if found; nil otherwise.
2019-01-30 06:15:24 +00:00
public func installedApp(forBundleId _: String) -> SoftwareProduct? {
2021-03-22 05:46:17 +00:00
nil
}
func uninstallApp(app: SoftwareProduct) throws {
2021-04-21 22:13:38 +00:00
if !installedApps.contains(where: { product -> Bool in
2019-01-30 06:15:24 +00:00
app.itemIdentifier == product.itemIdentifier
2021-03-22 05:25:18 +00:00
}) {
throw MASError.notInstalled
}
// Special case for testing where we pretend the trash command failed
if app.bundlePath == "/dev/null" {
throw MASError.uninstallFailed
}
// Success is the default, watch out for false positives!
}
}
/// Members not part of the AppLibrary protocol that are only for test state managment.
extension AppLibraryMock {
/// Clears out the list of installed apps.
func reset() {
installedApps = []
}
}