Files
letro-ios/Tools/Sources/Commands/CI/UnitTests.swift
2026-04-27 14:13:13 +02:00

57 lines
2.0 KiB
Swift

import ArgumentParser
import Foundation
struct UnitTests: AsyncParsableCommand {
static let configuration = CommandConfiguration(commandName: "unit-tests",
abstract: "Runs the unit test CI workflow: lint, unit tests, preview tests, and result collection.")
@Flag(help: "Skip preview tests")
var skipPreviews = false
private static let osVersion = "26.4.1"
private static let device = "iPhone 17"
func run() async throws {
try await CI.lint()
var failures: [String] = []
// Run unit tests
do {
logger.info("\n🧪 Running unit tests…\n")
try await RunTests.parse([
"--scheme", "UnitTests",
"--device", Self.device,
"--os-version", Self.osVersion,
"--retries", "3"
]).run()
} catch {
failures.append("Unit tests failed: \(error)")
logger.error("\n❌ Unit tests failed. \(error)\n")
}
if !skipPreviews {
do {
try await PreviewTests.parse([]).run()
} catch {
failures.append("Preview tests failed: \(error)")
}
}
// Zip results (best-effort, useful for CI artifact uploads)
await CI.zipResults(bundles: ["UnitTests.xcresult", "PreviewTests.xcresult"],
outputName: "UnitTests.zip")
// Collect coverage and JUnit results for unit tests
await CI.collectCoverage(resultBundle: "UnitTests.xcresult", outputName: "unit-cobertura.xml")
await CI.collectTestResults(resultBundle: "UnitTests.xcresult", outputName: "unit-junit.xml")
if !failures.isEmpty {
logger.error("\n\(failures.count) test suite(s) failed.\n")
throw ExitCode.failure
}
logger.info("\n✅ All unit test suites passed.\n")
}
}