mirror of
https://github.com/mas-cli/mas
synced 2024-11-22 03:23:08 +00:00
d413d8cfa1
Move MasKitTests module to masTests. Rename MasKit enum as Mas. Upgrade swift-tools-version from 5.3 to 5.6.1. swift-tools-version 5.5+ is necessary to allow test code to import executable target code, to allow MasKit library code to be moved into the mas executable. Upgrade to swift-tools-version to 5.6.1 instead of to 5.5 because they support all the same macOS versions. Standardize comments. Signed-off-by: Ross Goldberg <484615+rgoldberg@users.noreply.github.com>
51 lines
1.5 KiB
Swift
51 lines
1.5 KiB
Swift
//
|
|
// SearchCommandSpec.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 SearchCommandSpec: QuickSpec {
|
|
override public func spec() {
|
|
let result = SearchResult(
|
|
trackId: 1111,
|
|
trackName: "slack",
|
|
trackViewUrl: "mas preview url",
|
|
version: "0.0"
|
|
)
|
|
let storeSearch = StoreSearchMock()
|
|
|
|
beforeSuite {
|
|
Mas.initialize()
|
|
}
|
|
describe("search command") {
|
|
beforeEach {
|
|
storeSearch.reset()
|
|
}
|
|
it("can find slack") {
|
|
storeSearch.apps[result.trackId] = result
|
|
|
|
let search = SearchCommand(storeSearch: storeSearch)
|
|
let searchOptions = SearchOptions(appName: "slack", price: false)
|
|
let result = search.run(searchOptions)
|
|
expect(result).to(beSuccess())
|
|
}
|
|
it("fails when searching for nonexistent app") {
|
|
let search = SearchCommand(storeSearch: storeSearch)
|
|
let searchOptions = SearchOptions(appName: "nonexistent", price: false)
|
|
let result = search.run(searchOptions)
|
|
expect(result)
|
|
.to(
|
|
beFailure { error in
|
|
expect(error) == .noSearchResultsFound
|
|
})
|
|
}
|
|
}
|
|
}
|
|
}
|