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/animatable/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
47using namespace blink;
48
49namespace {
50
51class AnimationAnimatableValueTestHelperTest : public ::testing::Test {
52protected:
53    ::std::string PrintToString(PassRefPtrWillBeRawPtr<AnimatableValue> animValue)
54    {
55        return ::testing::PrintToString(*animValue.get());
56    }
57};
58
59TEST_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_THAT(
84        PrintToString(AnimatableShapeValue::create(ShapeValue::createShapeValue(BasicShapeCircle::create().get(), ContentBox).get())),
85        testing::StartsWith("AnimatableShapeValue@"));
86
87    RefPtr<SVGLengthList> l2 = SVGLengthList::create();
88    l2->append(length1cm);
89    l2->append(length2cm);
90    EXPECT_EQ(
91        ::std::string("AnimatableStrokeDasharrayList(1cm, 2cm)"),
92        PrintToString(AnimatableStrokeDasharrayList::create(l2)));
93
94    TransformOperations operations1;
95    operations1.operations().append(TranslateTransformOperation::create(Length(2, blink::Fixed), Length(0, blink::Fixed), TransformOperation::TranslateX));
96    EXPECT_EQ(
97        ::std::string("AnimatableTransform([1 0 0 1 2 0])"),
98        PrintToString(AnimatableTransform::create(operations1)));
99
100    TransformOperations operations2;
101    operations2.operations().append(ScaleTransformOperation::create(1, 1, 1, TransformOperation::Scale3D));
102    EXPECT_EQ(
103        ::std::string("AnimatableTransform([1 0 0 1 0 0])"),
104        PrintToString(AnimatableTransform::create(operations2)));
105
106    EXPECT_EQ(
107        ::std::string("AnimatableUnknown(none)"),
108        PrintToString(AnimatableUnknown::create(CSSPrimitiveValue::createIdentifier(CSSValueNone).get())));
109
110    EXPECT_EQ(
111        ::std::string("AnimatableVisibility(VISIBLE)"),
112        PrintToString(AnimatableVisibility::create(VISIBLE)));
113}
114
115} // namespace
116