mirror of
https://github.com/mas-cli/mas
synced 2024-11-22 03:23:08 +00:00
ab22e22ace
Partial #585 Signed-off-by: Ross Goldberg <484615+rgoldberg@users.noreply.github.com>
48 lines
1.6 KiB
Swift
48 lines
1.6 KiB
Swift
//
|
|
// SoftwareProductSpec.swift
|
|
// masTests
|
|
//
|
|
// Created by Ben Chatelain on 9/30/21.
|
|
// Copyright © 2018 mas-cli. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
import Nimble
|
|
import Quick
|
|
|
|
@testable import mas
|
|
|
|
public class SoftwareProductSpec: QuickSpec {
|
|
override public func spec() {
|
|
beforeSuite {
|
|
MAS.initialize()
|
|
}
|
|
describe("software product") {
|
|
let app = SoftwareProductMock(
|
|
appName: "App",
|
|
bundleIdentifier: "",
|
|
bundlePath: "",
|
|
bundleVersion: "1.0.0",
|
|
itemIdentifier: 111
|
|
)
|
|
|
|
let currentApp = SearchResult(version: "1.0.0")
|
|
let appUpdate = SearchResult(version: "2.0.0")
|
|
let higherOs = SearchResult(minimumOsVersion: "99.0.0", version: "3.0.0")
|
|
let updateIos = SearchResult(minimumOsVersion: "99.0.0", version: "3.0.0")
|
|
|
|
it("is not outdated when there is no new version available") {
|
|
expect(app.isOutdatedWhenComparedTo(currentApp)) == false
|
|
}
|
|
it("is outdated when there is a new version available") {
|
|
expect(app.isOutdatedWhenComparedTo(appUpdate)) == true
|
|
}
|
|
it("is not outdated when the new version of mac-software requires a higher OS version") {
|
|
expect(app.isOutdatedWhenComparedTo(higherOs)) == false
|
|
}
|
|
it("is not outdated when the new version of software requires a higher OS version") {
|
|
expect(app.isOutdatedWhenComparedTo(updateIos)) == false
|
|
}
|
|
}
|
|
}
|
|
}
|