mas/Tests/MasKitTests/Commands/VendorCommandSpec.swift

59 lines
1.8 KiB
Swift
Raw Normal View History

2019-01-04 01:22:26 +00:00
//
// VendorCommandSpec.swift
// MasKitTests
//
// Created by Ben Chatelain on 2019-01-03.
// Copyright © 2019 mas-cli. All rights reserved.
//
import Nimble
2019-01-30 06:15:24 +00:00
import Quick
2019-01-04 01:22:26 +00:00
2021-03-22 05:25:18 +00:00
@testable import MasKit
2021-05-08 22:49:32 +00:00
public class VendorCommandSpec: QuickSpec {
2021-05-09 20:25:20 +00:00
override public func spec() {
2019-01-05 01:05:58 +00:00
let result = SearchResult(
trackId: 1111,
trackViewUrl: "https://awesome.app",
version: "0.0"
)
let storeSearch = StoreSearchMock()
let openCommand = OpenSystemCommandMock()
2019-01-05 01:05:58 +00:00
let cmd = VendorCommand(storeSearch: storeSearch, openCommand: openCommand)
2021-04-23 07:01:18 +00:00
beforeSuite {
MasKit.initialize()
}
2019-01-04 01:22:26 +00:00
describe("vendor command") {
2019-01-05 01:05:58 +00:00
beforeEach {
storeSearch.reset()
}
it("fails to open app with invalid ID") {
let result = cmd.run(VendorCommand.Options(appId: -999))
2021-03-22 05:25:18 +00:00
expect(result)
.to(
beFailure { error in
expect(error) == .searchFailed
})
2019-01-05 01:05:58 +00:00
}
it("can't find app with unknown ID") {
let result = cmd.run(VendorCommand.Options(appId: 999))
2021-03-22 05:25:18 +00:00
expect(result)
.to(
beFailure { error in
expect(error) == .noSearchResultsFound
})
2019-01-05 01:05:58 +00:00
}
it("opens vendor app page in browser") {
storeSearch.apps[result.trackId] = result
let cmdResult = cmd.run(VendorCommand.Options(appId: result.trackId))
2019-01-05 01:05:58 +00:00
expect(cmdResult).to(beSuccess())
expect(openCommand.arguments).toNot(beNil())
expect(openCommand.arguments!.first!) == result.sellerUrl
2019-01-04 01:22:26 +00:00
}
}
}
}