mas/Tests/masTests/Commands/SearchSpec.swift

47 lines
1.2 KiB
Swift
Raw Normal View History

2018-12-28 15:23:22 -07:00
//
// SearchSpec.swift
// masTests
2018-12-28 15:23:22 -07:00
//
// Created by Ben Chatelain on 2018-12-28.
// Copyright © 2018 mas-cli. All rights reserved.
//
import Nimble
2019-01-29 23:15:24 -07:00
import Quick
2018-12-28 15:23:22 -07:00
@testable import mas
2021-03-21 22:25:18 -07:00
public class SearchSpec: QuickSpec {
override public func spec() {
let storeSearch = StoreSearchMock()
2021-04-23 00:01:18 -07:00
beforeSuite {
Mas.initialize()
2021-04-23 00:01:18 -07:00
}
2018-12-28 15:23:22 -07:00
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))
2018-12-28 15:23:22 -07:00
}
}
}
}