2019-01-04 01:22:26 +00:00
|
|
|
//
|
2024-10-01 22:55:04 +00:00
|
|
|
// OpenSpec.swift
|
2024-10-01 18:05:41 +00:00
|
|
|
// masTests
|
2019-01-04 01:22:26 +00:00
|
|
|
//
|
|
|
|
// Created by Ben Chatelain on 2019-01-03.
|
|
|
|
// Copyright © 2019 mas-cli. All rights reserved.
|
|
|
|
//
|
|
|
|
|
2021-04-26 23:44:17 +00:00
|
|
|
import Foundation
|
2019-01-04 01:22:26 +00:00
|
|
|
import Nimble
|
2019-01-30 06:15:24 +00:00
|
|
|
import Quick
|
2019-01-04 01:22:26 +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 OpenSpec: QuickSpec {
|
2024-10-18 14:28:44 +00:00
|
|
|
override public func spec() {
|
2024-10-26 00:29:17 +00:00
|
|
|
let searcher = MockAppStoreSearcher()
|
2024-10-26 03:09:31 +00:00
|
|
|
let openCommand = MockOpenSystemCommand()
|
2019-01-05 01:01:22 +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
|
|
|
}
|
2019-01-05 01:01:22 +00:00
|
|
|
describe("open command") {
|
|
|
|
beforeEach {
|
2024-10-26 00:29:17 +00:00
|
|
|
searcher.reset()
|
2019-01-05 01:01:22 +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.Open.parse(["--", "-999"]).run(searcher: searcher, openCommand: openCommand)
|
2024-10-01 22:55:04 +00:00
|
|
|
}
|
2024-10-14 05:22:47 +00:00
|
|
|
.to(throwError())
|
2019-01-05 01:01:22 +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.Open.parse(["999"]).run(searcher: searcher, openCommand: openCommand)
|
2024-10-01 22:55:04 +00:00
|
|
|
}
|
2024-10-02 01:54:15 +00:00
|
|
|
.to(throwError(MASError.noSearchResultsFound))
|
2019-01-05 01:01:22 +00:00
|
|
|
}
|
|
|
|
it("opens app in MAS") {
|
2024-10-02 02:16:06 +00:00
|
|
|
let mockResult = SearchResult(
|
|
|
|
trackId: 1111,
|
|
|
|
trackViewUrl: "fakescheme://some/url",
|
|
|
|
version: "0.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-25 17:21:19 +00:00
|
|
|
try MAS.Open.parse([mockResult.trackId.description])
|
2024-10-26 00:29:17 +00:00
|
|
|
.run(searcher: searcher, openCommand: openCommand)
|
2024-10-02 02:16:06 +00:00
|
|
|
return openCommand.arguments
|
2024-10-01 22:55:04 +00:00
|
|
|
}
|
2024-10-02 02:16:06 +00:00
|
|
|
== ["macappstore://some/url"]
|
2019-01-04 01:22:26 +00:00
|
|
|
}
|
2019-01-12 06:30:04 +00:00
|
|
|
it("just opens MAS if no app specified") {
|
2024-10-01 22:55:04 +00:00
|
|
|
expect {
|
2024-10-26 00:29:17 +00:00
|
|
|
try MAS.Open.parse([]).run(searcher: searcher, openCommand: openCommand)
|
2024-10-02 02:16:06 +00:00
|
|
|
return openCommand.arguments
|
2024-10-01 22:55:04 +00:00
|
|
|
}
|
2024-10-02 02:16:06 +00:00
|
|
|
== ["macappstore://"]
|
2019-01-12 06:30:04 +00:00
|
|
|
}
|
2019-01-04 01:22:26 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|