passepartout-apple/PassepartoutLibrary/Tests/PassepartoutCoreTests/CoreTests.swift

70 lines
2.3 KiB
Swift
Raw Permalink Normal View History

2018-10-11 07:13:19 +00:00
//
2022-04-12 13:09:14 +00:00
// CoreTests.swift
2021-01-01 16:53:28 +00:00
// Passepartout
2018-10-11 07:13:19 +00:00
//
2022-04-12 13:09:14 +00:00
// Created by Davide De Rosa on 3/30/19.
2024-01-14 13:34:21 +00:00
// Copyright (c) 2024 Davide De Rosa. All rights reserved.
2018-10-11 07:13:19 +00:00
//
2018-11-03 21:33:30 +00:00
// https://github.com/passepartoutvpn
2018-10-11 07:13:19 +00:00
//
// 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/>.
//
2022-10-30 10:53:53 +00:00
@testable import PassepartoutCore
import XCTest
2018-10-11 07:13:19 +00:00
2023-05-24 16:19:47 +00:00
final class CoreTests: XCTestCase {
2022-04-12 13:09:14 +00:00
override func setUp() {
}
2023-03-17 20:55:47 +00:00
2022-04-12 13:09:14 +00:00
override func tearDown() {
2023-05-24 16:19:47 +00:00
}
func testLanguageLocalization() {
let languages = ["en", "it", "de", "pt-BR", "ru"]
let english = Locale(identifier: "en")
let italian = Locale(identifier: "it")
let languagesEN = privateSortedLanguages(languages, with: english)
let languagesIT = privateSortedLanguages(languages, with: italian)
// English, German, Italian, Portuguese, Russian
XCTAssertEqual(languagesEN, ["en", "de", "it", "pt-BR", "ru"])
// Inglese, Italiano, Portoghese, Russo, Tedesco
XCTAssertEqual(languagesIT, ["en", "it", "pt-BR", "ru", "de"])
}
func testTrailing() {
let file = Bundle.module.url(forResource: "Debug", withExtension: "log")!
for len in [10, 100, 1000] {
let last = file.trailingContent(bytes: UInt64(len))
XCTAssertEqual(last.count, len)
pp_log.debug(last)
}
XCTAssertNotEqual(file.trailingContent(bytes: 100000).count, 100000)
pp_log.debug(file.trailingLines(bytes: 1000))
}
private func privateSortedLanguages(_ languages: [String], with locale: Locale) -> [String] {
languages.sorted {
locale.localizedString(forLanguageCode: $0)! < locale.localizedString(forLanguageCode: $1)!
}
2022-04-12 13:09:14 +00:00
}
2022-10-30 10:53:53 +00:00
}