2024-09-23 13:02:26 +00:00
|
|
|
//
|
|
|
|
// ConnectionObserverTests.swift
|
|
|
|
// Passepartout
|
|
|
|
//
|
|
|
|
// Created by Davide De Rosa on 9/12/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/>.
|
|
|
|
//
|
|
|
|
|
2024-09-26 21:13:55 +00:00
|
|
|
@testable import AppUI
|
2024-09-23 13:02:26 +00:00
|
|
|
import Foundation
|
|
|
|
import PassepartoutKit
|
|
|
|
import XCTest
|
|
|
|
|
|
|
|
final class ConnectionObserverTests: XCTestCase {
|
|
|
|
}
|
|
|
|
|
|
|
|
@MainActor
|
|
|
|
extension ConnectionObserverTests {
|
|
|
|
func test_givenTunnel_whenDisconnectWithError_thenPublishesLastErrorCode() async throws {
|
|
|
|
let env = InMemoryEnvironment()
|
|
|
|
let tunnel = Tunnel(strategy: FakeTunnelStrategy(environment: env))
|
|
|
|
let sut = ConnectionObserver(tunnel: tunnel, environment: env, interval: 0.1)
|
2024-09-30 12:56:20 +00:00
|
|
|
sut.observeObjects()
|
2024-09-23 13:02:26 +00:00
|
|
|
|
|
|
|
let profile = try Profile.Builder().tryBuild()
|
2024-09-30 12:56:20 +00:00
|
|
|
try await tunnel.install(profile, connect: true, title: \.name)
|
2024-09-23 13:02:26 +00:00
|
|
|
env.setEnvironmentValue(.crypto, forKey: TunnelEnvironmentKeys.lastErrorCode)
|
|
|
|
|
|
|
|
try await tunnel.disconnect()
|
|
|
|
try await Task.sleep(for: .milliseconds(200))
|
|
|
|
XCTAssertEqual(sut.lastErrorCode, .crypto)
|
|
|
|
}
|
|
|
|
|
|
|
|
func test_givenTunnel_whenConnect_thenPublishesDataCount() async throws {
|
|
|
|
let env = InMemoryEnvironment()
|
|
|
|
let tunnel = Tunnel(strategy: FakeTunnelStrategy(environment: env))
|
|
|
|
let sut = ConnectionObserver(tunnel: tunnel, environment: env, interval: 0.1)
|
2024-09-30 12:56:20 +00:00
|
|
|
sut.observeObjects()
|
2024-09-23 13:02:26 +00:00
|
|
|
|
|
|
|
let profile = try Profile.Builder().tryBuild()
|
2024-09-30 12:56:20 +00:00
|
|
|
try await tunnel.install(profile, connect: false, title: \.name)
|
2024-09-23 13:02:26 +00:00
|
|
|
|
|
|
|
let dataCount = DataCount(500, 700)
|
|
|
|
env.setEnvironmentValue(dataCount, forKey: TunnelEnvironmentKeys.dataCount)
|
|
|
|
XCTAssertEqual(sut.dataCount, nil)
|
|
|
|
|
2024-09-30 12:56:20 +00:00
|
|
|
try await tunnel.install(profile, connect: true, title: \.name)
|
2024-09-23 13:02:26 +00:00
|
|
|
try await Task.sleep(for: .milliseconds(200))
|
|
|
|
XCTAssertEqual(sut.dataCount, dataCount)
|
|
|
|
}
|
|
|
|
}
|