KiCad PCB EDA Suite
Loading...
Searching...
No Matches
test_drc_creepage_issue24597.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
35
36#include <regex>
37
40
41#include <board.h>
43#include <drc/drc_item.h>
44#include <drc/drc_engine.h>
47
48
50{
52
54 {
55 if( m_board && m_board->GetDesignSettings().m_DRCEngine )
56 m_board->GetDesignSettings().m_DRCEngine->ClearViolationHandler();
57
58 if( m_board )
59 {
60 m_board->SetProject( nullptr );
61 m_board = nullptr;
62 }
63 }
64
66 std::unique_ptr<BOARD> m_board;
67};
68
69
71{
72 KI_TEST::LoadBoard( m_settingsManager, "issue24597/issue24597", m_board );
73
74 BOOST_REQUIRE_MESSAGE( m_board, "Failed to load board issue24597" );
75
76 std::vector<std::shared_ptr<DRC_ITEM>> violations;
77 BOARD_DESIGN_SETTINGS& bds = m_board->GetDesignSettings();
78
79 BOOST_REQUIRE_MESSAGE( bds.m_DRCEngine, "DRC engine not initialized" );
80
81 for( int ii = DRCE_FIRST; ii <= DRCE_LAST; ++ii )
83
85
87 [&]( const std::shared_ptr<DRC_ITEM>& aItem, const VECTOR2I&, int,
88 const std::function<void( PCB_MARKER* )>& )
89 {
90 if( bds.GetSeverity( aItem->GetErrorCode() ) == SEVERITY::RPT_SEVERITY_ERROR )
91 violations.push_back( aItem );
92 } );
93
94 bds.m_DRCEngine->RunTests( EDA_UNITS::MM, true, false );
96
97 BOOST_REQUIRE_MESSAGE( !violations.empty(), "Expected a creepage violation around the slot" );
98
99 // Pull the reported "actual" creepage out of each violation message. The corner-cutting
100 // bug measured <= 2.76mm on this board, the correct path around both corner arcs is
101 // ~2.82mm. Any value below the wrapped length means the path shortcut across the slot.
102 std::regex actualRe( R"(actual\s+([0-9]+\.[0-9]+)\s*mm)" );
103
104 for( const std::shared_ptr<DRC_ITEM>& v : violations )
105 {
106 std::string msg = v->GetErrorMessage( false ).ToStdString();
107 std::smatch m;
108
109 BOOST_REQUIRE_MESSAGE( std::regex_search( msg, m, actualRe ),
110 "Could not parse creepage distance from: " << msg );
111
112 double actual = std::stod( m[1].str() );
113 BOOST_TEST_MESSAGE( wxString::Format( "creepage actual = %.4f mm", actual ) );
114
115 BOOST_CHECK_MESSAGE( actual > 2.78, "Creepage path cut across the slot (actual "
116 << actual << " mm <= 2.78 mm); it should wrap both corner arcs" );
117 }
118}
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
BOOST_FIXTURE_TEST_CASE(CreepageSlotCornerIssue24597, DRC_CREEPAGE_ISSUE24597_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