KiCad PCB EDA Suite
Loading...
Searching...
No Matches
test_drc_copper_graphics.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 <drc/drc_engine.h>
29#include <pcb_marker.h>
30#include <drc/drc_engine.h>
31#include <drc/drc_item.h>
33
34
43
44
46{
47 wxString brd_name( wxT( "test_copper_graphics" ) );
48 KI_TEST::LoadBoard( m_settingsManager, brd_name, m_board );
49
50 // Do NOT refill zones; this will prevent some of the items from being tested.
51 // KI_TEST::FillZones( m_board.get() );
52
53 std::vector<DRC_ITEM> violations;
54 BOARD_DESIGN_SETTINGS& bds = m_board->GetDesignSettings();
55
56 // Disable some DRC tests not useful in this testcase (and time consuming)
65
67 [&]( const std::shared_ptr<DRC_ITEM>& aItem, const VECTOR2I& aPos, int aLayer,
68 const std::function<void( PCB_MARKER* )>& aPathGenerator )
69 {
70 PCB_MARKER temp( aItem, aPos );
71
72 if( bds.m_DrcExclusions.find( temp.SerializeToString() ) == bds.m_DrcExclusions.end() )
73 violations.push_back( *aItem );
74 } );
75
76 bds.m_DRCEngine->RunTests( EDA_UNITS::MM, true, false );
77
78 const int expected_err_cnt = 4; // "What" copper text shorting zone
79 // Copper knockout text shorting two zones twice (but not
80 // three times as the two vertical zones are the same net)
81 // Net-tie rectangle shorting zone
82
83 if( violations.size() == expected_err_cnt )
84 {
85 BOOST_CHECK_EQUAL( 1, 1 ); // quiet "did not check any assertions" warning
86 BOOST_TEST_MESSAGE( "DRC copper graphics test passed" );
87 }
88 else
89 {
90 BOOST_CHECK_EQUAL( violations.size(), expected_err_cnt );
91
93
94 wxString report;
95 std::map<KIID, EDA_ITEM*> itemMap;
96 m_board->FillItemMap( itemMap );
97
98 for( const DRC_ITEM& item : violations )
99 report += item.ShowReport( &unitsProvider, RPT_SEVERITY_ERROR, itemMap );
100
101 BOOST_ERROR( wxString::Format( "DRC copper graphics: %s\n"
102 "%d violations found (expected %d)\n"
103 "%s",
104 brd_name,
105 (int) violations.size(),
106 expected_err_cnt,
107 report ) );
108 }
109}
constexpr EDA_IU_SCALE pcbIUScale
Definition base_units.h:112
Container for design settings for a BOARD object.
std::map< int, SEVERITY > m_DRCSeverities
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:167
wxString SerializeToString() const
@ DRCE_SILK_MASK_CLEARANCE
Definition drc_item.h:97
@ DRCE_MIRRORED_TEXT_ON_FRONT_LAYER
Definition drc_item.h:110
@ DRCE_LIB_FOOTPRINT_ISSUES
Definition drc_item.h:83
@ DRCE_STARVED_THERMAL
Definition drc_item.h:50
@ DRCE_ISOLATED_COPPER
Definition drc_item.h:49
@ DRCE_COPPER_SLIVER
Definition drc_item.h:93
@ DRCE_NONMIRRORED_TEXT_ON_BACK_LAYER
Definition drc_item.h:111
@ DRCE_LIB_FOOTPRINT_MISMATCH
Definition drc_item.h:84
void LoadBoard(SETTINGS_MANAGER &aSettingsManager, const wxString &aRelPath, std::unique_ptr< BOARD > &aBoard)
@ RPT_SEVERITY_ERROR
@ RPT_SEVERITY_IGNORE
BOOST_FIXTURE_TEST_CASE(DRCCopperGraphicsTest, DRC_COPPER_GRAPHICS_TEST_FIXTURE)
BOOST_TEST_MESSAGE("Polyline has "<< chain.PointCount()<< " points")
BOOST_CHECK_EQUAL(result, "25.4")
VECTOR2< int32_t > VECTOR2I
Definition vector2d.h:695