2019-01-03 17:22:26 -08:00
|
|
|
//
|
2024-10-01 18:55:04 -04:00
|
|
|
// VendorSpec.swift
|
2024-10-01 14:05:41 -04:00
|
|
|
// masTests
|
2019-01-03 17:22:26 -08:00
|
|
|
//
|
|
|
|
// Created by Ben Chatelain on 2019-01-03.
|
|
|
|
// Copyright © 2019 mas-cli. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
import Nimble
|
2019-01-29 23:15:24 -07:00
|
|
|
import Quick
|
2019-01-03 17:22:26 -08:00
|
|
|
|
2024-10-01 14:05:41 -04:00
|
|
|
@testable import mas
|
2021-03-21 22:25:18 -07:00
|
|
|
|
2024-10-01 18:55:04 -04:00
|
|
|
public class VendorSpec: QuickSpec {
|
2024-10-18 10:28:44 -04:00
|
|
|
override public func spec() {
|
2024-10-25 20:29:17 -04:00
|
|
|
let searcher = MockAppStoreSearcher()
|
2019-01-04 17:05:58 -08:00
|
|
|
|
2021-04-23 00:01:18 -07:00
|
|
|
beforeSuite {
|
2024-10-25 13:21:19 -04:00
|
|
|
MAS.initialize()
|
2021-04-23 00:01:18 -07:00
|
|
|
}
|
2019-01-03 17:22:26 -08:00
|
|
|
describe("vendor command") {
|
2019-01-04 17:05:58 -08:00
|
|
|
beforeEach {
|
2024-10-25 20:29:17 -04:00
|
|
|
searcher.reset()
|
2019-01-04 17:05:58 -08:00
|
|
|
}
|
|
|
|
it("can't find app with unknown ID") {
|
2024-10-01 18:55:04 -04:00
|
|
|
expect {
|
2024-10-28 11:26:11 -04:00
|
|
|
try MAS.Vendor.parse(["999"]).run(searcher: searcher)
|
2024-10-01 18:55:04 -04:00
|
|
|
}
|
2024-10-28 20:18:49 -04:00
|
|
|
.to(throwError(MASError.unknownAppID(999)))
|
2019-01-04 17:05:58 -08:00
|
|
|
}
|
2019-01-03 17:22:26 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|