Upstream version 7.36.149.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / Source / core / animation / AnimatableValueTestHelperTest.cpp
1 /*
2  * Copyright (c) 2013, Google Inc. All rights reserved.
3  *
4  * Redistribution and use in source and binary forms, with or without
5  * modification, are permitted provided that the following conditions are
6  * met:
7  *
8  *     * Redistributions of source code must retain the above copyright
9  * notice, this list of conditions and the following disclaimer.
10  *     * Redistributions in binary form must reproduce the above
11  * copyright notice, this list of conditions and the following disclaimer
12  * in the documentation and/or other materials provided with the
13  * distribution.
14  *     * Neither the name of Google Inc. nor the names of its
15  * contributors may be used to endorse or promote products derived from
16  * this software without specific prior written permission.
17  *
18  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
19  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
20  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
21  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
22  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
23  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
24  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29  */
30
31 #include "config.h"
32
33 #include "core/animation/AnimatableValueTestHelper.h"
34
35 #include "core/rendering/ClipPathOperation.h"
36 #include "core/rendering/style/BasicShapes.h"
37 #include "core/svg/SVGLengthContext.h"
38 #include "platform/transforms/ScaleTransformOperation.h"
39 #include "platform/transforms/TranslateTransformOperation.h"
40
41 #include <gmock/gmock.h>
42 #include <gtest/gtest.h>
43 #include <sstream>
44 #include <string>
45
46
47 using namespace WebCore;
48
49 namespace {
50
51 class AnimationAnimatableValueTestHelperTest : public ::testing::Test {
52 protected:
53     ::std::string PrintToString(PassRefPtrWillBeRawPtr<AnimatableValue> animValue)
54     {
55         return ::testing::PrintToString(*animValue.get());
56     }
57 };
58
59 TEST_F(AnimationAnimatableValueTestHelperTest, PrintTo)
60 {
61     EXPECT_THAT(
62         PrintToString(AnimatableClipPathOperation::create(ShapeClipPathOperation::create(BasicShapeCircle::create().get()).get())),
63         testing::StartsWith("AnimatableClipPathOperation")
64         );
65
66     EXPECT_EQ(
67         ::std::string("AnimatableColor(rgba(0, 0, 0, 0), #ff0000)"),
68         PrintToString(AnimatableColor::create(Color(0x000000FF), Color(0xFFFF0000))));
69
70     EXPECT_THAT(
71         PrintToString(const_cast<AnimatableValue*>(AnimatableValue::neutralValue())),
72         testing::StartsWith("AnimatableNeutral@"));
73
74     RefPtr<SVGLength> length1cm = SVGLength::create(LengthModeOther);
75     RefPtr<SVGLength> length2cm = SVGLength::create(LengthModeOther);
76     length1cm->setValueAsString("1cm", ASSERT_NO_EXCEPTION);
77     length2cm->setValueAsString("2cm", ASSERT_NO_EXCEPTION);
78
79     EXPECT_EQ(
80         ::std::string("AnimatableSVGLength(1cm)"),
81         PrintToString(AnimatableSVGLength::create(length1cm)));
82
83     EXPECT_EQ(
84         ::std::string("AnimatableSVGPaint(#ff0000)"),
85         PrintToString(AnimatableSVGPaint::create(SVGPaint::SVG_PAINTTYPE_RGBCOLOR, Color(0xFFFF0000), "")));
86
87     EXPECT_EQ(
88         ::std::string("AnimatableSVGPaint(url(abc))"),
89         PrintToString(AnimatableSVGPaint::create(SVGPaint::SVG_PAINTTYPE_URI, Color(0xFFFF0000), "abc")));
90
91     EXPECT_THAT(
92         PrintToString(AnimatableShapeValue::create(ShapeValue::createShapeValue(BasicShapeCircle::create().get(), ContentBox).get())),
93         testing::StartsWith("AnimatableShapeValue@"));
94
95     RefPtr<SVGLengthList> l2 = SVGLengthList::create();
96     l2->append(length1cm);
97     l2->append(length2cm);
98     EXPECT_EQ(
99         ::std::string("AnimatableStrokeDasharrayList(1cm, 2cm)"),
100         PrintToString(AnimatableStrokeDasharrayList::create(l2)));
101
102     TransformOperations operations1;
103     operations1.operations().append(TranslateTransformOperation::create(Length(2, WebCore::Fixed), Length(0, WebCore::Fixed), TransformOperation::TranslateX));
104     EXPECT_EQ(
105         ::std::string("AnimatableTransform([1 0 0 1 2 0])"),
106         PrintToString(AnimatableTransform::create(operations1)));
107
108     TransformOperations operations2;
109     operations2.operations().append(ScaleTransformOperation::create(1, 1, 1, TransformOperation::Scale3D));
110     EXPECT_EQ(
111         ::std::string("AnimatableTransform([1 0 0 1 0 0])"),
112         PrintToString(AnimatableTransform::create(operations2)));
113
114     EXPECT_EQ(
115         ::std::string("AnimatableUnknown(none)"),
116         PrintToString(AnimatableUnknown::create(CSSPrimitiveValue::createIdentifier(CSSValueNone).get())));
117
118     EXPECT_EQ(
119         ::std::string("AnimatableVisibility(VISIBLE)"),
120         PrintToString(AnimatableVisibility::create(VISIBLE)));
121 }
122
123 } // namespace