Will Larche 62d5a4fa85 [TextFields] Feature branch merge: Clarity, Safety, Docs, Comments, Formatting (#2634)
* [TextFields] Full width changes. (#2590)

* [TextFields] Propagating changes to themers. (#2585)

* [TextFields] Propagating changes to themers.

* [TextFields] Updates to themer examples.

* [TextFields] Base controller class files (#2582)

* [TextFields] New Base class files.

* [TextFields] Naming corrections.

* [TextFields] Formatting.

* [TextFields] Replacing -Default with -Underline (#2583)

* [TextFields] Adding underline controller.

* [TextFields] Changes to umbrella import file and removing default controllers.

* [TextFields] Renaming one file.

* [TextFields] Updated controller headers. (#2584)

* [TextFields] Updating examples. (#2586)

* [TextFields] Running clang-format on the elements. (#2587)

* [TextFields] Running format on the element itself.

* [TextFields] Minor formatting.

* [TextFields] Updating tests and formatting. (#2588)

* [TextFields] Filled controller changes. (#2589)

* [TextFields] Legacy controller comments, naming, and formatting. (#2591)

* [TextFields] Legacy controller comments, naming, and formatting.

* [TextFields] Adding safety to legacy default init.

* [TextFields] Adding safety to Legacy Default init.

* [TextFields] Formatting Legacy Default.

* [TextFields] Formatting Legacy Full Width.

* [TextFields] Text area comments, updated super, naming, formatting. (#2593)

* [TextFields] Text area updates.

* [TextFields] Clarifying comment.

* [TextFields] Outline changes and formatting. (#2592)

* [TextFields] Updates to styling doc. (#2594)

* [TextFields] Updates to styling doc.

* [TextFields] Updating doc.

* [TextFields] Full width comments, safety, formatting, and underline support. (#2633)

* [TextFields] Adding safety to full width.

* [TextFields] Formatting Full Width.

* [TextFields] PR feedback.

* [TextFields] Safety in init of Base (#2632)

* [TextFields] Adding safety to base init.

* [TextFields] Formatting Base.

* [TextFields] Updates to controller header. (#2636)

* [TextFields] Updates to controller header.

* [TextFields] Updating misleading comments.

* [TextFields] Supplemental file name changes. (#2635)
2017-12-12 11:07:48 -05:00

266 lines
10 KiB
Swift

/*
Copyright 2016-present the Material Components for iOS authors. All Rights Reserved.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
import XCTest
import MaterialComponents.MaterialTextFields
class TextFieldTests: XCTestCase {
func testAttributedSetters() {
let textField = MDCTextField()
let string = "attributed"
textField.attributedPlaceholder = NSAttributedString(string: string)
XCTAssertEqual(textField.attributedPlaceholder?.string, string)
textField.attributedText = NSAttributedString(string: string)
XCTAssertEqual(textField.attributedText?.string, string)
}
// All the constraints created internally by the MDCTextField need to have a rather low priority
// so they can be overridden by a controller from the outside.
func testConstraintPriorities() {
let textField = MDCTextField()
for constraint in textField.constraints {
XCTAssertLessThanOrEqual(constraint.priority, UILayoutPriorityDefaultLow + 10, String(describing: constraint))
}
}
func testBorder() {
let textField = MDCTextField()
XCTAssertTrue((textField.borderView?.isDescendant(of: textField))!)
}
func testCopying() {
let textField = MDCTextField()
textField.textInsetsMode = .never
textField.borderView?.borderFillColor = .purple
textField.borderView?.borderPath = UIBezierPath(ovalIn: CGRect(x: 0, y: 0, width: 100, height: 100))
textField.borderView?.borderStrokeColor = .yellow
textField.clearButton.tintColor = .red
textField.clearButtonMode = .always
textField.cursorColor = .white
textField.font = UIFont.systemFont(ofSize: UIFont.labelFontSize)
textField.hidesPlaceholderOnInput = false
textField.isEnabled = false
textField.leadingViewMode = .unlessEditing
textField.mdc_adjustsFontForContentSizeCategory = true
textField.placeholder = "test"
textField.text = "test"
textField.textColor = .red
textField.trailingViewMode = .unlessEditing
textField.underline?.color = .red
textField.underline?.lineHeight = 10
if let textFieldCopy = textField.copy() as? MDCTextField {
XCTAssertEqual(textField.textInsetsMode, textFieldCopy.textInsetsMode)
XCTAssertEqual(textField.attributedPlaceholder, textFieldCopy.attributedPlaceholder)
XCTAssertEqual(textField.attributedText, textFieldCopy.attributedText)
XCTAssertEqual(textField.borderView?.borderFillColor, textFieldCopy.borderView?.borderFillColor)
XCTAssertEqual(textField.borderView?.borderPath?.bounds.integral, textFieldCopy.borderView?.borderPath?.bounds.integral)
XCTAssertEqual(textField.borderView?.borderStrokeColor, textFieldCopy.borderView?.borderStrokeColor)
XCTAssertEqual(textField.clearButton.tintColor, textFieldCopy.clearButton.tintColor)
XCTAssertEqual(textField.clearButtonMode, textFieldCopy.clearButtonMode)
XCTAssertEqual(textField.cursorColor, textFieldCopy.cursorColor)
XCTAssertEqual(textField.font, textFieldCopy.font)
XCTAssertEqual(textField.hidesPlaceholderOnInput, textFieldCopy.hidesPlaceholderOnInput)
XCTAssertEqual(textField.isEnabled, textFieldCopy.isEnabled)
XCTAssertEqual(textField.leadingViewMode, textFieldCopy.leadingViewMode)
XCTAssertEqual(textField.mdc_adjustsFontForContentSizeCategory,
textFieldCopy.mdc_adjustsFontForContentSizeCategory)
XCTAssertEqual(textField.placeholder, textFieldCopy.placeholder)
XCTAssertEqual(textField.text, textFieldCopy.text)
XCTAssertEqual(textField.textColor, textFieldCopy.textColor)
XCTAssertEqual(textField.trailingViewMode, textFieldCopy.trailingViewMode)
XCTAssertEqual(textField.underline?.color, textFieldCopy.underline?.color)
XCTAssertEqual(textField.underline?.lineHeight, textFieldCopy.underline?.lineHeight)
} else {
XCTFail("No copy or copy is wrong class")
}
}
func testFontChange() {
let textField = MDCTextField()
textField.font = UIFont.systemFont(ofSize: UIFont.labelFontSize)
XCTAssertEqual(UIFont.systemFont(ofSize: UIFont.labelFontSize), textField.font)
XCTAssertNotEqual(UIFont.systemFont(ofSize: UIFont.smallSystemFontSize), textField.font)
}
func testLeadingingView() {
let leadingView = UIView()
let textField = MDCTextField()
textField.leadingView = leadingView
XCTAssertEqual(textField.leadingView, leadingView)
}
func testMDCDynamicTypeAPI() {
let textField = MDCTextField()
textField.mdc_adjustsFontForContentSizeCategory = true
XCTAssertTrue(textField.mdc_adjustsFontForContentSizeCategory)
if #available(iOS 10, *) {
XCTAssertEqual(textField.mdc_adjustsFontForContentSizeCategory,
textField.adjustsFontForContentSizeCategory)
}
}
func testOverlayViews() {
let textField = MDCTextField()
let leftView = UILabel()
let rightView = UILabel()
leftView.text = "X"
textField.leftView = leftView
textField.rightView = rightView
textField.leftViewMode = .always
textField.rightViewMode = .always
// This will trigger autolayout to scream in the console. It's ok. It's for the testing.
textField.layoutIfNeeded()
XCTAssertTrue(textField.subviews.contains(leftView))
XCTAssertTrue(textField.subviews.contains(rightView))
if #available(iOS 9.0, *) {
if UIView.userInterfaceLayoutDirection(for: .unspecified) == .leftToRight {
XCTAssertEqual(textField.leadingView, leftView)
XCTAssertEqual(textField.leadingView, textField.leftView)
XCTAssertEqual(textField.trailingView, rightView)
XCTAssertEqual(textField.trailingView, textField.rightView)
} else {
XCTAssertEqual(textField.leadingView, rightView)
XCTAssertEqual(textField.leadingView, textField.rightView)
XCTAssertEqual(textField.trailingView, leftView)
XCTAssertEqual(textField.trailingView, textField.leftView)
}
}
}
func testSerializationTextField() {
let textField = MDCTextField()
textField.borderView?.borderFillColor = .purple
textField.borderView?.borderPath = UIBezierPath(ovalIn: CGRect(x: 0, y: 0, width: 100, height: 100))
textField.borderView?.borderStrokeColor = .yellow
textField.cursorColor = .white
let leadingView = UILabel()
leadingView.text = "$"
textField.leadingView = leadingView
textField.leadingViewMode = .unlessEditing
textField.trailingUnderlineLabel.text = "%@#^#"
let trailingView = UILabel()
trailingView.text = ".com"
textField.trailingView = trailingView
textField.trailingViewMode = .unlessEditing
textField.translatesAutoresizingMaskIntoConstraints = false
textField.text = "Lorem ipsum dolor sit amet, consectetuer adipiscing"
textField.textInsetsMode = .never
let serializedInput = NSKeyedArchiver.archivedData(withRootObject: textField)
XCTAssertNotNil(serializedInput)
let unserializedInput =
NSKeyedUnarchiver.unarchiveObject(with: serializedInput) as? MDCTextField
XCTAssertNotNil(unserializedInput)
XCTAssertEqual(textField.text,
unserializedInput?.text)
XCTAssertEqual(textField.translatesAutoresizingMaskIntoConstraints,
unserializedInput?.translatesAutoresizingMaskIntoConstraints)
XCTAssertTrue(unserializedInput?.borderView != nil)
XCTAssertEqual(textField.borderView?.borderFillColor, unserializedInput?.borderView?.borderFillColor)
// Because of floating point inaccuracies, we can't compare the paths for equality. So, we
// compare the bounding box. But this too may be innaccurate. Revisit this if it starts failing.
XCTAssertEqual(textField.borderView?.borderPath?.bounds.integral, unserializedInput?.borderView?.borderPath?.bounds.integral)
XCTAssertEqual(textField.borderView?.borderStrokeColor, unserializedInput?.borderView?.borderStrokeColor)
XCTAssertEqual(textField.cursorColor, unserializedInput?.cursorColor)
XCTAssertEqual(textField.leadingUnderlineLabel.text,
unserializedInput?.leadingUnderlineLabel.text)
if let leadingViewUnserialized = unserializedInput?.leadingView as? UILabel {
XCTAssertEqual(leadingViewUnserialized.text, leadingView.text)
} else {
XCTFail("No leading view or it isn't a UILabel")
}
XCTAssertEqual(unserializedInput?.leadingViewMode, .unlessEditing)
XCTAssertEqual(textField.leadingUnderlineLabel.text,
unserializedInput?.leadingUnderlineLabel.text)
XCTAssertEqual(textField.textInsetsMode, unserializedInput?.textInsetsMode)
if let trailingViewUnserialized = unserializedInput?.trailingView as? UILabel {
XCTAssertEqual(trailingViewUnserialized.text, trailingView.text)
} else {
XCTFail("No trailing view or it isn't a UILabel")
}
XCTAssertEqual(unserializedInput?.trailingViewMode, .unlessEditing)
XCTAssertEqual(textField.trailingUnderlineLabel.text,
unserializedInput?.trailingUnderlineLabel.text)
}
func testSizing() {
let textField = MDCTextField(frame: CGRect(x: 0, y: 0, width: 300, height: 0))
XCTAssertEqual(textField.frame.height, 0)
textField.frame = CGRect(x: 0, y: 0, width: 300, height: 40)
XCTAssertEqual(textField.frame.height, 40)
textField.sizeToFit()
XCTAssertEqual(textField.frame.height, 49)
textField.leadingUnderlineLabel.text = "Helper"
textField.sizeToFit()
XCTAssertEqual(textField.frame.height, 66)
textField.textInsetsMode = .never
XCTAssertEqual(textField.textInsetsMode, .never)
}
func testUnderlineSetters() {
let textField = MDCTextField()
textField.underline?.color = .red
textField.underline?.disabledColor = .yellow
textField.underline?.lineHeight = 10
XCTAssertEqual(textField.underline?.color, .red)
if let underline = textField.underline {
XCTAssertEqual(underline.color, .red)
XCTAssertEqual(underline.color, textField.underline?.color)
XCTAssertEqual(underline.lineHeight, 10)
XCTAssertEqual(underline.lineHeight, textField.underline?.lineHeight)
XCTAssertEqual(underline.disabledColor, .yellow)
} else {
XCTFail("No underline or underline is wrong class")
}
}
}