mirror of
https://github.com/mas-cli/mas
synced 2025-02-16 12:38:30 +00:00
Command structs are nested types of Mas. Renamed structs. Limit code visibility as much as possible. Standardize variable names. Standardize spacing. Fix a few tests. Disable a useless test. Remove unnecessary test stdout output. Get swift-format from Brewfile instead of from Package.swift since swift-format depends on an old version of swift-argument-parser. Signed-off-by: Ross Goldberg <484615+rgoldberg@users.noreply.github.com>
63 lines
1.8 KiB
Swift
63 lines
1.8 KiB
Swift
//
|
|
// HomeSpec.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 HomeSpec: QuickSpec {
|
|
override public func spec() {
|
|
let result = SearchResult(
|
|
trackId: 1111,
|
|
trackViewUrl: "mas preview url",
|
|
version: "0.0"
|
|
)
|
|
let storeSearch = StoreSearchMock()
|
|
let openCommand = OpenSystemCommandMock()
|
|
|
|
beforeSuite {
|
|
Mas.initialize()
|
|
}
|
|
describe("home command") {
|
|
beforeEach {
|
|
storeSearch.reset()
|
|
}
|
|
it("fails to open app with invalid ID") {
|
|
expect {
|
|
try Mas.Home.parse(["--", "-999"]).run(storeSearch: storeSearch, openCommand: openCommand)
|
|
}
|
|
.to(
|
|
beFailure { error in
|
|
expect(error) == .searchFailed
|
|
}
|
|
)
|
|
}
|
|
it("can't find app with unknown ID") {
|
|
expect {
|
|
try Mas.Home.parse(["999"]).run(storeSearch: storeSearch, openCommand: openCommand)
|
|
}
|
|
.to(
|
|
beFailure { error in
|
|
expect(error) == .noSearchResultsFound
|
|
}
|
|
)
|
|
}
|
|
it("opens app on MAS Preview") {
|
|
storeSearch.apps[result.trackId] = result
|
|
|
|
expect {
|
|
try Mas.Home.parse([String(result.trackId)]).run(storeSearch: storeSearch, openCommand: openCommand)
|
|
}
|
|
.to(beSuccess())
|
|
expect(openCommand.arguments).toNot(beNil())
|
|
expect(openCommand.arguments!.first!) == result.trackViewUrl
|
|
}
|
|
}
|
|
}
|
|
}
|