| OLD | NEW |
| 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 | |
| 7 #include "core/animation/animatable/AnimatableLength.h" | 6 #include "core/animation/animatable/AnimatableLength.h" |
| 8 | 7 |
| 9 #include "platform/CalculationValue.h" | 8 #include "platform/CalculationValue.h" |
| 10 | |
| 11 #include <gtest/gtest.h> | 9 #include <gtest/gtest.h> |
| 12 | 10 |
| 13 namespace blink { | 11 namespace blink { |
| 14 | 12 |
| 15 namespace { | 13 namespace { |
| 16 | 14 |
| 17 PassRefPtrWillBeRawPtr<AnimatableLength> create(const Length& length, double
zoom = 1) | 15 PassRefPtrWillBeRawPtr<AnimatableLength> create(const Length& length, double zoo
m = 1) |
| 18 { | 16 { |
| 19 return AnimatableLength::create(length, zoom); | 17 return AnimatableLength::create(length, zoom); |
| 20 } | 18 } |
| 21 | 19 |
| 22 } // namespace | 20 } // anonymous namespace |
| 23 | 21 |
| 24 TEST(AnimationAnimatableLengthTest, RoundTripConversion) | 22 TEST(AnimationAnimatableLengthTest, RoundTripConversion) |
| 25 { | 23 { |
| 26 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)); |
| 27 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)); |
| 28 EXPECT_EQ(Length(10, Fixed), create(Length(10, Fixed))->length(1, ValueRange
All)); | 26 EXPECT_EQ(Length(10, Fixed), create(Length(10, Fixed))->length(1, ValueRange
All)); |
| 29 EXPECT_EQ(Length(10, Percent), create(Length(10, Percent))->length(1, ValueR
angeAll)); | 27 EXPECT_EQ(Length(10, Percent), create(Length(10, Percent))->length(1, ValueR
angeAll)); |
| 30 EXPECT_EQ(Length(-10, Fixed), create(Length(-10, Fixed))->length(1, ValueRan
geAll)); | 28 EXPECT_EQ(Length(-10, Fixed), create(Length(-10, Fixed))->length(1, ValueRan
geAll)); |
| 31 EXPECT_EQ(Length(-10, Percent), create(Length(-10, Percent))->length(1, Valu
eRangeAll)); | 29 EXPECT_EQ(Length(-10, Percent), create(Length(-10, Percent))->length(1, Valu
eRangeAll)); |
| 32 Length calc = Length(CalculationValue::create(PixelsAndPercent(5, 10), Value
RangeAll)); | 30 Length calc = Length(CalculationValue::create(PixelsAndPercent(5, 10), Value
RangeAll)); |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 65 | 63 |
| 66 TEST(AnimationAnimatableLengthTest, Interpolate) | 64 TEST(AnimationAnimatableLengthTest, Interpolate) |
| 67 { | 65 { |
| 68 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)).get(), cr
eate(Length(0, Fixed)).get(), 0.2)->equals(create(Length(8, Fixed)).get())); |
| 69 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)).get(), c
reate(Length(12, Percent)).get(), 0.25)->equals(create(Length(6, Percent)).get()
)); |
| 70 Length calc = Length(CalculationValue::create(PixelsAndPercent(12, 4), Value
RangeAll)); | 68 Length calc = Length(CalculationValue::create(PixelsAndPercent(12, 4), Value
RangeAll)); |
| 71 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)).get(), cr
eate(Length(10, Percent)).get(), 0.4)->equals(create(calc).get())); |
| 72 } | 70 } |
| 73 | 71 |
| 74 } // namespace blink | 72 } // namespace blink |
| OLD | NEW |