blob: 31bc3717726a01d76a092fe2d2efd813bb7a91c4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
|
// SPDX-License-Identifier: GPL-2.0-or-later
/** @file
* LPE Boolean operation test
*//*
* Authors: see git history
*
* Copyright (C) 2020 Authors
*
* Released under GNU GPL version 2 or later, read the file 'COPYING' for more information
*/
#include <gtest/gtest.h>
#include <src/document.h>
#include <src/inkscape.h>
#include <src/live_effects/lpe-bool.h>
#include <src/object/sp-ellipse.h>
#include <src/object/sp-lpe-item.h>
using namespace Inkscape;
using namespace Inkscape::LivePathEffect;
class LPEBoolTest : public ::testing::Test {
protected:
void SetUp() override
{
// setup hidden dependency
Application::create(false);
}
};
TEST_F(LPEBoolTest, canBeApplyedToNonSiblingPaths)
{
std::string svg("\
<svg width='100' height='100'\
xmlns:sodipodi='http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd'\
xmlns:inkscape='http://www.inkscape.org/namespaces/inkscape'>\
<defs>\
<inkscape:path-effect\
id='path-effect1'\
effect='bool_op'\
operation='diff'\
operand-path='#circle1'\
lpeversion='1'\
hide-linked='true' />\
</defs>\
<path id='rect1'\
inkscape:path-effect='#path-effect1'\
sodipodi:type='rect'\
width='100' height='100' fill='#ff0000' />\
<g id='group1'>\
<circle id='circle1'\
r='40' cy='50' cx='50' fill='#ffffff' style='display:inline'/>\
</g>\
</svg>");
SPDocument *doc = SPDocument::createNewDocFromMem(svg.c_str(), svg.size(), true);
doc->ensureUpToDate();
auto lpe_item = dynamic_cast<SPLPEItem *>(doc->getObjectById("rect1"));
ASSERT_TRUE(lpe_item != nullptr);
auto lpe_bool_op_effect = dynamic_cast<LPEBool *>(lpe_item->getPathEffectOfType(EffectType::BOOL_OP));
ASSERT_TRUE(lpe_bool_op_effect != nullptr);
auto operand_path = lpe_bool_op_effect->getParameter("operand-path")->param_getSVGValue();
auto circle = dynamic_cast<SPGenericEllipse *>(doc->getObjectById(operand_path.substr(1)));
ASSERT_TRUE(circle != nullptr);
}
|