mas/Tests/masTests/Commands/VendorSpec.swift

56 lines
1.7 KiB
Swift
Raw Normal View History

2019-01-04 01:22:26 +00:00
//
// VendorSpec.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.
//
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
public class VendorSpec: QuickSpec {
override public func spec() {
let searcher = MockAppStoreSearcher()
let openCommand = MockOpenSystemCommand()
2019-01-05 01:05:58 +00:00
2021-04-23 07:01:18 +00:00
beforeSuite {
MAS.initialize()
2021-04-23 07:01:18 +00:00
}
2019-01-04 01:22:26 +00:00
describe("vendor command") {
2019-01-05 01:05:58 +00:00
beforeEach {
searcher.reset()
2019-01-05 01:05:58 +00:00
}
it("fails to open app with invalid ID") {
expect {
try MAS.Vendor.parse(["--", "-999"]).run(searcher: searcher, openCommand: openCommand)
}
.to(throwError())
2019-01-05 01:05:58 +00:00
}
it("can't find app with unknown ID") {
expect {
try MAS.Vendor.parse(["999"]).run(searcher: searcher, openCommand: openCommand)
}
.to(throwError(MASError.noSearchResultsFound))
2019-01-05 01:05:58 +00:00
}
it("opens vendor app page in browser") {
let mockResult = SearchResult(
sellerUrl: "https://awesome.app",
trackId: 1111,
trackViewUrl: "https://apps.apple.com/us/app/awesome/id1111?mt=12&uo=4",
version: "0.0"
)
searcher.apps[mockResult.trackId] = mockResult
expect {
try MAS.Vendor.parse([String(mockResult.trackId)])
.run(searcher: searcher, openCommand: openCommand)
return openCommand.arguments
}
== [mockResult.sellerUrl]
2019-01-04 01:22:26 +00:00
}
}
}
}