mirror of
https://github.com/nicoverbruggen/phpmon.git
synced 2025-11-05 04:20:06 +01:00
42 lines
1.0 KiB
Swift
42 lines
1.0 KiB
Swift
//
|
|
// ValetConfigParserTest.swift
|
|
// PHP Monitor
|
|
//
|
|
// Created by Nico Verbruggen on 29/11/2021.
|
|
// Copyright © 2023 Nico Verbruggen. All rights reserved.
|
|
//
|
|
|
|
import Testing
|
|
import Foundation
|
|
|
|
@Suite("Parsers")
|
|
struct ValetConfigurationTest {
|
|
static var jsonConfigFileUrl: URL {
|
|
return TestBundle.url(
|
|
forResource: "valet-config",
|
|
withExtension: "json"
|
|
)!
|
|
}
|
|
|
|
@Test("Can load config file")
|
|
func can_load_config_file() throws {
|
|
let json = try? String(
|
|
contentsOf: Self.jsonConfigFileUrl,
|
|
encoding: .utf8
|
|
)
|
|
let config = try! JSONDecoder().decode(
|
|
Valet.Configuration.self,
|
|
from: json!.data(using: .utf8)!
|
|
)
|
|
|
|
#expect(config.tld == "test")
|
|
#expect(config.paths == [
|
|
"/Users/username/.config/valet/Sites",
|
|
"/Users/username/Sites"
|
|
])
|
|
#expect(config.defaultSite == "/Users/username/default-site")
|
|
#expect(config.loopback == "127.0.0.1")
|
|
}
|
|
|
|
}
|