mirror of
https://github.com/mas-cli/mas
synced 2025-02-16 12:38:30 +00:00
Move MasKitTests module to masTests. Rename MasKit enum as Mas. Upgrade swift-tools-version from 5.3 to 5.6.1. swift-tools-version 5.5+ is necessary to allow test code to import executable target code, to allow MasKit library code to be moved into the mas executable. Upgrade to swift-tools-version to 5.6.1 instead of to 5.5 because they support all the same macOS versions. Standardize comments. Signed-off-by: Ross Goldberg <484615+rgoldberg@users.noreply.github.com>
58 lines
1.8 KiB
Swift
58 lines
1.8 KiB
Swift
//
|
|
// HomeCommandSpec.swift
|
|
// masTests
|
|
//
|
|
// Created by Ben Chatelain on 2018-12-29.
|
|
// Copyright © 2018 mas-cli. All rights reserved.
|
|
//
|
|
|
|
import Nimble
|
|
import Quick
|
|
|
|
@testable import mas
|
|
|
|
public class HomeCommandSpec: QuickSpec {
|
|
override public func spec() {
|
|
let result = SearchResult(
|
|
trackId: 1111,
|
|
trackViewUrl: "mas preview url",
|
|
version: "0.0"
|
|
)
|
|
let storeSearch = StoreSearchMock()
|
|
let openCommand = OpenSystemCommandMock()
|
|
let cmd = HomeCommand(storeSearch: storeSearch, openCommand: openCommand)
|
|
|
|
beforeSuite {
|
|
Mas.initialize()
|
|
}
|
|
describe("home command") {
|
|
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
|
|
})
|
|
}
|
|
it("opens app on MAS Preview") {
|
|
storeSearch.apps[result.trackId] = result
|
|
|
|
let cmdResult = cmd.run(HomeCommand.Options(appId: result.trackId))
|
|
expect(cmdResult).to(beSuccess())
|
|
expect(openCommand.arguments).toNot(beNil())
|
|
expect(openCommand.arguments!.first!) == result.trackViewUrl
|
|
}
|
|
}
|
|
}
|
|
}
|