KiCad PCB EDA Suite
Loading...
Searching...
No Matches
test_drc_creepage_issue23364.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
31
34
35#include <board.h>
37#include <drc/drc_item.h>
38#include <drc/drc_engine.h>
41
42
44{
46
48 {
49 if( m_board && m_board->GetDesignSettings().m_DRCEngine )
50 m_board->GetDesignSettings().m_DRCEngine->ClearViolationHandler();
51
52 if( m_board )
53 {
54 m_board->SetProject( nullptr );
55 m_board = nullptr;
56 }
57 }
58
60 std::unique_ptr<BOARD> m_board;
61};
62
63
65{
66 KI_TEST::LoadBoard( m_settingsManager, "creepage_slots/creepage_slots", m_board );
67
68 BOOST_REQUIRE_MESSAGE( m_board, "Failed to load board creepage_slots" );
69
70 struct ViolationInfo
71 {
72 std::shared_ptr<DRC_ITEM> item;
73 double distance;
74 };
75
76 std::vector<ViolationInfo> 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& aPos, int aLayer,
88 const std::function<void( PCB_MARKER* )>& aPathGenerator )
89 {
90 if( bds.GetSeverity( aItem->GetErrorCode() ) == SEVERITY::RPT_SEVERITY_ERROR )
91 {
92 ViolationInfo vi;
93 vi.item = aItem;
94 vi.distance = -1;
95
96 wxString msg = aItem->GetErrorMessage( false );
97 BOOST_TEST_MESSAGE( wxString::Format( " Violation: %s", msg ) );
98 violations.push_back( vi );
99 }
100 } );
101
102 bds.m_DRCEngine->RunTests( EDA_UNITS::MM, true, false );
103
105
106 BOOST_TEST_MESSAGE( wxString::Format( "Found %d creepage violations", (int) violations.size() ) );
107
108 // The board has pads in the 'Sitove' netclass separated by two rectangular
109 // slots on Edge.Cuts. The creepage rule requires 5mm. Before the fix, paths
110 // between corners of different Edge.Cuts rectangles had both rectangles in
111 // the IgnoreForTest list, allowing invalid shortcut paths through slot
112 // interiors.
113 BOOST_CHECK_GE( violations.size(), 1 );
114}
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:167
void ClearViolationHandler()
Definition drc_engine.h:172
@ 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)
static float distance(const SFVEC2UI &a, const SFVEC2UI &b)
@ RPT_SEVERITY_ERROR
@ RPT_SEVERITY_IGNORE
BOOST_FIXTURE_TEST_CASE(CreepageDualSlotsIssue23364, DRC_CREEPAGE_DUAL_SLOTS_FIXTURE)
BOOST_TEST_MESSAGE("Polyline has "<< chain.PointCount()<< " points")
VECTOR2< int32_t > VECTOR2I
Definition vector2d.h:695