2018-12-30 06:57:06 +00:00
|
|
|
//
|
|
|
|
// HomeCommandSpec.swift
|
|
|
|
// MasKitTests
|
|
|
|
//
|
|
|
|
// Created by Ben Chatelain on 2018-12-29.
|
|
|
|
// Copyright © 2018 mas-cli. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
@testable import MasKit
|
|
|
|
import Result
|
|
|
|
import Quick
|
|
|
|
import Nimble
|
|
|
|
|
|
|
|
class HomeCommandSpec: QuickSpec {
|
|
|
|
override func spec() {
|
2019-01-05 00:54:00 +00:00
|
|
|
let result = SearchResult(
|
|
|
|
bundleId: "",
|
|
|
|
price: 0.0,
|
|
|
|
sellerName: "",
|
|
|
|
sellerUrl: "",
|
|
|
|
trackId: 1111,
|
|
|
|
trackName: "",
|
|
|
|
trackViewUrl: "mas preview url",
|
|
|
|
version: "0.0"
|
|
|
|
)
|
|
|
|
let storeSearch = MockStoreSearch()
|
|
|
|
let openCommand = MockOpenSystemCommand()
|
|
|
|
let cmd = HomeCommand(storeSearch: storeSearch, openCommand: openCommand)
|
|
|
|
|
2018-12-30 06:57:06 +00:00
|
|
|
describe("home command") {
|
2019-01-05 00:54:00 +00:00
|
|
|
beforeEach {
|
|
|
|
storeSearch.reset()
|
|
|
|
}
|
|
|
|
it("fails to open app with invalid ID") {
|
|
|
|
let result = cmd.run(HomeCommand.Options(appId: "-999"))
|
|
|
|
expect(result).to(beFailure { error in
|
|
|
|
expect(error) == .searchFailed
|
|
|
|
})
|
|
|
|
}
|
|
|
|
it("can't find app with unknown ID") {
|
|
|
|
let result = cmd.run(HomeCommand.Options(appId: "999"))
|
|
|
|
expect(result).to(beFailure { error in
|
|
|
|
expect(error) == .noSearchResultsFound
|
|
|
|
})
|
|
|
|
}
|
2018-12-30 06:57:06 +00:00
|
|
|
it("opens app on MAS Preview") {
|
2019-01-05 00:54:00 +00:00
|
|
|
storeSearch.apps[result.trackId] = result
|
|
|
|
|
|
|
|
let cmdResult = cmd.run(HomeCommand.Options(appId: result.trackId.description))
|
|
|
|
expect(cmdResult).to(beSuccess())
|
|
|
|
expect(openCommand.arguments).toNot(beNil())
|
|
|
|
expect(openCommand.arguments!.first!) == result.trackViewUrl
|
2018-12-30 06:57:06 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|