utc capi: Added shape fill utc.
authorMichal Szczecinski <mihashco89@gmail.com>
Fri, 4 Jun 2021 08:11:11 +0000 (10:11 +0200)
committerHermet Park <chuneon.park@samsung.com>
Mon, 14 Jun 2021 03:51:41 +0000 (12:51 +0900)
test/capi/testFill.cpp [new file with mode: 0644]
test/meson.build

diff --git a/test/capi/testFill.cpp b/test/capi/testFill.cpp
new file mode 100644 (file)
index 0000000..bbb2b94
--- /dev/null
@@ -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 <thorvg_capi.h>
+#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
index 1c7de8b..360f1fb 100644 (file)
@@ -3,6 +3,7 @@ test_file = [
     'testInitializer.cpp',
     'testSwCanvas.cpp',
     'testSwCanvasBase.cpp',
+    'capi/testFill.cpp',
 ]
 
 tests = executable('tvgUnitTests',