KiCad PCB EDA Suite
Loading...
Searching...
No Matches
test_drc_creepage.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
27
30
31#include <board.h>
33#include <drc/drc_item.h>
34#include <drc/drc_engine.h>
37
38
40{
42
44 {
45 if( m_board && m_board->GetDesignSettings().m_DRCEngine )
46 m_board->GetDesignSettings().m_DRCEngine->ClearViolationHandler();
47
48 if( m_board )
49 {
50 m_board->SetProject( nullptr );
51 m_board = nullptr;
52 }
53 }
54
56 std::unique_ptr<BOARD> m_board;
57};
58
59
61{
62 KI_TEST::LoadBoard( m_settingsManager, "creepage/creepage", m_board );
63
64 BOOST_REQUIRE_MESSAGE( m_board, "Failed to load board creepage" );
65
66 std::vector<std::shared_ptr<DRC_ITEM>> violations;
67 BOARD_DESIGN_SETTINGS& bds = m_board->GetDesignSettings();
68
69 BOOST_REQUIRE_MESSAGE( bds.m_DRCEngine, "DRC engine not initialized" );
70
71 for( int ii = DRCE_FIRST; ii <= DRCE_LAST; ++ii )
73
75
77 [&]( const std::shared_ptr<DRC_ITEM>& aItem, const VECTOR2I& aPos, int aLayer,
78 const std::function<void( PCB_MARKER* )>& aPathGenerator )
79 {
80 if( bds.GetSeverity( aItem->GetErrorCode() ) == SEVERITY::RPT_SEVERITY_ERROR )
81 violations.push_back( aItem );
82 } );
83
84 bds.m_DRCEngine->RunTests( EDA_UNITS::MM, true, false );
85
87
88 BOOST_TEST_MESSAGE( wxString::Format( "Found %d creepage violations", (int) violations.size() ) );
89
90 for( const auto& v : violations )
91 BOOST_TEST_MESSAGE( wxString::Format( " Violation: %s", v->GetErrorMessage( false ) ) );
92
93 // The board has HV and GND netclass traces ~3.25mm apart. The custom rule requires
94 // 8mm creepage between HV and GND netclasses, so at least one violation must be detected.
95 BOOST_CHECK_GE( violations.size(), 1 );
96}
97
98
107{
108 KI_TEST::LoadBoard( m_settingsManager, "creepage/creepage_malformed_edge", m_board );
109
110 BOOST_REQUIRE_MESSAGE( m_board, "Failed to load board creepage_malformed_edge" );
111
112 std::vector<std::shared_ptr<DRC_ITEM>> violations;
113 BOARD_DESIGN_SETTINGS& bds = m_board->GetDesignSettings();
114
115 BOOST_REQUIRE_MESSAGE( bds.m_DRCEngine, "DRC engine not initialized" );
116
117 for( int ii = DRCE_FIRST; ii <= DRCE_LAST; ++ii )
119
121
123 [&]( const std::shared_ptr<DRC_ITEM>& aItem, const VECTOR2I& aPos, int aLayer,
124 const std::function<void( PCB_MARKER* )>& aPathGenerator )
125 {
126 if( bds.GetSeverity( aItem->GetErrorCode() ) == SEVERITY::RPT_SEVERITY_ERROR )
127 violations.push_back( aItem );
128 } );
129
130 bds.m_DRCEngine->RunTests( EDA_UNITS::MM, true, false );
131
133
134 BOOST_TEST_MESSAGE( wxString::Format( "Found %d creepage violations (malformed edge)",
135 (int) violations.size() ) );
136
137 for( const auto& v : violations )
138 BOOST_TEST_MESSAGE( wxString::Format( " Violation: %s", v->GetErrorMessage( false ) ) );
139
140 // Same board geometry as CreepageHVvsGND but with an extra malformed Edge.Cuts line.
141 // The creepage DRC must still detect violations even when the board outline is invalid.
142 BOOST_CHECK_GE( violations.size(), 1 );
143}
Container for design settings for a BOARD object.
std::map< int, SEVERITY > m_DRCSeverities
std::shared_ptr< DRC_ENGINE > m_DRCEngine
SEVERITY GetSeverity(int aDRCErrorCode)
void RunTests(EDA_UNITS aUnits, bool aReportAllTrackErrors, bool aTestFootprints, BOARD_COMMIT *aCommit=nullptr)
Run the DRC tests.
void SetViolationHandler(DRC_VIOLATION_HANDLER aHandler)
Set an optional DRC violation handler (receives DRC_ITEMs and positions).
Definition drc_engine.h:164
void ClearViolationHandler()
Definition drc_engine.h:169
@ DRCE_CREEPAGE
Definition drc_item.h:41
@ DRCE_FIRST
Definition drc_item.h:35
@ DRCE_LAST
Definition drc_item.h:121
void LoadBoard(SETTINGS_MANAGER &aSettingsManager, const wxString &aRelPath, std::unique_ptr< BOARD > &aBoard)
@ RPT_SEVERITY_ERROR
@ RPT_SEVERITY_IGNORE
std::unique_ptr< BOARD > m_board
DRC_CREEPAGE_TEST_FIXTURE()=default
BOOST_FIXTURE_TEST_CASE(CreepageHVvsGND, DRC_CREEPAGE_TEST_FIXTURE)
BOOST_TEST_MESSAGE("\n=== Real-World Polygon PIP Benchmark ===\n"<< formatTable(table))
VECTOR2< int32_t > VECTOR2I
Definition vector2d.h:683