mirror of
https://github.com/mas-cli/mas
synced 2024-11-22 19:43:09 +00:00
e46a59f322
Better input validation for home, info, open and vendor commands
34 lines
826 B
Swift
34 lines
826 B
Swift
//
|
|
// StoreSearchMock.swift
|
|
// MasKitTests
|
|
//
|
|
// Created by Ben Chatelain on 1/4/19.
|
|
// Copyright © 2019 mas-cli. All rights reserved.
|
|
//
|
|
|
|
@testable import MasKit
|
|
|
|
class StoreSearchMock: StoreSearch {
|
|
var apps: [Int: SearchResult] = [:]
|
|
|
|
func search(for appName: String) throws -> SearchResultList {
|
|
let filtered = apps.filter { $1.trackName.contains(appName) }
|
|
return SearchResultList(resultCount: filtered.count, results: filtered.map { $1 })
|
|
}
|
|
|
|
func lookup(app appId: Int) throws -> SearchResult? {
|
|
// Negative numbers are invalid
|
|
if appId <= 0 {
|
|
throw MASError.searchFailed
|
|
}
|
|
|
|
guard let result = apps[appId]
|
|
else { throw MASError.noSearchResultsFound }
|
|
|
|
return result
|
|
}
|
|
|
|
func reset() {
|
|
apps = [:]
|
|
}
|
|
}
|