mirror of
https://github.com/mas-cli/mas
synced 2024-11-22 19:43:09 +00:00
dccac33abb
Signed-off-by: Ross Goldberg <484615+rgoldberg@users.noreply.github.com>
46 lines
1.2 KiB
Swift
46 lines
1.2 KiB
Swift
//
|
|
// SearchSpec.swift
|
|
// masTests
|
|
//
|
|
// Created by Ben Chatelain on 2018-12-28.
|
|
// Copyright © 2018 mas-cli. All rights reserved.
|
|
//
|
|
|
|
import Nimble
|
|
import Quick
|
|
|
|
@testable import mas
|
|
|
|
public class SearchSpec: QuickSpec {
|
|
override public static 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 Mas.Search.parse(["slack"]).run(storeSearch: storeSearch)
|
|
}
|
|
.toNot(throwError())
|
|
}
|
|
it("fails when searching for nonexistent app") {
|
|
expect {
|
|
try Mas.Search.parse(["nonexistent"]).run(storeSearch: storeSearch)
|
|
}
|
|
.to(throwError(MASError.noSearchResultsFound))
|
|
}
|
|
}
|
|
}
|
|
}
|