mirror of
https://github.com/mas-cli/mas
synced 2024-11-21 19:23:01 +00:00
880843d8e6
Resolve #585 Signed-off-by: Ross Goldberg <484615+rgoldberg@users.noreply.github.com>
58 lines
2.1 KiB
Swift
58 lines
2.1 KiB
Swift
//
|
|
// OutdatedSpec.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 OutdatedSpec: QuickSpec {
|
|
override public func spec() {
|
|
beforeSuite {
|
|
MAS.initialize()
|
|
}
|
|
describe("outdated command") {
|
|
it("displays apps with pending updates") {
|
|
let mockSearchResult =
|
|
SearchResult(
|
|
bundleId: "au.id.haroldchu.mac.Bandwidth",
|
|
currentVersionReleaseDate: "2024-09-02T00:27:00Z",
|
|
fileSizeBytes: "998130",
|
|
minimumOsVersion: "10.13",
|
|
price: 0,
|
|
sellerName: "Harold Chu",
|
|
sellerUrl: "https://example.com",
|
|
trackId: 490_461_369,
|
|
trackName: "Bandwidth+",
|
|
trackViewUrl: "https://apps.apple.com/us/app/bandwidth/id490461369?mt=12&uo=4",
|
|
version: "1.28"
|
|
)
|
|
let searcher = MockAppStoreSearcher()
|
|
searcher.apps[mockSearchResult.trackId] = mockSearchResult
|
|
|
|
let mockAppLibrary = MockAppLibrary()
|
|
mockAppLibrary.installedApps.append(
|
|
MockSoftwareProduct(
|
|
appName: mockSearchResult.trackName,
|
|
bundleIdentifier: mockSearchResult.bundleId,
|
|
bundlePath: "/Applications/Bandwidth+.app",
|
|
bundleVersion: "1.27",
|
|
itemIdentifier: NSNumber(value: mockSearchResult.trackId)
|
|
)
|
|
)
|
|
expect {
|
|
try captureStream(stdout) {
|
|
try MAS.Outdated.parse([]).run(appLibrary: mockAppLibrary, searcher: searcher)
|
|
}
|
|
}
|
|
== "490461369 Bandwidth+ (1.27 -> 1.28)\n"
|
|
}
|
|
}
|
|
}
|
|
}
|