mas/Tests/masTests/Commands/SearchSpec.swift
Ross Goldberg 1b4c97f652
Use formattedPrice instead of price.
Improve price output.

Partial #597

Signed-off-by: Ross Goldberg <484615+rgoldberg@users.noreply.github.com>
2024-10-26 02:17:07 -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 searcher = MockAppStoreSearcher()
beforeSuite {
MAS.initialize()
}
describe("search command") {
beforeEach {
searcher.reset()
}
it("can find slack") {
let mockResult = SearchResult(
trackId: 1111,
trackName: "slack",
trackViewUrl: "mas preview url",
version: "0.0"
)
searcher.apps[mockResult.trackId] = mockResult
expect {
try captureStream(stdout) {
try MAS.Search.parse(["slack"]).run(searcher: searcher)
}
}
== " 1111 slack (0.0)\n"
}
it("fails when searching for nonexistent app") {
expect {
try MAS.Search.parse(["nonexistent"]).run(searcher: searcher)
}
.to(throwError(MASError.noSearchResultsFound))
}
}
}
}