2018-12-30 06:57:06 +00:00
|
|
|
//
|
2024-10-01 22:55:04 +00:00
|
|
|
// HomeSpec.swift
|
2024-10-01 18:05:41 +00:00
|
|
|
// masTests
|
2018-12-30 06:57:06 +00:00
|
|
|
//
|
|
|
|
// Created by Ben Chatelain on 2018-12-29.
|
|
|
|
// Copyright © 2018 mas-cli. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
import Nimble
|
2019-01-30 06:15:24 +00:00
|
|
|
import Quick
|
2018-12-30 06:57:06 +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 HomeSpec: QuickSpec {
|
2024-10-02 10:24:02 +00:00
|
|
|
override public static func spec() {
|
2019-01-05 00:54:00 +00:00
|
|
|
let result = SearchResult(
|
|
|
|
trackId: 1111,
|
|
|
|
trackViewUrl: "mas preview url",
|
|
|
|
version: "0.0"
|
|
|
|
)
|
2019-01-06 21:01:08 +00:00
|
|
|
let storeSearch = StoreSearchMock()
|
|
|
|
let openCommand = OpenSystemCommandMock()
|
2019-01-05 00:54:00 +00:00
|
|
|
|
2021-04-23 07:01:18 +00:00
|
|
|
beforeSuite {
|
2024-10-01 18:05:41 +00:00
|
|
|
Mas.initialize()
|
2021-04-23 07:01:18 +00:00
|
|
|
}
|
2018-12-30 06:57:06 +00:00
|
|
|
describe("home command") {
|
2019-01-05 00:54:00 +00:00
|
|
|
beforeEach {
|
|
|
|
storeSearch.reset()
|
|
|
|
}
|
|
|
|
it("fails to open app with invalid ID") {
|
2024-10-01 22:55:04 +00:00
|
|
|
expect {
|
|
|
|
try Mas.Home.parse(["--", "-999"]).run(storeSearch: storeSearch, openCommand: openCommand)
|
|
|
|
}
|
2024-10-14 05:22:47 +00:00
|
|
|
.to(throwError())
|
2019-01-05 00:54:00 +00:00
|
|
|
}
|
|
|
|
it("can't find app with unknown ID") {
|
2024-10-01 22:55:04 +00:00
|
|
|
expect {
|
|
|
|
try Mas.Home.parse(["999"]).run(storeSearch: storeSearch, openCommand: openCommand)
|
|
|
|
}
|
2024-10-02 01:54:15 +00:00
|
|
|
.to(throwError(MASError.noSearchResultsFound))
|
2019-01-05 00:54:00 +00:00
|
|
|
}
|
2018-12-30 06:57:06 +00:00
|
|
|
it("opens app on MAS Preview") {
|
2019-01-05 00:54:00 +00:00
|
|
|
storeSearch.apps[result.trackId] = result
|
2024-10-01 22:55:04 +00:00
|
|
|
expect {
|
|
|
|
try Mas.Home.parse([String(result.trackId)]).run(storeSearch: storeSearch, openCommand: openCommand)
|
|
|
|
}
|
2024-10-02 01:54:15 +00:00
|
|
|
.toNot(throwError())
|
2019-01-05 00:54:00 +00:00
|
|
|
expect(openCommand.arguments).toNot(beNil())
|
|
|
|
expect(openCommand.arguments!.first!) == result.trackViewUrl
|
2018-12-30 06:57:06 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|