1 // Copyright (c) 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "chrome/browser/ui/cocoa/spinner_view.h"
7 #import "ui/gfx/test/ui_cocoa_test_helper.h"
9 @interface SpinnerView(ExposedForTesting)
15 @implementation SpinnerView(ExposedForTesting)
26 class SpinnerViewTest : public ui::CocoaTest {
29 CGRect frame = NSMakeRect(0.0, 0.0, 16.0, 16.0);
30 view_.reset([[SpinnerView alloc] initWithFrame:frame]);
31 [[test_window() contentView] addSubview:view_];
34 base::scoped_nsobject<SpinnerView> view_;
37 TEST_VIEW(SpinnerViewTest, view_)
39 TEST_F(SpinnerViewTest, StopAnimationOnMiniaturize) {
40 EXPECT_TRUE([view_ is_animating]);
42 [test_window() miniaturize:nil];
43 EXPECT_FALSE([view_ is_animating]);
45 [test_window() deminiaturize:nil];
46 EXPECT_TRUE([view_ is_animating]);
49 TEST_F(SpinnerViewTest,
50 StopAnimationOnRemoveFromSuperview) {
51 EXPECT_TRUE([view_ is_animating]);
53 [view_ removeFromSuperview];
54 EXPECT_FALSE([view_ is_animating]);
56 [[test_window() contentView] addSubview:view_];
57 EXPECT_TRUE([view_ is_animating]);
60 TEST_F(SpinnerViewTest, StopAnimationOnHidden) {
61 EXPECT_TRUE([view_ is_animating]);
63 [view_ setHidden:YES];
64 EXPECT_FALSE([view_ is_animating]);
67 EXPECT_TRUE([view_ is_animating]);