mas/MasKitTests/Controllers/StoreSearchSpec.swift

45 lines
1.6 KiB
Swift
Raw Normal View History

//
// StoreSearchSpec.swift
// MasKitTests
//
// Created by Ben Chatelain on 1/11/19.
// Copyright © 2019 mas-cli. All rights reserved.
//
@testable import MasKit
import Nimble
2019-01-30 06:15:24 +00:00
import Quick
/// Protocol minimal implementation
struct StoreSearchForTesting: StoreSearch {
2019-01-30 06:15:24 +00:00
func lookup(app _: Int) throws -> SearchResult? { return nil }
func search(for _: String) throws -> SearchResultList { return SearchResultList(resultCount: 0, results: []) }
}
class StoreSearchSpec: QuickSpec {
override func spec() {
let storeSearch = StoreSearchForTesting()
describe("url string") {
it("contains the app name") {
let appName = "myapp"
let urlString = storeSearch.searchURLString(forApp: appName)
expect(urlString) ==
2020-05-15 03:32:51 +00:00
"https://itunes.apple.com/search?media=software&entity=macSoftware&term=\(appName)"
}
it("contains the encoded app name") {
let appName = "My App"
let appNameEncoded = "My%20App"
let urlString = storeSearch.searchURLString(forApp: appName)
expect(urlString) ==
2020-05-15 03:32:51 +00:00
"https://itunes.apple.com/search?media=software&entity=macSoftware&term=\(appNameEncoded)"
}
2019-01-12 03:02:21 +00:00
// Find a character that causes addingPercentEncoding(withAllowedCharacters to return nil
xit("is nil when app name cannot be url encoded") {
let appName = "`~!@#$%^&*()_+ 💩"
let urlString = storeSearch.searchURLString(forApp: appName)
expect(urlString).to(beNil())
}
}
}
}