Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1729)

Side by Side Diff: Source/core/animation/animatable/AnimatableLengthTest.cpp

Issue 1120003002: [Oilpan] Migrate most classes under core/animations to Oilpan heap. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebase Created 5 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "config.h" 5 #include "config.h"
6 #include "core/animation/animatable/AnimatableLength.h" 6 #include "core/animation/animatable/AnimatableLength.h"
7 7
8 #include "platform/CalculationValue.h" 8 #include "platform/CalculationValue.h"
9 #include <gtest/gtest.h> 9 #include <gtest/gtest.h>
10 10
11 namespace blink { 11 namespace blink {
12 12
13 namespace { 13 namespace {
14 14
15 PassRefPtrWillBeRawPtr<AnimatableLength> create(const Length& length, double zoo m = 1) 15 AnimatableLength* create(const Length& length, double zoom = 1)
16 { 16 {
17 return AnimatableLength::create(length, zoom); 17 return AnimatableLength::create(length, zoom);
18 } 18 }
19 19
20 } // anonymous namespace 20 } // anonymous namespace
21 21
22 TEST(AnimationAnimatableLengthTest, RoundTripConversion) 22 TEST(AnimationAnimatableLengthTest, RoundTripConversion)
23 { 23 {
24 EXPECT_EQ(Length(0, Fixed), create(Length(0, Fixed))->length(1, ValueRangeAl l)); 24 EXPECT_EQ(Length(0, Fixed), create(Length(0, Fixed))->length(1, ValueRangeAl l));
25 EXPECT_EQ(Length(0, Percent), create(Length(0, Percent))->length(1, ValueRan geAll)); 25 EXPECT_EQ(Length(0, Percent), create(Length(0, Percent))->length(1, ValueRan geAll));
(...skipping 19 matching lines...) Expand all
45 { 45 {
46 EXPECT_EQ(Length(4, Fixed), create(Length(10, Fixed), 5)->length(2, ValueRan geAll)); 46 EXPECT_EQ(Length(4, Fixed), create(Length(10, Fixed), 5)->length(2, ValueRan geAll));
47 EXPECT_EQ(Length(10, Percent), create(Length(10, Percent), 5)->length(2, Val ueRangeAll)); 47 EXPECT_EQ(Length(10, Percent), create(Length(10, Percent), 5)->length(2, Val ueRangeAll));
48 Length calc = Length(CalculationValue::create(PixelsAndPercent(5, 10), Value RangeAll)); 48 Length calc = Length(CalculationValue::create(PixelsAndPercent(5, 10), Value RangeAll));
49 Length result = Length(CalculationValue::create(PixelsAndPercent(2, 10), Val ueRangeAll)); 49 Length result = Length(CalculationValue::create(PixelsAndPercent(2, 10), Val ueRangeAll));
50 EXPECT_TRUE(result == create(calc, 5)->length(2, ValueRangeAll)); 50 EXPECT_TRUE(result == create(calc, 5)->length(2, ValueRangeAll));
51 } 51 }
52 52
53 TEST(AnimationAnimatableLengthTest, Equals) 53 TEST(AnimationAnimatableLengthTest, Equals)
54 { 54 {
55 EXPECT_TRUE(create(Length(10, Fixed))->equals(create(Length(10, Fixed)).get( ))); 55 EXPECT_TRUE(create(Length(10, Fixed))->equals(create(Length(10, Fixed))));
56 EXPECT_TRUE(create(Length(20, Percent))->equals(create(Length(20, Percent)). get())); 56 EXPECT_TRUE(create(Length(20, Percent))->equals(create(Length(20, Percent))) );
57 EXPECT_FALSE(create(Length(10, Fixed))->equals(create(Length(10, Percent)).g et())); 57 EXPECT_FALSE(create(Length(10, Fixed))->equals(create(Length(10, Percent)))) ;
58 EXPECT_FALSE(create(Length(0, Percent))->equals(create(Length(0, Fixed)).get ())); 58 EXPECT_FALSE(create(Length(0, Percent))->equals(create(Length(0, Fixed))));
59 Length calc = Length(CalculationValue::create(PixelsAndPercent(5, 10), Value RangeAll)); 59 Length calc = Length(CalculationValue::create(PixelsAndPercent(5, 10), Value RangeAll));
60 EXPECT_TRUE(create(calc)->equals(create(calc).get())); 60 EXPECT_TRUE(create(calc)->equals(create(calc)));
61 EXPECT_FALSE(create(calc)->equals(create(Length(10, Percent)).get())); 61 EXPECT_FALSE(create(calc)->equals(create(Length(10, Percent))));
62 } 62 }
63 63
64 TEST(AnimationAnimatableLengthTest, Interpolate) 64 TEST(AnimationAnimatableLengthTest, Interpolate)
65 { 65 {
66 EXPECT_TRUE(AnimatableValue::interpolate(create(Length(10, Fixed)).get(), cr eate(Length(0, Fixed)).get(), 0.2)->equals(create(Length(8, Fixed)).get())); 66 EXPECT_TRUE(AnimatableValue::interpolate(create(Length(10, Fixed)), create(L ength(0, Fixed)), 0.2)->equals(create(Length(8, Fixed))));
67 EXPECT_TRUE(AnimatableValue::interpolate(create(Length(4, Percent)).get(), c reate(Length(12, Percent)).get(), 0.25)->equals(create(Length(6, Percent)).get() )); 67 EXPECT_TRUE(AnimatableValue::interpolate(create(Length(4, Percent)), create( Length(12, Percent)), 0.25)->equals(create(Length(6, Percent))));
68 Length calc = Length(CalculationValue::create(PixelsAndPercent(12, 4), Value RangeAll)); 68 Length calc = Length(CalculationValue::create(PixelsAndPercent(12, 4), Value RangeAll));
69 EXPECT_TRUE(AnimatableValue::interpolate(create(Length(20, Fixed)).get(), cr eate(Length(10, Percent)).get(), 0.4)->equals(create(calc).get())); 69 EXPECT_TRUE(AnimatableValue::interpolate(create(Length(20, Fixed)), create(L ength(10, Percent)), 0.4)->equals(create(calc)));
70 } 70 }
71 71
72 } // namespace blink 72 } // namespace blink
OLDNEW
« no previous file with comments | « Source/core/animation/animatable/AnimatableLengthSize.cpp ('k') | Source/core/animation/animatable/AnimatableNeutral.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698