mirror of
https://github.com/mas-cli/mas
synced 2025-02-16 20:48:30 +00:00
Command structs are nested types of Mas. Renamed structs. Limit code visibility as much as possible. Standardize variable names. Standardize spacing. Fix a few tests. Disable a useless test. Remove unnecessary test stdout output. Get swift-format from Brewfile instead of from Package.swift since swift-format depends on an old version of swift-argument-parser. Signed-off-by: Ross Goldberg <484615+rgoldberg@users.noreply.github.com>
77 lines
2.5 KiB
Swift
77 lines
2.5 KiB
Swift
//
|
|
// OpenSpec.swift
|
|
// masTests
|
|
//
|
|
// Created by Ben Chatelain on 2019-01-03.
|
|
// Copyright © 2019 mas-cli. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
import Nimble
|
|
import Quick
|
|
|
|
@testable import mas
|
|
|
|
public class OpenSpec: QuickSpec {
|
|
override public func spec() {
|
|
let result = SearchResult(
|
|
trackId: 1111,
|
|
trackViewUrl: "fakescheme://some/url",
|
|
version: "0.0"
|
|
)
|
|
let storeSearch = StoreSearchMock()
|
|
let openCommand = OpenSystemCommandMock()
|
|
|
|
beforeSuite {
|
|
Mas.initialize()
|
|
}
|
|
describe("open command") {
|
|
beforeEach {
|
|
storeSearch.reset()
|
|
}
|
|
it("fails to open app with invalid ID") {
|
|
expect {
|
|
try Mas.Open.parse(["--", "-999"]).run(storeSearch: storeSearch, openCommand: openCommand)
|
|
}
|
|
.to(
|
|
beFailure { error in
|
|
expect(error) == .searchFailed
|
|
}
|
|
)
|
|
}
|
|
it("can't find app with unknown ID") {
|
|
expect {
|
|
try Mas.Open.parse(["999"]).run(storeSearch: storeSearch, openCommand: openCommand)
|
|
}
|
|
.to(
|
|
beFailure { error in
|
|
expect(error) == .noSearchResultsFound
|
|
}
|
|
)
|
|
}
|
|
it("opens app in MAS") {
|
|
storeSearch.apps[result.trackId] = result
|
|
|
|
expect {
|
|
try Mas.Open.parse([result.trackId.description])
|
|
.run(storeSearch: storeSearch, openCommand: openCommand)
|
|
}
|
|
.to(beSuccess())
|
|
expect(openCommand.arguments).toNot(beNil())
|
|
let url = URL(string: openCommand.arguments!.first!)
|
|
expect(url).toNot(beNil())
|
|
expect(url?.scheme) == "macappstore"
|
|
}
|
|
it("just opens MAS if no app specified") {
|
|
expect {
|
|
try Mas.Open.parse(["appstore"]).run(storeSearch: storeSearch, openCommand: openCommand)
|
|
}
|
|
.to(beSuccess())
|
|
expect(openCommand.arguments).toNot(beNil())
|
|
let url = URL(string: openCommand.arguments!.first!)
|
|
expect(url).toNot(beNil())
|
|
expect(url) == URL(string: "macappstore://")
|
|
}
|
|
}
|
|
}
|
|
}
|