From 3f8f0eac5491ece14e555e1478675b9f4f60e1a8 Mon Sep 17 00:00:00 2001 From: Michal Szczecinski Date: Fri, 4 Jun 2021 10:11:11 +0200 Subject: [PATCH] utc capi: Added shape fill utc. --- test/capi/testFill.cpp | 81 ++++++++++++++++++++++++++++++++++++++++++++++++++ test/meson.build | 1 + 2 files changed, 82 insertions(+) create mode 100644 test/capi/testFill.cpp diff --git a/test/capi/testFill.cpp b/test/capi/testFill.cpp new file mode 100644 index 0000000..bbb2b94 --- /dev/null +++ b/test/capi/testFill.cpp @@ -0,0 +1,81 @@ +/* + * Copyright (c) 2020-2021 Samsung Electronics Co., Ltd. All rights reserved. + + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + + * The above copyright notice and this permission notice shall be included in all + * copies or substantial portions of the Software. + + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + * SOFTWARE. + */ + +#include +#include "catch.hpp" + +#define TEST_R 120 +#define TEST_G 154 +#define TEST_B 180 +#define TEST_A 100 + +TEST_CASE("Set/Get fill color", "[tvgCapiShapeFill]") +{ + Tvg_Paint *paint = NULL; + paint = tvg_shape_new(); + + uint8_t r = 0, g = 0, b = 0, a = 0; + + REQUIRE(paint != NULL); + REQUIRE(tvg_shape_set_fill_color(paint, TEST_R, TEST_G, TEST_B, TEST_A) == TVG_RESULT_SUCCESS); + + REQUIRE(tvg_shape_get_fill_color(paint, &r, &g, &b, &a) == TVG_RESULT_SUCCESS); + REQUIRE(r == TEST_R); + REQUIRE(g == TEST_G); + REQUIRE(b == TEST_B); + REQUIRE(a == TEST_A); + + REQUIRE(tvg_paint_del(paint) == TVG_RESULT_SUCCESS); +} + +TEST_CASE("Set/Get fill color on invalid shape", "[tvgCapiShapeFill]") +{ + Tvg_Paint *paint = NULL; + + uint8_t r = 0, g = 0, b = 0, a = 0; + + REQUIRE(tvg_shape_set_fill_color(paint, TEST_R, TEST_G, TEST_B, TEST_A) == TVG_RESULT_INVALID_ARGUMENT); + REQUIRE(tvg_shape_get_fill_color(paint, &r, &g, &b, &a) == TVG_RESULT_INVALID_ARGUMENT); +} + +TEST_CASE("Set/Get shape fill rule", "[tvgCapiShapeFill]") +{ + Tvg_Paint *paint = NULL; + Tvg_Fill_Rule rule = TVG_FILL_RULE_WINDING; + + paint = tvg_shape_new(); + + REQUIRE(paint != NULL); + REQUIRE(tvg_shape_set_fill_rule(paint, TVG_FILL_RULE_EVEN_ODD) == TVG_RESULT_SUCCESS); + REQUIRE(tvg_shape_get_fill_rule(paint, &rule) == TVG_RESULT_SUCCESS); + REQUIRE(rule == TVG_FILL_RULE_EVEN_ODD); + REQUIRE(tvg_paint_del(paint) == TVG_RESULT_SUCCESS); +} + +TEST_CASE("Set/Get shape fill rule on invalid object", "[tvgCapiShapeFill]") +{ + Tvg_Paint *paint = NULL; + Tvg_Fill_Rule rule = TVG_FILL_RULE_WINDING; + + REQUIRE(tvg_shape_set_fill_rule(paint, TVG_FILL_RULE_EVEN_ODD) == TVG_RESULT_INVALID_ARGUMENT); + REQUIRE(tvg_shape_get_fill_rule(paint, &rule) == TVG_RESULT_INVALID_ARGUMENT); +} \ No newline at end of file diff --git a/test/meson.build b/test/meson.build index 1c7de8b..360f1fb 100644 --- a/test/meson.build +++ b/test/meson.build @@ -3,6 +3,7 @@ test_file = [ 'testInitializer.cpp', 'testSwCanvas.cpp', 'testSwCanvasBase.cpp', + 'capi/testFill.cpp', ] tests = executable('tvgUnitTests', -- 2.7.4