2018-12-28 22:23:22 +00:00
|
|
|
//
|
2024-10-01 22:55:04 +00:00
|
|
|
// InfoSpec.swift
|
2024-10-01 18:05:41 +00:00
|
|
|
// masTests
|
2018-12-28 22:23:22 +00:00
|
|
|
//
|
|
|
|
// Created by Ben Chatelain on 2018-12-28.
|
|
|
|
// Copyright © 2018 mas-cli. All rights reserved.
|
|
|
|
//
|
|
|
|
|
2024-10-02 13:49:30 +00:00
|
|
|
import Foundation
|
2018-12-28 22:23:22 +00:00
|
|
|
import Nimble
|
2019-01-30 06:15:24 +00:00
|
|
|
import Quick
|
2018-12-28 22:23:22 +00:00
|
|
|
|
2024-10-01 18:05:41 +00:00
|
|
|
@testable import mas
|
2021-03-22 05:25:18 +00:00
|
|
|
|
2024-10-01 22:55:04 +00:00
|
|
|
public class InfoSpec: QuickSpec {
|
2024-10-18 14:28:44 +00:00
|
|
|
override public func spec() {
|
2024-10-26 00:29:17 +00:00
|
|
|
let searcher = MockAppStoreSearcher()
|
2019-01-08 01:33:03 +00:00
|
|
|
|
2021-04-23 07:01:18 +00:00
|
|
|
beforeSuite {
|
2024-10-25 17:21:19 +00:00
|
|
|
MAS.initialize()
|
2021-04-23 07:01:18 +00:00
|
|
|
}
|
2018-12-28 22:23:22 +00:00
|
|
|
describe("Info command") {
|
2019-01-08 01:33:03 +00:00
|
|
|
beforeEach {
|
2024-10-26 00:29:17 +00:00
|
|
|
searcher.reset()
|
2019-01-08 01:33:03 +00:00
|
|
|
}
|
|
|
|
it("fails to open app with invalid ID") {
|
2024-10-01 22:55:04 +00:00
|
|
|
expect {
|
2024-10-26 00:29:17 +00:00
|
|
|
try MAS.Info.parse(["--", "-999"]).run(searcher: searcher)
|
2024-10-01 22:55:04 +00:00
|
|
|
}
|
2024-10-14 05:22:47 +00:00
|
|
|
.to(throwError())
|
2019-01-08 01:33:03 +00:00
|
|
|
}
|
|
|
|
it("can't find app with unknown ID") {
|
2024-10-01 22:55:04 +00:00
|
|
|
expect {
|
2024-10-26 00:29:17 +00:00
|
|
|
try MAS.Info.parse(["999"]).run(searcher: searcher)
|
2024-10-01 22:55:04 +00:00
|
|
|
}
|
2024-10-02 01:54:15 +00:00
|
|
|
.to(throwError(MASError.noSearchResultsFound))
|
2019-01-08 01:33:03 +00:00
|
|
|
}
|
2018-12-28 22:23:22 +00:00
|
|
|
it("displays app details") {
|
2024-10-02 02:16:06 +00:00
|
|
|
let mockResult = 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"
|
|
|
|
)
|
2024-10-26 00:29:17 +00:00
|
|
|
searcher.apps[mockResult.trackId] = mockResult
|
2024-10-01 22:55:04 +00:00
|
|
|
expect {
|
2024-10-02 13:49:30 +00:00
|
|
|
try captureStream(stdout) {
|
2024-10-26 00:29:17 +00:00
|
|
|
try MAS.Info.parse([String(mockResult.trackId)]).run(searcher: searcher)
|
2024-10-02 13:49:30 +00:00
|
|
|
}
|
2024-10-01 22:55:04 +00:00
|
|
|
}
|
2024-10-02 13:49:30 +00:00
|
|
|
== """
|
2024-10-02 02:16:06 +00: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
|
|
|
|
|
|
|
|
"""
|
2018-12-28 22:23:22 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|