mirror of
https://github.com/mas-cli/mas
synced 2024-11-22 03:23:08 +00:00
2535e3da42
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>
77 lines
2.2 KiB
Swift
77 lines
2.2 KiB
Swift
//
|
|
// InfoSpec.swift
|
|
// masTests
|
|
//
|
|
// Created by Ben Chatelain on 2018-12-28.
|
|
// Copyright © 2018 mas-cli. All rights reserved.
|
|
//
|
|
|
|
import Nimble
|
|
import Quick
|
|
|
|
@testable import mas
|
|
|
|
public class InfoSpec: QuickSpec {
|
|
override public func spec() {
|
|
let result = SearchResult(
|
|
currentVersionReleaseDate: "2019-01-07T18:53:13Z",
|
|
fileSizeBytes: "1024",
|
|
minimumOsVersion: "10.14",
|
|
price: 2.0,
|
|
sellerName: "Awesome Dev",
|
|
trackId: 1111,
|
|
trackName: "Awesome App",
|
|
trackViewUrl: "https://awesome.app",
|
|
version: "1.0"
|
|
)
|
|
let storeSearch = StoreSearchMock()
|
|
let expectedOutput = """
|
|
Awesome App 1.0 [2.0]
|
|
By: Awesome Dev
|
|
Released: 2019-01-07
|
|
Minimum OS: 10.14
|
|
Size: 1 KB
|
|
From: https://awesome.app
|
|
|
|
"""
|
|
|
|
beforeSuite {
|
|
Mas.initialize()
|
|
}
|
|
describe("Info command") {
|
|
beforeEach {
|
|
storeSearch.reset()
|
|
}
|
|
it("fails to open app with invalid ID") {
|
|
expect {
|
|
try Mas.Info.parse(["--", "-999"]).run(storeSearch: storeSearch)
|
|
}
|
|
.to(
|
|
beFailure { error in
|
|
expect(error) == .searchFailed
|
|
}
|
|
)
|
|
}
|
|
it("can't find app with unknown ID") {
|
|
expect {
|
|
try Mas.Info.parse(["999"]).run(storeSearch: storeSearch)
|
|
}
|
|
.to(
|
|
beFailure { error in
|
|
expect(error) == .noSearchResultsFound
|
|
}
|
|
)
|
|
}
|
|
it("displays app details") {
|
|
storeSearch.apps[result.trackId] = result
|
|
let output = OutputListener()
|
|
|
|
expect {
|
|
try Mas.Info.parse([String(result.trackId)]).run(storeSearch: storeSearch)
|
|
}
|
|
.to(beSuccess())
|
|
expect(output.contents) == expectedOutput
|
|
}
|
|
}
|
|
}
|
|
}
|