mas/Tests/masTests/Commands/UninstallSpec.swift

89 lines
2.9 KiB
Swift
Raw Normal View History

//
// UninstallSpec.swift
// masTests
//
// Created by Ben Chatelain on 2018-12-27.
// Copyright © 2018 mas-cli. All rights reserved.
//
2021-04-26 23:44:17 +00:00
import Foundation
import Nimble
2019-01-30 06:15:24 +00:00
import Quick
@testable import mas
2021-03-22 05:25:18 +00:00
public class UninstallSpec: QuickSpec {
override public func spec() {
2021-04-23 07:01:18 +00:00
beforeSuite {
MAS.initialize()
2021-04-23 07:01:18 +00:00
}
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)))
}
}
}
}
}