KiCad PCB EDA Suite
Loading...
Searching...
No Matches
test_pad_size_setters.cpp
Go to the documentation of this file.
1
/*
2
* This program source code file is part of KiCad, a free EDA CAD application.
3
*
4
* Copyright The KiCad Developers, see AUTHORS.txt for contributors.
5
*
6
* This program is free software; you can redistribute it and/or
7
* modify it under the terms of the GNU General Public License
8
* as published by the Free Software Foundation; either version 2
9
* of the License, or (at your option) any later version.
10
*
11
* This program is distributed in the hope that it will be useful,
12
* but WITHOUT ANY WARRANTY; without even the implied warranty of
13
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14
* GNU General Public License for more details.
15
*
16
* You should have received a copy of the GNU General Public License
17
* along with this program. If not, see <https://www.gnu.org/licenses/>.
18
*/
19
20
#include <
qa_utils/wx_utils/unit_test_utils.h
>
21
22
#include <
board.h
>
23
#include <
footprint.h
>
24
#include <
pad.h
>
25
26
#include <memory>
27
28
BOOST_AUTO_TEST_SUITE
( PadSizeSetters )
29
30
// Regression test for GitLab #24333: editing a circular pad's diameter via the
31
// Properties panel calls PAD::SetSizeX with a single dimension. SetSizeX must
32
// keep the orthogonal dimension in lock-step for CIRCLE pads, otherwise DRC
33
// (e.g. annular-width) reads a stale Y and reports incorrect measurements.
34
BOOST_AUTO_TEST_CASE
( SetSizeXOnCirclePadUpdatesY )
35
{
36
BOARD
board;
37
board.
SetBoardUse
(
BOARD_USE::FPHOLDER
);
38
39
std::unique_ptr<FOOTPRINT> fp = std::make_unique<FOOTPRINT>( &board );
40
std::unique_ptr<PAD>
pad
= std::make_unique<PAD>( fp.get() );
41
42
pad
->SetPadstackMode(
PADSTACK::MODE::NORMAL
);
43
pad
->SetAttribute(
PAD_ATTRIB::PTH
);
44
pad
->SetLayerSet(
PAD::PTHMask
() );
45
pad
->SetShape(
PADSTACK::ALL_LAYERS
,
PAD_SHAPE::CIRCLE
);
46
pad
->SetSize(
PADSTACK::ALL_LAYERS
,
VECTOR2I
(
pcbIUScale
.mmToIU( 1.0 ),
pcbIUScale
.mmToIU( 1.0 ) ) );
47
48
pad
->SetSizeX(
pcbIUScale
.mmToIU( 1.5 ) );
49
50
BOOST_CHECK_EQUAL
(
pad
->GetSizeX(),
pcbIUScale
.mmToIU( 1.5 ) );
51
BOOST_CHECK_EQUAL
(
pad
->GetSizeY(),
pcbIUScale
.mmToIU( 1.5 ) );
52
}
53
54
55
// Mirror of the above. SetSizeY is hidden from the panel for CIRCLE pads via
56
// SetAvailableFunc, but the public setter still needs to honour the invariant.
57
BOOST_AUTO_TEST_CASE
( SetSizeYOnCirclePadUpdatesX )
58
{
59
BOARD
board;
60
board.
SetBoardUse
(
BOARD_USE::FPHOLDER
);
61
62
std::unique_ptr<FOOTPRINT> fp = std::make_unique<FOOTPRINT>( &board );
63
std::unique_ptr<PAD>
pad
= std::make_unique<PAD>( fp.get() );
64
65
pad
->SetAttribute(
PAD_ATTRIB::PTH
);
66
pad
->SetLayerSet(
PAD::PTHMask
() );
67
pad
->SetShape(
PADSTACK::ALL_LAYERS
,
PAD_SHAPE::CIRCLE
);
68
pad
->SetSize(
PADSTACK::ALL_LAYERS
,
VECTOR2I
(
pcbIUScale
.mmToIU( 1.0 ),
pcbIUScale
.mmToIU( 1.0 ) ) );
69
70
pad
->SetSizeY(
pcbIUScale
.mmToIU( 1.5 ) );
71
72
BOOST_CHECK_EQUAL
(
pad
->GetSizeX(),
pcbIUScale
.mmToIU( 1.5 ) );
73
BOOST_CHECK_EQUAL
(
pad
->GetSizeY(),
pcbIUScale
.mmToIU( 1.5 ) );
74
}
75
76
77
// Guard against the fix over-applying: non-circular shapes have independently
78
// meaningful X and Y, so SetSizeX must not touch Y.
79
BOOST_AUTO_TEST_CASE
( SetSizeXOnRectPadLeavesYAlone )
80
{
81
BOARD
board;
82
board.
SetBoardUse
(
BOARD_USE::FPHOLDER
);
83
84
std::unique_ptr<FOOTPRINT> fp = std::make_unique<FOOTPRINT>( &board );
85
std::unique_ptr<PAD>
pad
= std::make_unique<PAD>( fp.get() );
86
87
pad
->SetAttribute(
PAD_ATTRIB::SMD
);
88
pad
->SetLayerSet(
LSET
( {
F_Cu
} ) );
89
pad
->SetShape(
PADSTACK::ALL_LAYERS
,
PAD_SHAPE::RECTANGLE
);
90
pad
->SetSize(
PADSTACK::ALL_LAYERS
,
VECTOR2I
(
pcbIUScale
.mmToIU( 1.0 ),
pcbIUScale
.mmToIU( 0.5 ) ) );
91
92
pad
->SetSizeX(
pcbIUScale
.mmToIU( 1.5 ) );
93
94
BOOST_CHECK_EQUAL
(
pad
->GetSizeX(),
pcbIUScale
.mmToIU( 1.5 ) );
95
BOOST_CHECK_EQUAL
(
pad
->GetSizeY(),
pcbIUScale
.mmToIU( 0.5 ) );
96
}
97
98
BOOST_AUTO_TEST_SUITE_END
()
pcbIUScale
constexpr EDA_IU_SCALE pcbIUScale
Definition
base_units.h:121
BITMAPS::pad
@ pad
Definition
bitmaps_list.h:414
board.h
BOARD_USE::FPHOLDER
@ FPHOLDER
Definition
board.h:401
BOARD
Information pertinent to a Pcbnew printed circuit board.
Definition
board.h:409
BOARD::SetBoardUse
void SetBoardUse(BOARD_USE aUse)
Set what the board is going to be used for.
Definition
board.h:421
LSET
LSET is a set of PCB_LAYER_IDs.
Definition
lset.h:37
PADSTACK::MODE::NORMAL
@ NORMAL
Shape is the same on all layers.
Definition
padstack.h:170
PADSTACK::ALL_LAYERS
static constexpr PCB_LAYER_ID ALL_LAYERS
! The layer identifier to use for the single defintion on normal padstacks
Definition
padstack.h:179
PAD::PTHMask
static LSET PTHMask()
layer set for a through hole pad
Definition
pad.cpp:606
footprint.h
F_Cu
@ F_Cu
Definition
layer_ids.h:60
pad.h
PAD_ATTRIB::SMD
@ SMD
Smd pad, appears on the solder paste layer (default)
Definition
padstack.h:98
PAD_ATTRIB::PTH
@ PTH
Plated through hole pad.
Definition
padstack.h:97
PAD_SHAPE::CIRCLE
@ CIRCLE
Definition
padstack.h:52
PAD_SHAPE::RECTANGLE
@ RECTANGLE
Definition
padstack.h:53
BOOST_AUTO_TEST_CASE
BOOST_AUTO_TEST_CASE(HorizontalAlignment)
Definition
test_api_enums.cpp:79
BOOST_AUTO_TEST_SUITE
BOOST_AUTO_TEST_SUITE(CadstarPartParser)
BOOST_AUTO_TEST_SUITE_END
BOOST_AUTO_TEST_SUITE_END()
BOOST_AUTO_TEST_CASE
BOOST_AUTO_TEST_CASE(SetSizeXOnCirclePadUpdatesY)
Definition
test_pad_size_setters.cpp:34
BOOST_CHECK_EQUAL
BOOST_CHECK_EQUAL(result, "25.4")
unit_test_utils.h
VECTOR2I
VECTOR2< int32_t > VECTOR2I
Definition
vector2d.h:683
src
qa
tests
pcbnew
test_pad_size_setters.cpp
Generated on Thu Sep 17 2026 00:06:29 for KiCad PCB EDA Suite by
1.13.2