mirror of
https://github.com/nicoverbruggen/phpmon.git
synced 2025-08-07 03:50:08 +02:00
34 lines
1.0 KiB
Swift
34 lines
1.0 KiB
Swift
//
|
|
// PhpVersionDetectionTest.swift
|
|
// PHP Monitor
|
|
//
|
|
// Created by Nico Verbruggen on 01/04/2021.
|
|
// Copyright © 2023 Nico Verbruggen. All rights reserved.
|
|
//
|
|
|
|
import XCTest
|
|
|
|
class PhpVersionDetectionTest: XCTestCase {
|
|
|
|
func test_can_detect_valid_php_versions() async throws {
|
|
let outcome = await PhpEnvironments.shared.extractPhpVersions(
|
|
from: [
|
|
"", // empty lines should be omitted
|
|
"php@8.0",
|
|
"php@8.0", // should only be detected once
|
|
"meta-php@8.0", // should be omitted, invalid
|
|
"php@8.0-coolio", // should be omitted, invalid
|
|
"php@7.0",
|
|
"",
|
|
"unrelatedphp@1.0", // should be omitted, invalid
|
|
"php@5.6", // should be omitted, not supported
|
|
"php@5.4" // should be omitted, not supported
|
|
],
|
|
checkBinaries: false,
|
|
generateHelpers: false
|
|
)
|
|
|
|
XCTAssertEqual(outcome, ["8.0", "7.0", "5.6"])
|
|
}
|
|
}
|