passepartout-apple/PassepartoutLibrary/Tests/PassepartoutUtilsTests/UtilsTests.swift

70 lines
2.4 KiB
Swift
Raw Normal View History

//
// UtilsTests.swift
2021-01-01 16:53:28 +00:00
// Passepartout
//
// Created by Davide De Rosa on 3/30/19.
// Copyright (c) 2020 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 XCTest
2022-04-12 13:09:14 +00:00
import PassepartoutUtils
import SwiftyBeaver
class UtilsTests: XCTestCase {
override func setUp() {
2022-04-12 13:09:14 +00:00
pp_log.addDestination(ConsoleDestination())
}
override func tearDown() {
// Put teardown code here. This method is called after the invocation of each test method in the class.
}
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)
XCTAssertEqual(languagesEN, ["en", "de", "it", "pt-BR", "ru"])
XCTAssertEqual(languagesIT, ["en", "it", "pt-BR", "ru", "de"])
}
2022-04-12 13:09:14 +00:00
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] {
return languages.sorted {
return locale.localizedString(forLanguageCode: $0)! < locale.localizedString(forLanguageCode: $1)!
}
}
}