KiCad PCB EDA Suite
Loading...
Searching...
No Matches
test_drc_skew.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
22#include <board.h>
24#include <drc/drc_engine.h>
25#include <pad.h>
26#include <pcb_track.h>
27#include <pcb_marker.h>
28#include <footprint.h>
29#include <drc/drc_engine.h>
30#include <drc/drc_item.h>
32
33
35{
38
40 std::unique_ptr<BOARD> m_board;
41};
42
43
45{
46 // Check for minimum copper connection errors
47
48 std::vector<std::pair<wxString, int>> tests =
49 {
50 { "skew_within_diff_pairs_drc", 2 },
51 { "skew_group_matched_drc", 5 }
52 };
53
54 for( const std::pair<wxString, int>& test : tests )
55 {
56 KI_TEST::LoadBoard( m_settingsManager, test.first, m_board );
57 KI_TEST::FillZones( m_board.get() );
58
59 std::vector<DRC_ITEM> violations;
60 BOARD_DESIGN_SETTINGS& bds = m_board->GetDesignSettings();
61
62 // Disable DRC tests not useful or not handled in this testcase
69 // These DRC tests are not useful and do not work because they need a footprint library
70 // associated to the board
73
74 // Ensure that our desired error is fired
76
78 [&]( const std::shared_ptr<DRC_ITEM>& aItem, const VECTOR2I& aPos, int aLayer,
79 const std::function<void( PCB_MARKER* )>& aPathGenerator )
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 skew: %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,
102 itemMap ) );
103 }
104
105 BOOST_ERROR( wxString::Format( "DRC skew: %s, failed (violations found %d expected %d)",
106 test.first, (int)violations.size(), test.second ) );
107 }
108 }
109}
constexpr EDA_IU_SCALE pcbIUScale
Definition base_units.h:121
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
@ DRCE_SKEW_OUT_OF_RANGE
Definition drc_item.h:104
@ DRCE_VIA_DIAMETER
Definition drc_item.h:58
@ DRCE_UNCONNECTED_ITEMS
Definition drc_item.h:36
@ DRCE_LIB_FOOTPRINT_ISSUES
Definition drc_item.h:79
@ DRCE_INVALID_OUTLINE
Definition drc_item.h:69
@ DRCE_DRILL_OUT_OF_RANGE
Definition drc_item.h:57
@ DRCE_STARVED_THERMAL
Definition drc_item.h:46
@ DRCE_COPPER_SLIVER
Definition drc_item.h:90
@ DRCE_LIB_FOOTPRINT_MISMATCH
Definition drc_item.h:80
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_FIXTURE_TEST_CASE(DRCSkew, 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