tunnelkit/Tests/TunnelKitOpenVPNTests/DataPathPerformanceTests.swift

102 lines
4.1 KiB
Swift
Raw Normal View History

2018-08-23 08:19:25 +00:00
//
// DataPathPerformanceTests.swift
// TunnelKitOpenVPNTests
2018-08-23 08:19:25 +00:00
//
// Created by Davide De Rosa on 7/7/18.
2023-03-17 15:58:36 +00:00
// Copyright (c) 2023 Davide De Rosa. All rights reserved.
//
// https://github.com/passepartoutvpn
//
// This file is part of TunnelKit.
//
// TunnelKit 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.
//
// TunnelKit 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 TunnelKit. If not, see <http://www.gnu.org/licenses/>.
//
// This file incorporates work covered by the following copyright and
// permission notice:
//
// Copyright (c) 2018-Present Private Internet Access
//
// Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
//
2018-08-23 08:19:25 +00:00
import XCTest
2021-10-25 14:27:27 +00:00
@testable import TunnelKitCore
@testable import TunnelKitOpenVPNCore
@testable import TunnelKitOpenVPNProtocol
@testable import TunnelKitOpenVPNAppExtension
import CTunnelKitOpenVPNProtocol
2018-08-23 08:19:25 +00:00
class DataPathPerformanceTests: XCTestCase {
private var dataPath: DataPath!
private var encrypter: DataPathEncrypter!
private var decrypter: DataPathDecrypter!
2023-04-20 19:52:45 +00:00
2018-08-23 08:19:25 +00:00
override func setUp() {
let ck = try! SecureRandom.safeData(length: 32)
let hk = try! SecureRandom.safeData(length: 32)
2023-04-20 19:52:45 +00:00
2019-05-19 13:50:30 +00:00
let crypto = try! OpenVPN.EncryptionBridge(.aes128cbc, .sha1, ck, ck, hk, hk)
2018-08-23 08:19:25 +00:00
encrypter = crypto.encrypter()
decrypter = crypto.decrypter()
2023-04-20 19:52:45 +00:00
2018-09-01 23:11:31 +00:00
dataPath = DataPath(
encrypter: encrypter,
decrypter: decrypter,
peerId: PacketPeerIdDisabled,
compressionFraming: .disabled,
compressionAlgorithm: .disabled,
2018-09-01 23:11:31 +00:00
maxPackets: 200,
usesReplayProtection: false
)
2018-08-23 08:19:25 +00:00
}
override func tearDown() {
// Put teardown code here. This method is called after the invocation of each test method in the class.
}
// // 28ms
// func testHighLevel() {
// let packets = TestUtils.generateDataSuite(1200, 1000)
// var encryptedPackets: [Data]!
// var decryptedPackets: [Data]!
//
// measure {
// encryptedPackets = try! self.swiftDP.encryptPackets(packets, key: 0)
// decryptedPackets = try! self.swiftDP.decryptPackets(encryptedPackets, keepAlive: nil)
// }
//
// XCTAssertEqual(decryptedPackets, packets)
// }
2023-04-20 19:52:45 +00:00
2018-08-23 08:19:25 +00:00
// 16ms
func testPointerBased() {
let packets = TestUtils.generateDataSuite(1200, 1000)
var encryptedPackets: [Data]!
var decryptedPackets: [Data]!
2023-04-20 19:52:45 +00:00
2018-08-23 08:19:25 +00:00
measure {
encryptedPackets = try! self.dataPath.encryptPackets(packets, key: 0)
decryptedPackets = try! self.dataPath.decryptPackets(encryptedPackets, keepAlive: nil)
}
2023-04-20 19:52:45 +00:00
2018-08-23 08:19:25 +00:00
XCTAssertEqual(decryptedPackets, packets)
}
}