87 lines
2.4 KiB
Swift
87 lines
2.4 KiB
Swift
//
|
|
// ConfirmButtonSnapshotTests.swift
|
|
// StripeiOS Tests
|
|
//
|
|
// Created by Nick Porter on 3/11/22.
|
|
// Copyright © 2022 Stripe, Inc. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
import iOSSnapshotTestCase
|
|
import StripeCoreTestUtils
|
|
import UIKit
|
|
|
|
@testable@_spi(STP) import Stripe
|
|
@testable@_spi(STP) import StripeCore
|
|
@testable@_spi(STP) import StripePaymentSheet
|
|
|
|
class ConfirmButtonSnapshotTests: FBSnapshotTestCase {
|
|
|
|
override func setUp() {
|
|
super.setUp()
|
|
// self.recordMode = true
|
|
}
|
|
|
|
func testConfirmButton() {
|
|
let confirmButton = ConfirmButton(style: .stripe, callToAction: .setup, didTap: {})
|
|
|
|
verify(confirmButton)
|
|
}
|
|
|
|
// Tests that `primaryButton` appearance is used over standard variables
|
|
func testConfirmButtonBackgroundColor() {
|
|
var appearance = PaymentSheet.Appearance.default
|
|
var button = PaymentSheet.Appearance.PrimaryButton()
|
|
button.backgroundColor = .red
|
|
appearance.primaryButton = button
|
|
|
|
let confirmButton = ConfirmButton(
|
|
style: .stripe,
|
|
callToAction: .setup,
|
|
appearance: appearance,
|
|
didTap: {}
|
|
)
|
|
|
|
verify(confirmButton)
|
|
}
|
|
|
|
func testConfirmButtonCustomFont() throws {
|
|
var appearance = PaymentSheet.Appearance.default
|
|
appearance.font.base = try XCTUnwrap(UIFont(name: "AmericanTypewriter", size: 12.0))
|
|
|
|
let confirmButton = ConfirmButton(
|
|
style: .stripe,
|
|
callToAction: .custom(title: "Custom Title"),
|
|
appearance: appearance,
|
|
didTap: {}
|
|
)
|
|
|
|
verify(confirmButton)
|
|
}
|
|
|
|
func testConfirmButtonCustomFontScales() throws {
|
|
var appearance = PaymentSheet.Appearance.default
|
|
appearance.font.base = try XCTUnwrap(UIFont(name: "AmericanTypewriter", size: 12.0))
|
|
appearance.font.sizeScaleFactor = 0.85
|
|
|
|
let confirmButton = ConfirmButton(
|
|
style: .stripe,
|
|
callToAction: .custom(title: "Custom Title"),
|
|
appearance: appearance,
|
|
didTap: {}
|
|
)
|
|
|
|
verify(confirmButton)
|
|
}
|
|
|
|
func verify(
|
|
_ view: UIView,
|
|
identifier: String? = nil,
|
|
file: StaticString = #filePath,
|
|
line: UInt = #line
|
|
) {
|
|
view.autosizeHeight(width: 300)
|
|
STPSnapshotVerifyView(view, identifier: identifier, file: file, line: line)
|
|
}
|
|
}
|