KiCad PCB EDA Suite
Loading...
Searching...
No Matches
test_drc_physical_clearance.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, you may find one here:
18
* http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
19
* or you may search the http://www.gnu.org website for the version 2 license,
20
* or you may write to the Free Software Foundation, Inc.,
21
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
22
*/
23
24
#include <
qa_utils/wx_utils/unit_test_utils.h
>
25
#include <
pcbnew_utils/board_test_utils.h
>
26
#include <
board.h
>
27
#include <
board_design_settings.h
>
28
#include <
drc/drc_engine.h
>
29
#include <
drc/drc_item.h
>
30
#include <
settings/settings_manager.h
>
31
#include <
widgets/report_severity.h
>
32
33
34
struct
DRC_PHYSICAL_CLEARANCE_TEST_FIXTURE
35
{
36
DRC_PHYSICAL_CLEARANCE_TEST_FIXTURE
()
37
{ }
38
39
SETTINGS_MANAGER
m_settingsManager
;
40
std::unique_ptr<BOARD>
m_board
;
41
};
42
43
44
BOOST_FIXTURE_TEST_CASE
( DRCPhysicalClearanceNotInflatedByConditionalRules,
45
DRC_PHYSICAL_CLEARANCE_TEST_FIXTURE
)
46
{
47
// Regression test for issue 22996.
48
//
49
// The barcode implicit rule adds a PHYSICAL_CLEARANCE_CONSTRAINT with a condition
50
// (A.Type == 'Barcode'). QueryWorstConstraint was not filtering conditional constraints,
51
// causing m_DRCMaxPhysicalClearance to be set to 1mm on ALL boards, which forced the
52
// physical clearance test to run unnecessarily with O(n^2) memory growth.
53
//
54
// Verify that boards without physical clearance rules and without barcodes have
55
// m_DRCMaxPhysicalClearance == 0 after DRC cache generation.
56
57
KI_TEST::LoadBoard
( m_settingsManager,
"issue4139"
, m_board );
58
59
BOARD_DESIGN_SETTINGS
& bds = m_board->GetDesignSettings();
60
61
bds.
m_DRCSeverities
[
DRCE_INVALID_OUTLINE
] =
SEVERITY::RPT_SEVERITY_IGNORE
;
62
bds.
m_DRCSeverities
[
DRCE_UNCONNECTED_ITEMS
] =
SEVERITY::RPT_SEVERITY_IGNORE
;
63
bds.
m_DRCSeverities
[
DRCE_COPPER_SLIVER
] =
SEVERITY::RPT_SEVERITY_IGNORE
;
64
bds.
m_DRCSeverities
[
DRCE_STARVED_THERMAL
] =
SEVERITY::RPT_SEVERITY_IGNORE
;
65
bds.
m_DRCSeverities
[
DRCE_LIB_FOOTPRINT_ISSUES
] =
SEVERITY::RPT_SEVERITY_IGNORE
;
66
bds.
m_DRCSeverities
[
DRCE_LIB_FOOTPRINT_MISMATCH
] =
SEVERITY::RPT_SEVERITY_IGNORE
;
67
68
bds.
m_DRCEngine
->
SetViolationHandler
(
69
[&](
const
std::shared_ptr<DRC_ITEM>& aItem,
const
VECTOR2I
& aPos,
int
aLayer,
70
const
std::function<
void
(
PCB_MARKER
* )>& aPathGenerator )
71
{
72
} );
73
74
bds.
m_DRCEngine
->
RunTests
(
EDA_UNITS::MM
,
true
,
false
);
75
76
BOOST_CHECK_EQUAL
( m_board->m_DRCMaxPhysicalClearance, 0 );
77
}
board.h
board_design_settings.h
board_test_utils.h
BOARD_DESIGN_SETTINGS
Container for design settings for a BOARD object.
Definition
board_design_settings.h:250
BOARD_DESIGN_SETTINGS::m_DRCSeverities
std::map< int, SEVERITY > m_DRCSeverities
Definition
board_design_settings.h:709
BOARD_DESIGN_SETTINGS::m_DRCEngine
std::shared_ptr< DRC_ENGINE > m_DRCEngine
Definition
board_design_settings.h:708
DRC_ENGINE::RunTests
void RunTests(EDA_UNITS aUnits, bool aReportAllTrackErrors, bool aTestFootprints, BOARD_COMMIT *aCommit=nullptr)
Run the DRC tests.
Definition
drc_engine.cpp:880
DRC_ENGINE::SetViolationHandler
void SetViolationHandler(DRC_VIOLATION_HANDLER aHandler)
Set an optional DRC violation handler (receives DRC_ITEMs and positions).
Definition
drc_engine.h:167
PCB_MARKER
Definition
pcb_marker.h:38
SETTINGS_MANAGER
Definition
settings_manager.h:49
drc_engine.h
drc_item.h
DRCE_UNCONNECTED_ITEMS
@ DRCE_UNCONNECTED_ITEMS
Definition
drc_item.h:40
DRCE_LIB_FOOTPRINT_ISSUES
@ DRCE_LIB_FOOTPRINT_ISSUES
Definition
drc_item.h:83
DRCE_INVALID_OUTLINE
@ DRCE_INVALID_OUTLINE
Definition
drc_item.h:73
DRCE_STARVED_THERMAL
@ DRCE_STARVED_THERMAL
Definition
drc_item.h:50
DRCE_COPPER_SLIVER
@ DRCE_COPPER_SLIVER
Definition
drc_item.h:93
DRCE_LIB_FOOTPRINT_MISMATCH
@ DRCE_LIB_FOOTPRINT_MISMATCH
Definition
drc_item.h:84
EDA_UNITS::MM
@ MM
Definition
eda_units.h:50
KI_TEST::LoadBoard
void LoadBoard(SETTINGS_MANAGER &aSettingsManager, const wxString &aRelPath, std::unique_ptr< BOARD > &aBoard)
Definition
board_test_utils.cpp:92
report_severity.h
RPT_SEVERITY_IGNORE
@ RPT_SEVERITY_IGNORE
Definition
report_severity.h:36
settings_manager.h
DRC_PHYSICAL_CLEARANCE_TEST_FIXTURE
Definition
test_drc_physical_clearance.cpp:35
DRC_PHYSICAL_CLEARANCE_TEST_FIXTURE::DRC_PHYSICAL_CLEARANCE_TEST_FIXTURE
DRC_PHYSICAL_CLEARANCE_TEST_FIXTURE()
Definition
test_drc_physical_clearance.cpp:36
DRC_PHYSICAL_CLEARANCE_TEST_FIXTURE::m_board
std::unique_ptr< BOARD > m_board
Definition
test_drc_physical_clearance.cpp:40
DRC_PHYSICAL_CLEARANCE_TEST_FIXTURE::m_settingsManager
SETTINGS_MANAGER m_settingsManager
Definition
test_drc_physical_clearance.cpp:39
BOOST_FIXTURE_TEST_CASE
BOOST_FIXTURE_TEST_CASE(DRCPhysicalClearanceNotInflatedByConditionalRules, DRC_PHYSICAL_CLEARANCE_TEST_FIXTURE)
Definition
test_drc_physical_clearance.cpp:44
BOOST_CHECK_EQUAL
BOOST_CHECK_EQUAL(result, "25.4")
unit_test_utils.h
VECTOR2I
VECTOR2< int32_t > VECTOR2I
Definition
vector2d.h:695
src
qa
tests
pcbnew
drc
test_drc_physical_clearance.cpp
Generated on Sat Mar 14 2026 00:07:03 for KiCad PCB EDA Suite by
1.13.2