diff options
author | Alexander Shalamov <alexander.shalamov@mapbox.com> | 2020-02-25 15:00:37 +0200 |
---|---|---|
committer | Alexander Shalamov <alexander.shalamov@mapbox.com> | 2020-02-26 18:15:23 +0200 |
commit | d49284776bf0af2242ea4818702a9fe42d85bd55 (patch) | |
tree | f89cdac723dbe08ebeccb7a53ba1b46588f93cf8 | |
parent | fb5be4c80cca408b4a30e966a4e040e0c214588d (diff) | |
download | qtlocation-mapboxgl-d49284776bf0af2242ea4818702a9fe42d85bd55.tar.gz |
[core] Update Map.UniversalStyleGetter test
-rw-r--r-- | test/map/map.test.cpp | 29 |
1 files changed, 19 insertions, 10 deletions
diff --git a/test/map/map.test.cpp b/test/map/map.test.cpp index 41501e38a4..8f7270529f 100644 --- a/test/map/map.test.cpp +++ b/test/map/map.test.cpp @@ -1035,7 +1035,11 @@ TEST(Map, UniversalStyleGetter) { "paint": { "line-color": "red", "line-opacity": 0.5, - "line-width": ["get", "width"] + "line-width": ["get", "width"], + "line-opacity-transition": { + "duration": 400, + "delay": 500 + } }, "layout": { "line-cap": "butt" @@ -1056,13 +1060,15 @@ TEST(Map, UniversalStyleGetter) { StyleProperty lineColor = lineLayer->getProperty("line-color"); ASSERT_TRUE(lineColor.getValue()); - EXPECT_EQ(StyleProperty::Kind::Constant, lineColor.getKind()); - ASSERT_TRUE(lineColor.getValue().getObject()); - const auto& color = *(lineColor.getValue().getObject()); - EXPECT_EQ(1.0, *color.at("r").getDouble()); - EXPECT_EQ(0.0, *color.at("g").getDouble()); - EXPECT_EQ(0.0, *color.at("b").getDouble()); - EXPECT_EQ(1.0, *color.at("a").getDouble()); + EXPECT_EQ(StyleProperty::Kind::Expression, lineColor.getKind()); + ASSERT_TRUE(lineColor.getValue().getArray()); + const auto& color = *(lineColor.getValue().getArray()); + EXPECT_EQ(5u, color.size()); + EXPECT_EQ("rgba", *color[0].getString()); + EXPECT_EQ(255.0, *color[1].getDouble()); + EXPECT_EQ(0.0, *color[2].getDouble()); + EXPECT_EQ(0.0, *color[3].getDouble()); + EXPECT_EQ(1.0, *color[4].getDouble()); StyleProperty lineOpacity = lineLayer->getProperty("line-opacity"); ASSERT_TRUE(lineOpacity.getValue()); @@ -1073,8 +1079,11 @@ TEST(Map, UniversalStyleGetter) { StyleProperty lineOpacityTransition = lineLayer->getProperty("line-opacity-transition"); ASSERT_TRUE(lineOpacityTransition.getValue()); EXPECT_EQ(StyleProperty::Kind::Transition, lineOpacityTransition.getKind()); - ASSERT_TRUE(lineOpacityTransition.getValue().getArray()); - EXPECT_EQ(3u, lineOpacityTransition.getValue().getArray()->size()); + ASSERT_TRUE(lineOpacityTransition.getValue().getObject()); + EXPECT_EQ(2u, lineOpacityTransition.getValue().getObject()->size()); + + StyleProperty lineColorTransition = lineLayer->getProperty("line-color-transition"); + EXPECT_EQ(StyleProperty::Kind::Undefined, lineColorTransition.getKind()); StyleProperty lineWidth = lineLayer->getProperty("line-width"); ASSERT_TRUE(lineWidth.getValue()); |