mas/Tests/masTests/Commands/UninstallSpec.swift
Ross Goldberg 880843d8e6
Rename *Mock as Mock*.
Resolve #585

Signed-off-by: Ross Goldberg <484615+rgoldberg@users.noreply.github.com>
2024-10-25 23:39:52 -04:00

88 lines
2.9 KiB
Swift

//
// UninstallSpec.swift
// masTests
//
// Created by Ben Chatelain on 2018-12-27.
// Copyright © 2018 mas-cli. All rights reserved.
//
import Foundation
import Nimble
import Quick
@testable import mas
public class UninstallSpec: QuickSpec {
override public func spec() {
beforeSuite {
MAS.initialize()
}
xdescribe("uninstall command") {
let appID: AppID = 12345
let app = MockSoftwareProduct(
appName: "Some App",
bundleIdentifier: "com.some.app",
bundlePath: "/tmp/Some.app",
bundleVersion: "1.0",
itemIdentifier: NSNumber(value: appID)
)
let mockLibrary = MockAppLibrary()
context("dry run") {
let uninstall = try! MAS.Uninstall.parse(["--dry-run", String(appID)])
beforeEach {
mockLibrary.reset()
}
it("can't remove a missing app") {
expect {
try uninstall.run(appLibrary: mockLibrary)
}
.to(throwError(MASError.notInstalled(appID: appID)))
}
it("finds an app") {
mockLibrary.installedApps.append(app)
expect {
try captureStream(stdout) {
try uninstall.run(appLibrary: mockLibrary)
}
}
== "==> 'Some App' '/tmp/Some.app'\n==> (not removed, dry run)\n"
}
}
context("wet run") {
let uninstall = try! MAS.Uninstall.parse([String(appID)])
beforeEach {
mockLibrary.reset()
}
it("can't remove a missing app") {
expect {
try uninstall.run(appLibrary: mockLibrary)
}
.to(throwError(MASError.notInstalled(appID: appID)))
}
it("removes an app") {
mockLibrary.installedApps.append(app)
expect {
try captureStream(stdout) {
try uninstall.run(appLibrary: mockLibrary)
}
}
.toNot(throwError())
}
it("fails if there is a problem with the trash command") {
var brokenApp = app
brokenApp.bundlePath = "/dev/null"
mockLibrary.installedApps.append(brokenApp)
expect {
try captureStream(stdout) {
try uninstall.run(appLibrary: mockLibrary)
}
}
.to(throwError(MASError.uninstallFailed(error: nil)))
}
}
}
}
}