mirror of
https://github.com/material-components/material-components-ios.git
synced 2026-02-20 08:27:32 +08:00
254 lines
6.3 KiB
Objective-C
254 lines
6.3 KiB
Objective-C
// Copyright 2019-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 "MDCProgressView.h"
|
|
|
|
#import <CoreGraphics/CoreGraphics.h>
|
|
|
|
#import "MDCSnapshotTestCase.h"
|
|
#import "UIView+MDCSnapshot.h"
|
|
|
|
/** Snapshot tests for MDCProgressView. */
|
|
@interface MDCProgressViewSnapshotTests : MDCSnapshotTestCase
|
|
|
|
/** The view being tested. */
|
|
@property(nonatomic, strong) MDCProgressView *progressView;
|
|
|
|
@end
|
|
|
|
@implementation MDCProgressViewSnapshotTests
|
|
|
|
- (void)setUp {
|
|
[super setUp];
|
|
|
|
// Uncomment below to recreate all the goldens (or add the following line to the specific
|
|
// test you wish to recreate the golden for).
|
|
// self.recordMode = YES;
|
|
|
|
self.progressView = [[MDCProgressView alloc] initWithFrame:CGRectMake(0, 0, 100, 10)];
|
|
}
|
|
|
|
- (void)tearDown {
|
|
self.progressView = nil;
|
|
|
|
[super tearDown];
|
|
}
|
|
|
|
- (void)generateSnapshotAndVerifyForView:(UIView *)view {
|
|
UIView *snapshotView = [view mdc_addToBackgroundView];
|
|
[self snapshotVerifyView:snapshotView];
|
|
}
|
|
|
|
#pragma mark - Tests
|
|
|
|
- (void)testProgress000LTR {
|
|
// When
|
|
self.progressView.progress = 0;
|
|
|
|
// Then
|
|
[self generateSnapshotAndVerifyForView:self.progressView];
|
|
}
|
|
|
|
- (void)testProgress000RTL {
|
|
// When
|
|
[self changeViewToRTL:self.progressView];
|
|
self.progressView.progress = 0;
|
|
|
|
// Then
|
|
[self generateSnapshotAndVerifyForView:self.progressView];
|
|
}
|
|
|
|
- (void)testProgress025LTR {
|
|
// When
|
|
self.progressView.progress = (float).25;
|
|
|
|
// Then
|
|
[self generateSnapshotAndVerifyForView:self.progressView];
|
|
}
|
|
|
|
- (void)testProgress025RTL {
|
|
// When
|
|
[self changeViewToRTL:self.progressView];
|
|
self.progressView.progress = (float).25;
|
|
|
|
// Then
|
|
[self generateSnapshotAndVerifyForView:self.progressView];
|
|
}
|
|
|
|
- (void)testProgress065LTR {
|
|
// When
|
|
self.progressView.progress = (float).65;
|
|
|
|
// Then
|
|
[self generateSnapshotAndVerifyForView:self.progressView];
|
|
}
|
|
|
|
- (void)testProgress065RTL {
|
|
// When
|
|
[self changeViewToRTL:self.progressView];
|
|
self.progressView.progress = (float).65;
|
|
|
|
// Then
|
|
[self generateSnapshotAndVerifyForView:self.progressView];
|
|
}
|
|
|
|
- (void)testProgress097LTR {
|
|
// When
|
|
self.progressView.progress = (float).97;
|
|
|
|
// Then
|
|
[self generateSnapshotAndVerifyForView:self.progressView];
|
|
}
|
|
|
|
- (void)testProgress097RTL {
|
|
// When
|
|
[self changeViewToRTL:self.progressView];
|
|
self.progressView.progress = (float).97;
|
|
|
|
// Then
|
|
[self generateSnapshotAndVerifyForView:self.progressView];
|
|
}
|
|
|
|
- (void)testProgress100LTR {
|
|
// When
|
|
self.progressView.progress = 1;
|
|
|
|
// Then
|
|
[self generateSnapshotAndVerifyForView:self.progressView];
|
|
}
|
|
|
|
- (void)testProgress100RTL {
|
|
// When
|
|
[self changeViewToRTL:self.progressView];
|
|
self.progressView.progress = 1;
|
|
|
|
// Then
|
|
[self generateSnapshotAndVerifyForView:self.progressView];
|
|
}
|
|
|
|
- (void)testGradientProgress000LTR {
|
|
// Given
|
|
self.progressView.progressTintColors =
|
|
@[ UIColor.greenColor, UIColor.blueColor, UIColor.redColor ];
|
|
|
|
// When
|
|
self.progressView.progress = 0;
|
|
|
|
// Then
|
|
[self generateSnapshotAndVerifyForView:self.progressView];
|
|
}
|
|
|
|
- (void)testGradientProgress050LTR {
|
|
// Given
|
|
self.progressView.progressTintColors =
|
|
@[ UIColor.greenColor, UIColor.blueColor, UIColor.redColor ];
|
|
|
|
// When
|
|
self.progressView.progress = 0.5f;
|
|
|
|
// Then
|
|
[self generateSnapshotAndVerifyForView:self.progressView];
|
|
}
|
|
|
|
- (void)testGradientProgress100LTR {
|
|
// Given
|
|
self.progressView.progressTintColors =
|
|
@[ UIColor.greenColor, UIColor.blueColor, UIColor.redColor ];
|
|
|
|
// When
|
|
self.progressView.progress = 1;
|
|
|
|
// Then
|
|
[self generateSnapshotAndVerifyForView:self.progressView];
|
|
}
|
|
|
|
- (void)testGradientProgress000RTL {
|
|
// Given
|
|
self.progressView.progressTintColors =
|
|
@[ UIColor.greenColor, UIColor.blueColor, UIColor.redColor ];
|
|
|
|
// When
|
|
[self changeViewToRTL:self.progressView];
|
|
self.progressView.progress = 0;
|
|
|
|
// Then
|
|
[self generateSnapshotAndVerifyForView:self.progressView];
|
|
}
|
|
|
|
- (void)testGradientProgress050RTL {
|
|
// Given
|
|
self.progressView.progressTintColors =
|
|
@[ UIColor.greenColor, UIColor.blueColor, UIColor.redColor ];
|
|
|
|
// When
|
|
[self changeViewToRTL:self.progressView];
|
|
self.progressView.progress = 0.5f;
|
|
|
|
// Then
|
|
[self generateSnapshotAndVerifyForView:self.progressView];
|
|
}
|
|
|
|
- (void)testGradientProgress100RTL {
|
|
// Given
|
|
self.progressView.progressTintColors =
|
|
@[ UIColor.greenColor, UIColor.blueColor, UIColor.redColor ];
|
|
|
|
// When
|
|
[self changeViewToRTL:self.progressView];
|
|
self.progressView.progress = 1;
|
|
|
|
// Then
|
|
[self generateSnapshotAndVerifyForView:self.progressView];
|
|
}
|
|
|
|
- (void)testHidden {
|
|
// When
|
|
self.progressView.progress = .5;
|
|
XCTestExpectation *hiddenExpectation = [self expectationWithDescription:@"hidden"];
|
|
[self.progressView setHidden:YES
|
|
animated:NO
|
|
completion:^(BOOL finished) {
|
|
[hiddenExpectation fulfill];
|
|
}];
|
|
[self waitForExpectations:@[ hiddenExpectation ] timeout:1];
|
|
|
|
// Then
|
|
[self generateSnapshotAndVerifyForView:self.progressView];
|
|
}
|
|
|
|
- (void)testHiddenThenUnhidden {
|
|
// When
|
|
self.progressView.progress = .5;
|
|
XCTestExpectation *hiddenExpectation = [self expectationWithDescription:@"hidden"];
|
|
XCTestExpectation *unhiddenExpectation = [self expectationWithDescription:@"unhidden"];
|
|
[self.progressView setHidden:YES
|
|
animated:NO
|
|
completion:^(BOOL finished) {
|
|
[hiddenExpectation fulfill];
|
|
}];
|
|
[self waitForExpectations:@[ hiddenExpectation ] timeout:1];
|
|
|
|
[self.progressView setHidden:NO
|
|
animated:NO
|
|
completion:^(BOOL finished) {
|
|
[unhiddenExpectation fulfill];
|
|
}];
|
|
[self waitForExpectations:@[ unhiddenExpectation ] timeout:1];
|
|
|
|
// Then
|
|
[self generateSnapshotAndVerifyForView:self.progressView];
|
|
}
|
|
|
|
@end
|