mas/MasKitTests/Commands/InfoCommandSpec.swift

71 lines
2.1 KiB
Swift
Raw Normal View History

2018-12-28 22:23:22 +00:00
//
// InfoCommandSpec.swift
// MasKitTests
//
// Created by Ben Chatelain on 2018-12-28.
// Copyright © 2018 mas-cli. All rights reserved.
//
@testable import MasKit
import Nimble
2019-01-30 06:15:24 +00:00
import Quick
2018-12-28 22:23:22 +00:00
class InfoCommandSpec: QuickSpec {
override func spec() {
2019-01-08 01:33:03 +00: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 cmd = InfoCommand(storeSearch: storeSearch)
let expectedOutput = """
2019-01-30 06:15:24 +00:00
Awesome App 1.0 [2.0]
By: Awesome Dev
Released: Jan 7, 2019
Minimum OS: 10.14
Size: 1 KB
From: https://awesome.app
2019-01-08 01:33:03 +00:00
2019-01-30 06:15:24 +00:00
"""
2019-01-08 01:33:03 +00:00
2018-12-28 22:23:22 +00:00
describe("Info command") {
2019-01-08 01:33:03 +00:00
beforeEach {
storeSearch.reset()
}
it("fails to open app with invalid ID") {
let result = cmd.run(InfoCommand.Options(appId: -999))
2019-01-08 01:33:03 +00:00
expect(result).to(beFailure { error in
expect(error) == .searchFailed
})
}
it("can't find app with unknown ID") {
let result = cmd.run(InfoCommand.Options(appId: 999))
2019-01-08 01:33:03 +00:00
expect(result).to(beFailure { error in
expect(error) == .noSearchResultsFound
})
}
2018-12-28 22:23:22 +00:00
it("displays app details") {
2019-01-08 01:33:03 +00:00
storeSearch.apps[result.trackId] = result
let output = OutputListener()
output.openConsolePipe()
let result = cmd.run(InfoCommand.Options(appId: result.trackId))
2019-01-08 01:33:03 +00:00
expect(result).to(beSuccess())
2019-01-08 22:34:23 +00:00
// output is async so need to wait for contents to be updated
2019-01-09 05:23:58 +00:00
expect(output.contents).toEventuallyNot(beEmpty())
2019-01-08 22:34:23 +00:00
expect(output.contents) == expectedOutput
output.closeConsolePipe()
2018-12-28 22:23:22 +00:00
}
}
}
}