// // IssueTests.swift // Passepartout // // Created by Davide De Rosa on 9/18/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 . // @testable import AppUIMain import CommonLibrary import Foundation import XCTest final class IssueTests: XCTestCase { func test_givenNothing_whenCreateIssue_thenCollectsOSAndDevice() { let issue = Issue(appLine: nil, purchasedProducts: []) XCTAssertNil(issue.appLine) #if os(iOS) XCTAssertTrue(issue.osLine.hasPrefix("iOS")) #else XCTAssertTrue(issue.osLine.hasPrefix("macOS")) #endif } func test_givenAppLine_whenCreateIssue_thenCollectsAppLine() { let appLine = "Passepartout 1.2.3" let issue = Issue(appLine: appLine, purchasedProducts: []) XCTAssertEqual(issue.appLine, appLine) } func test_givenAppLineAndProducts_whenCreateIssue_thenMatchesTemplate() { let appLine = "Passepartout 1.2.3" let issue = Issue(appLine: appLine, purchasedProducts: [.Features.appleTV]) let expected = """ Hi, // enter a description of the issue -- App: \(issue.appLine ?? "unknown") OS: \(issue.osLine) Device: \(issue.deviceLine ?? "unknown") Provider: none (last updated: unknown) Purchased: ["\(AppProduct.Features.appleTV.rawValue)"] -- Regards """ XCTAssertEqual(issue.body, expected) } }