mas/Tests/masTests/Commands/SearchSpec.swift

50 lines
1.3 KiB
Swift
Raw Normal View History

2018-12-28 22:23:22 +00:00
//
// SearchSpec.swift
// masTests
2018-12-28 22:23:22 +00:00
//
// Created by Ben Chatelain on 2018-12-28.
// Copyright © 2018 mas-cli. All rights reserved.
//
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
@testable import mas
2021-03-22 05:25:18 +00:00
public class SearchSpec: QuickSpec {
override public func spec() {
let searcher = MockAppStoreSearcher()
2021-04-23 07:01:18 +00:00
beforeSuite {
MAS.initialize()
2021-04-23 07:01:18 +00:00
}
2018-12-28 22:23:22 +00:00
describe("search command") {
beforeEach {
searcher.reset()
}
it("can find slack") {
let mockResult = SearchResult(
trackId: 1111,
trackName: "slack",
trackViewUrl: "mas preview url",
version: "0.0"
)
searcher.apps[mockResult.trackId] = mockResult
expect {
try captureStream(stdout) {
try MAS.Search.parse(["slack"]).run(searcher: searcher)
}
}
== " 1111 slack (0.0)\n"
}
it("fails when searching for nonexistent app") {
expect {
try MAS.Search.parse(["nonexistent"]).run(searcher: searcher)
}
.to(throwError(MASError.noSearchResultsFound))
2018-12-28 22:23:22 +00:00
}
}
}
}