mirror of
https://github.com/mas-cli/mas
synced 2024-11-22 03:23:08 +00:00
c2892626d7
Partial #592 Signed-off-by: Ross Goldberg <484615+rgoldberg@users.noreply.github.com>
49 lines
1.3 KiB
Swift
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))
|
|
}
|
|
}
|
|
}
|
|
}
|