mas/Tests/masTests/Commands/InfoSpec.swift

69 lines
2 KiB
Swift
Raw Normal View History

2018-12-28 15:23:22 -07:00
//
// InfoSpec.swift
// masTests
2018-12-28 15:23:22 -07:00
//
// Created by Ben Chatelain on 2018-12-28.
// Copyright © 2018 mas-cli. All rights reserved.
//
import Nimble
2019-01-29 23:15:24 -07:00
import Quick
2018-12-28 15:23:22 -07:00
@testable import mas
2021-03-21 22:25:18 -07:00
public class InfoSpec: QuickSpec {
2021-05-09 13:25:20 -07:00
override public func spec() {
2019-01-07 18:33:03 -07:00
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 = """
2021-03-21 22:25:18 -07:00
Awesome App 1.0 [2.0]
By: Awesome Dev
Released: 2019-01-07
Minimum OS: 10.14
Size: 1 KB
From: https://awesome.app
2021-04-28 21:10:50 -07:00
2021-03-21 22:25:18 -07:00
"""
2019-01-07 18:33:03 -07:00
2021-04-23 00:01:18 -07:00
beforeSuite {
Mas.initialize()
2021-04-23 00:01:18 -07:00
}
2018-12-28 15:23:22 -07:00
describe("Info command") {
2019-01-07 18:33:03 -07:00
beforeEach {
storeSearch.reset()
}
it("fails to open app with invalid ID") {
expect {
try Mas.Info.parse(["--", "-999"]).run(storeSearch: storeSearch)
}
.to(throwError(MASError.searchFailed))
2019-01-07 18:33:03 -07:00
}
it("can't find app with unknown ID") {
expect {
try Mas.Info.parse(["999"]).run(storeSearch: storeSearch)
}
.to(throwError(MASError.noSearchResultsFound))
2019-01-07 18:33:03 -07:00
}
2018-12-28 15:23:22 -07:00
it("displays app details") {
2019-01-07 18:33:03 -07:00
storeSearch.apps[result.trackId] = result
let output = OutputListener()
expect {
try Mas.Info.parse([String(result.trackId)]).run(storeSearch: storeSearch)
}
.toNot(throwError())
2019-01-08 15:34:23 -07:00
expect(output.contents) == expectedOutput
2018-12-28 15:23:22 -07:00
}
}
}
}