KiCad PCB EDA Suite
Loading...
Searching...
No Matches
test_drc_solder_mask_npth_bridge.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
28
31
32#include <board.h>
34#include <drc/drc_item.h>
35#include <drc/drc_engine.h>
36#include <pcb_marker.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
58 std::unique_ptr<BOARD> m_board;
59};
60
61
63{
64 KI_TEST::LoadBoard( m_settingsManager, "npth_mask_bridge_test", m_board );
65
66 BOOST_REQUIRE_MESSAGE( m_board, "Failed to load fixture" );
67
68 KI_TEST::FillZones( m_board.get() );
69
70 std::vector<std::shared_ptr<DRC_ITEM>> bridgeViolations;
71 BOARD_DESIGN_SETTINGS& bds = m_board->GetDesignSettings();
72
73 BOOST_REQUIRE_MESSAGE( bds.m_DRCEngine, "DRC engine not initialized" );
74
75 for( int ii = DRCE_FIRST; ii <= DRCE_LAST; ++ii )
77
79
81 [&]( const std::shared_ptr<DRC_ITEM>& aItem, const VECTOR2I& /*aPos*/, int /*aLayer*/,
82 const std::function<void( PCB_MARKER* )>& /*aPathGen*/ )
83 {
84 if( aItem->GetErrorCode() == DRCE_SOLDERMASK_BRIDGE )
85 bridgeViolations.push_back( aItem );
86 } );
87
88 bds.m_DRCEngine->RunTests( EDA_UNITS::MM, true, false );
89
90 BOOST_TEST_MESSAGE( wxString::Format( "Soldermask bridge violations: %d", (int) bridgeViolations.size() ) );
91
92 if( !bridgeViolations.empty() )
93 {
94 UNITS_PROVIDER unitsProvider( pcbIUScale, EDA_UNITS::MM );
95
96 std::map<KIID, EDA_ITEM*> itemMap;
97 m_board->FillItemMap( itemMap );
98
99 for( const std::shared_ptr<DRC_ITEM>& item : bridgeViolations )
100 BOOST_TEST_MESSAGE( item->ShowReport( &unitsProvider, RPT_SEVERITY_ERROR, itemMap ) );
101 }
102
103 // Everything exposed by the F.Mask polygon is either GND (zone, vias) or
104 // an NPTH (no net). No real bridge exists.
105 BOOST_CHECK_EQUAL( bridgeViolations.size(), 0 );
106}
constexpr EDA_IU_SCALE pcbIUScale
Definition base_units.h:125
Container for design settings for a BOARD object.
std::map< int, SEVERITY > m_DRCSeverities
std::shared_ptr< DRC_ENGINE > m_DRCEngine
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
@ DRCE_FIRST
Definition drc_item.h:39
@ DRCE_SOLDERMASK_BRIDGE
Definition drc_item.h:94
@ DRCE_LAST
Definition drc_item.h:124
void LoadBoard(SETTINGS_MANAGER &aSettingsManager, const wxString &aRelPath, std::unique_ptr< BOARD > &aBoard)
void FillZones(BOARD *m_board)
@ RPT_SEVERITY_ERROR
@ RPT_SEVERITY_IGNORE
F.Mask polygon over a GND zone, GND vias, and an NPTH with an annular ring must produce zero DRCE_SOL...
BOOST_FIXTURE_TEST_CASE(DRCSolderMaskNPTHBridge, DRC_NPTH_MASK_BRIDGE_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