KiCad PCB EDA Suite
Loading...
Searching...
No Matches
test_drc_via_dangling.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.
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
22#include <board.h>
24#include <drc/drc_engine.h>
25#include <pcb_marker.h>
26#include <drc/drc_engine.h>
27#include <drc/drc_item.h>
29
31{
34
36 std::unique_ptr<BOARD> m_board;
37};
38
40{
41 KI_TEST::LoadBoard( m_settingsManager, "via_dangling", m_board );
42
43 std::vector<DRC_ITEM> violations;
44 BOARD_DESIGN_SETTINGS& bds = m_board->GetDesignSettings();
45
47 [&]( const std::shared_ptr<DRC_ITEM>& aItem, const VECTOR2I& aPos, int aLayer,
48 const std::function<void( PCB_MARKER* )>& aPathGenerator )
49 {
50 PCB_MARKER temp( aItem, aPos );
51
52 if( bds.m_DrcExclusions.find( temp.SerializeToString() ) == bds.m_DrcExclusions.end() )
53 violations.push_back( *aItem );
54 } );
55
56 bds.m_DRCEngine->RunTests( EDA_UNITS::MM, true, false );
57
58 int danglingVias = 0;
59
60 for( const DRC_ITEM& item : violations )
61 {
62 if( item.GetErrorCode() == DRCE_DANGLING_VIA )
63 danglingVias++;
64 }
65
66 if( danglingVias == 1 && violations.size() == 1 )
67 {
68 BOOST_CHECK_EQUAL( 1, 1 );
69 BOOST_TEST_MESSAGE( "Via dangling rule test passed" );
70 }
71 else
72 {
74
75 std::map<KIID, EDA_ITEM*> itemMap;
76 m_board->FillItemMap( itemMap );
77
78 for( const DRC_ITEM& item : violations )
79 BOOST_TEST_MESSAGE( item.ShowReport( &unitsProvider, RPT_SEVERITY_ERROR, itemMap ) );
80
81 BOOST_ERROR( "Via dangling rule test failed" );
82 }
83}
constexpr EDA_IU_SCALE pcbIUScale
Definition base_units.h:121
Container for design settings for a BOARD object.
std::shared_ptr< DRC_ENGINE > m_DRCEngine
std::set< wxString > m_DrcExclusions
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
wxString SerializeToString() const
@ DRCE_DANGLING_VIA
Definition drc_item.h:47
void LoadBoard(SETTINGS_MANAGER &aSettingsManager, const wxString &aRelPath, std::unique_ptr< BOARD > &aBoard)
@ RPT_SEVERITY_ERROR
BOOST_FIXTURE_TEST_CASE(DRCViaDanglingRuleTest, DRC_REGRESSION_TEST_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:683