2024-11-28 14:51:03 +00:00
|
|
|
//
|
2024-11-28 16:31:17 +00:00
|
|
|
// ProfileManager+Testing.swift
|
2024-11-28 14:51:03 +00:00
|
|
|
// Passepartout
|
|
|
|
//
|
|
|
|
// Created by Davide De Rosa on 11/28/24.
|
|
|
|
// Copyright (c) 2024 Davide De Rosa. All rights reserved.
|
|
|
|
//
|
|
|
|
// https://github.com/passepartoutvpn
|
|
|
|
//
|
|
|
|
// This file is part of Passepartout.
|
|
|
|
//
|
|
|
|
// Passepartout is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
//
|
|
|
|
// Passepartout is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
|
|
// along with Passepartout. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
//
|
|
|
|
|
|
|
|
import CommonLibrary
|
|
|
|
import Foundation
|
|
|
|
import PassepartoutKit
|
|
|
|
|
|
|
|
extension ProfileManager {
|
2024-12-08 17:56:39 +00:00
|
|
|
public static func forUITesting(withRegistry registry: Registry, processor: ProfileProcessor) -> ProfileManager {
|
2024-11-28 14:51:03 +00:00
|
|
|
let repository = InMemoryProfileRepository()
|
|
|
|
let remoteRepository = InMemoryProfileRepository()
|
|
|
|
let manager = ProfileManager(repository: repository, remoteRepositoryBlock: { _ in
|
|
|
|
remoteRepository
|
|
|
|
}, processor: processor)
|
|
|
|
|
|
|
|
Task {
|
|
|
|
do {
|
|
|
|
try await manager.observeLocal()
|
|
|
|
try await manager.observeRemote(true)
|
|
|
|
|
|
|
|
for parameters in mockParameters {
|
|
|
|
var builder = Profile.Builder()
|
|
|
|
builder.name = parameters.name
|
|
|
|
builder.attributes.isAvailableForTV = parameters.isTV
|
|
|
|
|
|
|
|
for moduleType in parameters.moduleTypes {
|
2024-12-03 15:18:05 +00:00
|
|
|
var moduleBuilder = moduleType.newModule(with: registry, providerId: parameters.providerId)
|
2024-12-01 21:34:41 +00:00
|
|
|
|
2024-12-03 15:18:05 +00:00
|
|
|
if moduleBuilder.buildsConnectionModule {
|
2024-12-04 11:40:47 +00:00
|
|
|
assert((moduleBuilder as? any ProviderSelecting)?.providerId == parameters.providerId)
|
2024-11-28 14:51:03 +00:00
|
|
|
}
|
2024-12-03 15:18:05 +00:00
|
|
|
|
2024-12-10 17:06:23 +00:00
|
|
|
if parameters.name == "Hide.me" {
|
|
|
|
if var ovpnBuilder = moduleBuilder as? OpenVPNModule.Builder {
|
|
|
|
#if !os(tvOS)
|
|
|
|
ovpnBuilder.isInteractive = true
|
|
|
|
#endif
|
|
|
|
ovpnBuilder.providerEntity = mockHideMeEntity
|
|
|
|
moduleBuilder = ovpnBuilder
|
|
|
|
} else if var onDemandBuilder = moduleBuilder as? OnDemandModule.Builder {
|
|
|
|
#if !os(tvOS)
|
|
|
|
onDemandBuilder.isEnabled = true
|
|
|
|
#endif
|
|
|
|
onDemandBuilder.policy = .excluding
|
|
|
|
onDemandBuilder.withSSIDs = [
|
|
|
|
"Friend's House": false,
|
|
|
|
"My Home Network": true,
|
|
|
|
"Safe Wi-Fi": true
|
|
|
|
]
|
|
|
|
moduleBuilder = onDemandBuilder
|
|
|
|
} else if var dnsBuilder = moduleBuilder as? DNSModule.Builder {
|
|
|
|
dnsBuilder.protocolType = .https
|
|
|
|
dnsBuilder.dohURL = "https://cloudflare-dns.com/dns-query"
|
|
|
|
dnsBuilder.servers = ["1.1.1.1", "1.0.0.1"]
|
|
|
|
dnsBuilder.domainName = "my-domain.com"
|
|
|
|
dnsBuilder.searchDomains = ["search-one.com", "search-two.org"]
|
|
|
|
moduleBuilder = dnsBuilder
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if parameters.name == "My VPS" {
|
|
|
|
if var ovpnBuilder = moduleBuilder as? OpenVPNModule.Builder {
|
|
|
|
var cfgBuilder = OpenVPN.Configuration.Builder()
|
|
|
|
cfgBuilder.ca = .init(pem: "...")
|
|
|
|
cfgBuilder.remotes = [
|
|
|
|
ExtendedEndpoint(rawValue: "1.2.3.4:UDP:1234")!
|
|
|
|
]
|
|
|
|
ovpnBuilder.configurationBuilder = cfgBuilder
|
|
|
|
moduleBuilder = ovpnBuilder
|
|
|
|
} else if var onDemandBuilder = moduleBuilder as? OnDemandModule.Builder {
|
|
|
|
onDemandBuilder.isEnabled = true
|
|
|
|
moduleBuilder = onDemandBuilder
|
|
|
|
}
|
2024-12-03 15:18:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
let module = try moduleBuilder.tryBuild()
|
|
|
|
builder.modules.append(module)
|
2024-11-28 14:51:03 +00:00
|
|
|
}
|
|
|
|
builder.activateAllModules()
|
|
|
|
|
|
|
|
let profile = try builder.tryBuild()
|
|
|
|
try await manager.save(profile, isLocal: true, remotelyShared: parameters.isShared)
|
|
|
|
}
|
|
|
|
} catch {
|
2024-12-08 17:56:39 +00:00
|
|
|
pp_log(.App.profiles, .error, "Unable to build ProfileManager for UI testing: \(error)")
|
2024-11-28 14:51:03 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return manager
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private extension ProfileManager {
|
|
|
|
struct Parameters {
|
|
|
|
let name: String
|
|
|
|
|
|
|
|
let isShared: Bool
|
|
|
|
|
|
|
|
let isTV: Bool
|
|
|
|
|
|
|
|
let moduleTypes: [ModuleType]
|
|
|
|
|
|
|
|
let providerId: ProviderID?
|
|
|
|
|
|
|
|
init(_ name: String, _ isShared: Bool, _ isTV: Bool, _ moduleTypes: [ModuleType], _ providerId: ProviderID? = nil) {
|
|
|
|
self.name = name
|
|
|
|
self.isShared = isShared
|
|
|
|
self.isTV = isTV
|
|
|
|
self.moduleTypes = moduleTypes
|
|
|
|
self.providerId = providerId
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static let mockParameters: [Parameters] = [
|
|
|
|
Parameters("CloudFlare DoT", false, false, [.dns]),
|
|
|
|
Parameters("Coffee VPN", true, false, [.wireGuard, .onDemand]),
|
2024-12-10 17:06:23 +00:00
|
|
|
Parameters("Hide.me", true, true, [.openVPN, .onDemand, .dns, .ip], .hideme),
|
|
|
|
Parameters("My VPS", true, true, [.openVPN, .onDemand]),
|
2024-11-28 14:51:03 +00:00
|
|
|
Parameters("Office", true, false, [.onDemand, .httpProxy]),
|
|
|
|
Parameters("Personal DoH", false, false, [.dns, .onDemand])
|
|
|
|
]
|
2024-12-10 17:06:23 +00:00
|
|
|
|
|
|
|
static var mockHideMeEntity: VPNEntity<OpenVPN.Configuration> {
|
|
|
|
do {
|
|
|
|
var cfgBuilder = OpenVPN.Configuration.Builder()
|
|
|
|
cfgBuilder.ca = .init(pem: "...")
|
|
|
|
let cfg = try cfgBuilder.tryBuild(isClient: false)
|
|
|
|
let cfgData = try JSONEncoder().encode(cfg)
|
|
|
|
|
|
|
|
let preset = AnyVPNPreset(
|
|
|
|
providerId: .hideme,
|
|
|
|
presetId: "default",
|
|
|
|
description: "Default",
|
|
|
|
endpoints: [.init(.udp, 1194)],
|
|
|
|
configurationIdentifier: "OpenVPN",
|
|
|
|
configuration: cfgData
|
|
|
|
)
|
|
|
|
|
|
|
|
return VPNEntity(
|
|
|
|
server: .init(
|
|
|
|
provider: .init(
|
|
|
|
id: .hideme,
|
|
|
|
serverId: "be-v4",
|
|
|
|
supportedConfigurationIdentifiers: ["OpenVPN"],
|
|
|
|
supportedPresetIds: nil,
|
|
|
|
categoryName: "",
|
|
|
|
countryCode: "BE",
|
|
|
|
otherCountryCodes: nil,
|
|
|
|
area: nil
|
|
|
|
),
|
|
|
|
hostname: "be-v4.hideservers.net",
|
|
|
|
ipAddresses: nil
|
|
|
|
),
|
|
|
|
preset: try preset.ofType(OpenVPN.Configuration.self)
|
|
|
|
)
|
|
|
|
} catch {
|
|
|
|
fatalError("Unable to build Hide.me entity: \(error)")
|
|
|
|
}
|
|
|
|
}
|
2024-11-28 14:51:03 +00:00
|
|
|
}
|