mirror of
https://github.com/thorvg/thorvg.git
synced 2025-06-10 14:41:50 +00:00
81 lines
No EOL
2.9 KiB
C++
81 lines
No EOL
2.9 KiB
C++
/*
|
|
* 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);
|
|
} |