mas/Tests/masTests/Controllers/SoftwareMapAppLibrarySpec.swift
Ross Goldberg 880843d8e6
Rename *Mock as Mock*.
Resolve #585

Signed-off-by: Ross Goldberg <484615+rgoldberg@users.noreply.github.com>
2024-10-25 23:39:52 -04:00

58 lines
1.5 KiB
Swift

//
// SoftwareMapAppLibrarySpec.swift
// masTests
//
// Created by Ben Chatelain on 3/1/20.
// Copyright © 2020 mas-cli. All rights reserved.
//
import Nimble
import Quick
@testable import mas
public class SoftwareMapAppLibrarySpec: QuickSpec {
override public func spec() {
let library = SoftwareMapAppLibrary(softwareMap: MockSoftwareMap(products: apps))
beforeSuite {
MAS.initialize()
}
describe("mas app library") {
it("contains all installed apps") {
expect(library.installedApps).to(haveCount(apps.count))
expect(library.installedApps.first!.appName) == myApp.appName
}
it("can locate an app by bundle id") {
expect(library.installedApp(forBundleID: "com.example")!.bundleIdentifier) == myApp.bundleIdentifier
}
}
}
}
// MARK: - Test Data
let myApp = MockSoftwareProduct(
appName: "MyApp",
bundleIdentifier: "com.example",
bundlePath: "/Applications/MyApp.app",
bundleVersion: "1.0.0",
itemIdentifier: 1234
)
var apps: [SoftwareProduct] = [myApp]
// MARK: - MockSoftwareMap
struct MockSoftwareMap: SoftwareMap {
var products: [SoftwareProduct] = []
func allSoftwareProducts() -> [SoftwareProduct] {
products
}
func product(for bundleIdentifier: String) -> SoftwareProduct? {
for product in products where product.bundleIdentifier == bundleIdentifier {
return product
}
return nil
}
}