KiCad PCB EDA Suite
Loading...
Searching...
No Matches
test_drc_creepage_issue24875.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
28#include <regex>
29
32
33#include <board.h>
35#include <drc/drc_item.h>
36#include <drc/drc_engine.h>
39
40
42{
44
46 {
47 if( m_board && m_board->GetDesignSettings().m_DRCEngine )
48 m_board->GetDesignSettings().m_DRCEngine->ClearViolationHandler();
49
50 if( m_board )
51 {
52 m_board->SetProject( nullptr );
53 m_board = nullptr;
54 }
55 }
56
57 // Run creepage DRC and return the reported "actual" distances in mm.
58 std::vector<double> runCreepage( const std::string& aRelPath )
59 {
61 BOOST_REQUIRE_MESSAGE( m_board, "Failed to load board " << aRelPath );
62
63 BOARD_DESIGN_SETTINGS& bds = m_board->GetDesignSettings();
64 BOOST_REQUIRE_MESSAGE( bds.m_DRCEngine, "DRC engine not initialized" );
65
66 for( int ii = DRCE_FIRST; ii <= DRCE_LAST; ++ii )
68
70
71 std::vector<std::shared_ptr<DRC_ITEM>> violations;
72
74 [&]( const std::shared_ptr<DRC_ITEM>& aItem, const VECTOR2I&, int,
75 const std::function<void( PCB_MARKER* )>& )
76 {
77 if( bds.GetSeverity( aItem->GetErrorCode() ) == SEVERITY::RPT_SEVERITY_ERROR )
78 violations.push_back( aItem );
79 } );
80
81 bds.m_DRCEngine->RunTests( EDA_UNITS::MM, true, false );
83
84 std::regex actualRe( R"(actual\s+([0-9]+\.[0-9]+)\s*mm)" );
85 std::vector<double> actuals;
86
87 for( const std::shared_ptr<DRC_ITEM>& v : violations )
88 {
89 std::string msg = v->GetErrorMessage( false ).ToStdString();
90 std::smatch m;
91
92 if( std::regex_search( msg, m, actualRe ) )
93 actuals.push_back( std::stod( m[1].str() ) );
94 }
95
96 return actuals;
97 }
98
100 std::unique_ptr<BOARD> m_board;
101};
102
103
104// Overlapping caps. Was a 1.93mm shortcut across the void, correct ~3.93mm around the end.
105BOOST_FIXTURE_TEST_CASE( CreepageOverlappingCapsIssue24875, DRC_CREEPAGE_ISSUE24875_FIXTURE )
106{
107 std::vector<double> actuals = runCreepage( "issue24875/issue24875" );
108
109 BOOST_REQUIRE_MESSAGE( !actuals.empty(), "Expected a creepage violation around the slots" );
110
111 for( double actual : actuals )
112 {
113 BOOST_TEST_MESSAGE( wxString::Format( "partial: actual = %.4f mm", actual ) );
114 BOOST_CHECK_MESSAGE( actual > 3.0 && actual < 4.0,
115 "Creepage should wrap the merged slot end (actual " << actual << " mm)" );
116 }
117}
118
119
120// Fully rounded (semicircle) cap overlapping. Was a 2.75mm phantom hug, correct ~3.90mm.
121// Needs the whole sub-arc sampled, an empty result would mean arcs were over-dropped.
122BOOST_FIXTURE_TEST_CASE( CreepageFullyRoundedCapIssue24875, DRC_CREEPAGE_ISSUE24875_FIXTURE )
123{
124 std::vector<double> actuals = runCreepage( "issue24875_fullround/issue24875_fullround" );
125
126 BOOST_REQUIRE_MESSAGE( !actuals.empty(), "Expected a creepage violation around the slots" );
127
128 for( double actual : actuals )
129 {
130 BOOST_TEST_MESSAGE( wxString::Format( "fullround: actual = %.4f mm", actual ) );
131 BOOST_CHECK_MESSAGE( actual > 3.0 && actual < 4.5,
132 "Creepage should wrap the merged slot end (actual " << actual << " mm)" );
133 }
134}
135
136
137// Cap overlaps the other slot's straight section, never a false path (~2.31mm). Guards
138// against the overlap detection over-triggering.
139BOOST_FIXTURE_TEST_CASE( CreepageCapOverStraightIssue24875, DRC_CREEPAGE_ISSUE24875_FIXTURE )
140{
141 std::vector<double> actuals = runCreepage( "issue24875_capstraight/issue24875_capstraight" );
142
143 BOOST_REQUIRE_MESSAGE( !actuals.empty(), "Expected a creepage violation around the slots" );
144
145 for( double actual : actuals )
146 {
147 BOOST_TEST_MESSAGE( wxString::Format( "capstraight: actual = %.4f mm", actual ) );
148 BOOST_CHECK_MESSAGE( actual > 2.0 && actual < 2.6,
149 "Cap-over-straight creepage should stay correct (actual " << actual << " mm)" );
150 }
151}
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:42
@ DRCE_FIRST
Definition drc_item.h:36
@ 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
std::vector< double > runCreepage(const std::string &aRelPath)
BOOST_FIXTURE_TEST_CASE(CreepageOverlappingCapsIssue24875, DRC_CREEPAGE_ISSUE24875_FIXTURE)
BOOST_CHECK_MESSAGE(totalMismatches==0, std::to_string(totalMismatches)+" board(s) with strategy disagreements")
BOOST_TEST_MESSAGE("\n=== Real-World Polygon PIP Benchmark ===\n"<< formatTable(table))
int actual
VECTOR2< int32_t > VECTOR2I
Definition vector2d.h:683