mas/Tests/masTests/Commands/OpenCommandSpec.swift

70 lines
2.3 KiB
Swift
Raw Normal View History

2019-01-04 01:22:26 +00:00
//
// OpenCommandSpec.swift
// masTests
2019-01-04 01:22:26 +00:00
//
// Created by Ben Chatelain on 2019-01-03.
// Copyright © 2019 mas-cli. All rights reserved.
//
2021-04-26 23:44:17 +00:00
import Foundation
2019-01-04 01:22:26 +00:00
import Nimble
2019-01-30 06:15:24 +00:00
import Quick
2019-01-04 01:22:26 +00:00
@testable import mas
2021-03-22 05:25:18 +00:00
2021-05-08 22:49:32 +00:00
public class OpenCommandSpec: QuickSpec {
2021-05-09 20:25:20 +00:00
override public func spec() {
2019-01-05 01:01:22 +00:00
let result = SearchResult(
trackId: 1111,
trackViewUrl: "fakescheme://some/url",
version: "0.0"
)
let storeSearch = StoreSearchMock()
let openCommand = OpenSystemCommandMock()
2019-01-05 01:01:22 +00:00
let cmd = OpenCommand(storeSearch: storeSearch, openCommand: openCommand)
2021-04-23 07:01:18 +00:00
beforeSuite {
Mas.initialize()
2021-04-23 07:01:18 +00:00
}
2019-01-05 01:01:22 +00:00
describe("open command") {
beforeEach {
storeSearch.reset()
}
it("fails to open app with invalid ID") {
let result = cmd.run(OpenCommand.Options(appId: "-999"))
2021-03-22 05:25:18 +00:00
expect(result)
.to(
beFailure { error in
expect(error) == .searchFailed
})
2019-01-05 01:01:22 +00:00
}
it("can't find app with unknown ID") {
let result = cmd.run(OpenCommand.Options(appId: "999"))
2021-03-22 05:25:18 +00:00
expect(result)
.to(
beFailure { error in
expect(error) == .noSearchResultsFound
})
2019-01-05 01:01:22 +00:00
}
it("opens app in MAS") {
storeSearch.apps[result.trackId] = result
let cmdResult = cmd.run(OpenCommand.Options(appId: result.trackId.description))
expect(cmdResult).to(beSuccess())
expect(openCommand.arguments).toNot(beNil())
let url = URL(string: openCommand.arguments!.first!)
expect(url).toNot(beNil())
expect(url?.scheme) == "macappstore"
2019-01-04 01:22:26 +00:00
}
it("just opens MAS if no app specified") {
let cmdResult = cmd.run(OpenCommand.Options(appId: "appstore"))
expect(cmdResult).to(beSuccess())
expect(openCommand.arguments).toNot(beNil())
let url = URL(string: openCommand.arguments!.first!)
expect(url).toNot(beNil())
expect(url) == URL(string: "macappstore://")
}
2019-01-04 01:22:26 +00:00
}
}
}