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

Side by Side Diff: cc/animation/scroll_offset_animation_curve_unittest.cc

Issue 393713002: Scroll offset animation curve retargeting. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Remove workaround. Created 6 years, 5 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 | Annotate | Revision Log
« no previous file with comments | « cc/animation/scroll_offset_animation_curve.cc ('k') | cc/animation/timing_function.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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 "cc/animation/scroll_offset_animation_curve.h" 5 #include "cc/animation/scroll_offset_animation_curve.h"
6 6
7 #include "cc/animation/timing_function.h" 7 #include "cc/animation/timing_function.h"
8 #include "cc/test/geometry_test_utils.h" 8 #include "cc/test/geometry_test_utils.h"
9 #include "testing/gtest/include/gtest/gtest.h" 9 #include "testing/gtest/include/gtest/gtest.h"
10 10
(...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after
112 target_value, 112 target_value,
113 clone->ToScrollOffsetAnimationCurve()->GetValue(duration + 1.0)); 113 clone->ToScrollOffsetAnimationCurve()->GetValue(duration + 1.0));
114 114
115 // Verify that the timing function was cloned correctly. 115 // Verify that the timing function was cloned correctly.
116 gfx::Vector2dF value = 116 gfx::Vector2dF value =
117 clone->ToScrollOffsetAnimationCurve()->GetValue(duration / 4.0); 117 clone->ToScrollOffsetAnimationCurve()->GetValue(duration / 4.0);
118 EXPECT_NEAR(3.0333f, value.x(), 0.00015f); 118 EXPECT_NEAR(3.0333f, value.x(), 0.00015f);
119 EXPECT_NEAR(37.4168f, value.y(), 0.00015f); 119 EXPECT_NEAR(37.4168f, value.y(), 0.00015f);
120 } 120 }
121 121
122 TEST(ScrollOffsetAnimationCurveTest, UpdateTarget) {
123 gfx::Vector2dF initial_value(0.f, 0.f);
124 gfx::Vector2dF target_value(0.f, 3600.f);
125 scoped_ptr<ScrollOffsetAnimationCurve> curve(
126 ScrollOffsetAnimationCurve::Create(
127 target_value, EaseInOutTimingFunction::Create().Pass()));
128 curve->SetInitialValue(initial_value);
129 EXPECT_EQ(1.0, curve->Duration());
130 EXPECT_EQ(1800.0, curve->GetValue(0.5).y());
131 EXPECT_EQ(3600.0, curve->GetValue(1.0).y());
132
133 curve->UpdateTarget(0.5, gfx::Vector2dF(0.0, 9900.0));
134
135 EXPECT_EQ(2.0, curve->Duration());
136 EXPECT_EQ(1800.0, curve->GetValue(0.5).y());
137 EXPECT_NEAR(5566.49, curve->GetValue(1.0).y(), 0.01);
138 EXPECT_EQ(9900.0, curve->GetValue(2.0).y());
139
140 curve->UpdateTarget(1.0, gfx::Vector2dF(0.0, 7200.0));
141
142 EXPECT_NEAR(1.674, curve->Duration(), 0.01);
143 EXPECT_NEAR(5566.49, curve->GetValue(1.0).y(), 0.01);
144 EXPECT_EQ(7200.0, curve->GetValue(1.674).y());
145 }
146
122 } // namespace 147 } // namespace
123 } // namespace cc 148 } // namespace cc
OLDNEW
« no previous file with comments | « cc/animation/scroll_offset_animation_curve.cc ('k') | cc/animation/timing_function.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698