KiCad PCB EDA Suite
Loading...
Searching...
No Matches
test_drc_creepage_issue23389.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
34
37
38#include <board.h>
40#include <drc/drc_item.h>
41#include <drc/drc_engine.h>
44
45
47{
49
51 {
52 if( m_board && m_board->GetDesignSettings().m_DRCEngine )
53 m_board->GetDesignSettings().m_DRCEngine->ClearViolationHandler();
54
55 if( m_board )
56 {
57 m_board->SetProject( nullptr );
58 m_board = nullptr;
59 }
60 }
61
63 std::unique_ptr<BOARD> m_board;
64};
65
66
68{
69 KI_TEST::LoadBoard( m_settingsManager, "issue23389/issue23389", m_board );
70
71 BOOST_REQUIRE_MESSAGE( m_board, "Failed to load board issue23389" );
72
73 std::vector<std::shared_ptr<DRC_ITEM>> violations;
74 BOARD_DESIGN_SETTINGS& bds = m_board->GetDesignSettings();
75
76 BOOST_REQUIRE_MESSAGE( bds.m_DRCEngine, "DRC engine not initialized" );
77
78 for( int ii = DRCE_FIRST; ii <= DRCE_LAST; ++ii )
80
82
84 [&]( const std::shared_ptr<DRC_ITEM>& aItem, const VECTOR2I& aPos, int aLayer,
85 const std::function<void( PCB_MARKER* )>& aPathGenerator )
86 {
87 if( bds.GetSeverity( aItem->GetErrorCode() ) == SEVERITY::RPT_SEVERITY_ERROR )
88 violations.push_back( aItem );
89 } );
90
91 bds.m_DRCEngine->RunTests( EDA_UNITS::MM, true, false );
92
94
95 BOOST_TEST_MESSAGE( wxString::Format( "Found %d creepage violations", (int) violations.size() ) );
96
97 double maxActual = 0.0;
98
99 for( const auto& v : violations )
100 {
101 wxString msg = v->GetErrorMessage( false );
102 BOOST_TEST_MESSAGE( wxString::Format( " Violation: %s", msg ) );
103
104 // Extract the reported actual distance from "actual X.XXXX mm"
105 int pos = msg.Find( "actual " );
106
107 if( pos != wxNOT_FOUND )
108 {
109 double val = 0.0;
110 wxString tail = msg.Mid( pos + 7 );
111 int spacePos = tail.Find( ' ' );
112
113 if( spacePos != wxNOT_FOUND )
114 tail = tail.Left( spacePos );
115
116 if( tail.ToDouble( &val ) )
117 maxActual = std::max( maxActual, val );
118 }
119 }
120
121 // The board has multiple 'Sitove' netclass pad pairs around a 5mm x 1mm NPTH oval slot.
122 // With correct slot modeling (arcs + segments), creepage paths must go around the actual
123 // slot boundary. This produces 4 violations, two of which have actual distances above 4mm.
124 // If the slot were modeled as an oversized circle (old bug, radius=2.5mm instead of 0.5mm),
125 // those longer paths would exceed 5mm and not be reported, dropping the count to 2.
126 BOOST_CHECK_EQUAL( violations.size(), 4u );
127
128 // At least one violation must have a measured distance above 4mm, proving the path
129 // correctly traverses the slot boundary rather than cutting through the slot interior
130 // or detouring around an oversized circle.
131 BOOST_CHECK_GT( maxActual, 4.0 );
132}
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:168
void ClearViolationHandler()
Definition drc_engine.h:173
@ DRCE_CREEPAGE
Definition drc_item.h:45
@ DRCE_FIRST
Definition drc_item.h:39
@ DRCE_LAST
Definition drc_item.h:122
void LoadBoard(SETTINGS_MANAGER &aSettingsManager, const wxString &aRelPath, std::unique_ptr< BOARD > &aBoard)
@ RPT_SEVERITY_ERROR
@ RPT_SEVERITY_IGNORE
BOOST_FIXTURE_TEST_CASE(CreepageNPTHSlotIssue23389, DRC_CREEPAGE_NPTH_SLOT_FIXTURE)
BOOST_TEST_MESSAGE("\n=== Real-World Polygon PIP Benchmark ===\n"<< formatTable(table))
BOOST_CHECK_EQUAL(result, "25.4")
VECTOR2< int32_t > VECTOR2I
Definition vector2d.h:687