KiCad PCB EDA Suite
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages Concepts
test_drc_lengths.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
26#include <board.h>
28#include <pad.h>
29#include <pcb_track.h>
30#include <pcb_marker.h>
31#include <footprint.h>
32#include <drc/drc_item.h>
34
35
37{
38 DRC_REGRESSION_TEST_FIXTURE() : m_settingsManager( true /* headless */ ) {}
39
41 std::unique_ptr<BOARD> m_board;
42};
43
44
46{
47 // Check for minimum copper connection errors
48
49 std::vector<std::pair<wxString, int>> tests = {
50 { "length_calculations", 0 } // Exclude warnings on unconnected pads
51 };
52
53 for( const std::pair<wxString, int>& test : tests )
54 {
55 KI_TEST::LoadBoard( m_settingsManager, test.first, m_board );
56 KI_TEST::FillZones( m_board.get() );
57
58 std::vector<DRC_ITEM> violations;
59 BOARD_DESIGN_SETTINGS& bds = m_board->GetDesignSettings();
60
61 // Disable DRC tests not useful or not handled in this testcase
68 // These DRC tests are not useful and do not work because they need a footprint library
69 // associated to the board
73
74 // Ensure that our desired error is fired
76
77 bds.m_DRCEngine->SetViolationHandler(
78 [&]( const std::shared_ptr<DRC_ITEM>& aItem, VECTOR2I aPos, int aLayer,
79 DRC_CUSTOM_MARKER_HANDLER* aCustomHandler )
80 {
81 if( bds.GetSeverity( aItem->GetErrorCode() ) == SEVERITY::RPT_SEVERITY_ERROR )
82 violations.push_back( *aItem );
83 } );
84
85 bds.m_DRCEngine->RunTests( EDA_UNITS::MM, true, false );
86
87 if( violations.size() == test.second )
88 {
89 BOOST_CHECK_EQUAL( 1, 1 ); // quiet "did not check any assertions" warning
90 BOOST_TEST_MESSAGE( wxString::Format( "DRC lengths: %s, passed", test.first ) );
91 }
92 else
93 {
95
96 std::map<KIID, EDA_ITEM*> itemMap;
97 m_board->FillItemMap( itemMap );
98
99 for( const DRC_ITEM& item : violations )
100 {
101 BOOST_TEST_MESSAGE( item.ShowReport( &unitsProvider, RPT_SEVERITY_ERROR, itemMap ) );
102 }
103
104 BOOST_ERROR( wxString::Format( "DRC skew: %s, failed (violations found %d expected %d)", test.first,
105 (int) violations.size(), test.second ) );
106 }
107 }
108}
constexpr EDA_IU_SCALE pcbIUScale
Definition: base_units.h:108
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)
std::function< void(PCB_MARKER *aMarker)> DRC_CUSTOM_MARKER_HANDLER
Definition: drc_engine.h:69
@ DRCE_VIA_DIAMETER
Definition: drc_item.h:61
@ DRCE_UNCONNECTED_ITEMS
Definition: drc_item.h:39
@ DRCE_LIB_FOOTPRINT_ISSUES
Definition: drc_item.h:82
@ DRCE_INVALID_OUTLINE
Definition: drc_item.h:72
@ DRCE_DRILL_OUT_OF_RANGE
Definition: drc_item.h:60
@ DRCE_STARVED_THERMAL
Definition: drc_item.h:49
@ DRCE_COPPER_SLIVER
Definition: drc_item.h:92
@ DRCE_DANGLING_VIA
Definition: drc_item.h:50
@ DRCE_LENGTH_OUT_OF_RANGE
Definition: drc_item.h:103
@ DRCE_LIB_FOOTPRINT_MISMATCH
Definition: drc_item.h:83
void LoadBoard(SETTINGS_MANAGER &aSettingsManager, const wxString &aRelPath, std::unique_ptr< BOARD > &aBoard)
void FillZones(BOARD *m_board)
@ RPT_SEVERITY_ERROR
@ RPT_SEVERITY_IGNORE
BOOST_CHECK_EQUAL(ret, c.m_exp_result)
BOOST_FIXTURE_TEST_CASE(DRCLengths, DRC_REGRESSION_TEST_FIXTURE)
BOOST_TEST_MESSAGE("Polyline has "<< chain.PointCount()<< " points")