mas/Tests/masTests/Commands/SearchSpec.swift
Ross Goldberg c2892626d7
Fix search & uninstall tests.
Partial #592

Signed-off-by: Ross Goldberg <484615+rgoldberg@users.noreply.github.com>
2024-10-23 06:01:40 -04:00

49 lines
1.3 KiB
Swift

//
// SearchSpec.swift
// masTests
//
// Created by Ben Chatelain on 2018-12-28.
// Copyright © 2018 mas-cli. All rights reserved.
//
import Foundation
import Nimble
import Quick
@testable import mas
public class SearchSpec: QuickSpec {
override public func spec() {
let storeSearch = StoreSearchMock()
beforeSuite {
Mas.initialize()
}
describe("search command") {
beforeEach {
storeSearch.reset()
}
it("can find slack") {
let mockResult = SearchResult(
trackId: 1111,
trackName: "slack",
trackViewUrl: "mas preview url",
version: "0.0"
)
storeSearch.apps[mockResult.trackId] = mockResult
expect {
try captureStream(stdout) {
try Mas.Search.parse(["slack"]).run(storeSearch: storeSearch)
}
}
== " 1111 slack (0.0)\n"
}
it("fails when searching for nonexistent app") {
expect {
try Mas.Search.parse(["nonexistent"]).run(storeSearch: storeSearch)
}
.to(throwError(MASError.noSearchResultsFound))
}
}
}
}