mirror of
https://github.com/mas-cli/mas
synced 2024-11-25 04:50:24 +00:00
39f77c01a9
Use `AppID` everywhere appropriate. Associated appID cleanup. Partial #478 Signed-off-by: Ross Goldberg <484615+rgoldberg@users.noreply.github.com>
55 lines
1.7 KiB
Swift
55 lines
1.7 KiB
Swift
//
|
|
// VendorSpec.swift
|
|
// masTests
|
|
//
|
|
// Created by Ben Chatelain on 2019-01-03.
|
|
// Copyright © 2019 mas-cli. All rights reserved.
|
|
//
|
|
|
|
import Nimble
|
|
import Quick
|
|
|
|
@testable import mas
|
|
|
|
public class VendorSpec: QuickSpec {
|
|
override public func spec() {
|
|
let result = SearchResult(
|
|
trackId: 1111,
|
|
trackViewUrl: "https://awesome.app",
|
|
version: "0.0"
|
|
)
|
|
let storeSearch = StoreSearchMock()
|
|
let openCommand = OpenSystemCommandMock()
|
|
|
|
beforeSuite {
|
|
Mas.initialize()
|
|
}
|
|
describe("vendor command") {
|
|
beforeEach {
|
|
storeSearch.reset()
|
|
}
|
|
it("fails to open app with invalid ID") {
|
|
expect {
|
|
try Mas.Vendor.parse(["--", "-999"]).run(storeSearch: storeSearch, openCommand: openCommand)
|
|
}
|
|
.to(throwError())
|
|
}
|
|
it("can't find app with unknown ID") {
|
|
expect {
|
|
try Mas.Vendor.parse(["999"]).run(storeSearch: storeSearch, openCommand: openCommand)
|
|
}
|
|
.to(throwError(MASError.noSearchResultsFound))
|
|
}
|
|
it("opens vendor app page in browser") {
|
|
storeSearch.apps[result.trackId] = result
|
|
expect {
|
|
try Mas.Vendor.parse([String(result.trackId)])
|
|
.run(storeSearch: storeSearch, openCommand: openCommand)
|
|
}
|
|
.toNot(throwError())
|
|
expect(openCommand.arguments).toNot(beNil())
|
|
expect(openCommand.arguments!.first!) == result.sellerUrl
|
|
}
|
|
}
|
|
}
|
|
}
|