KiCad PCB EDA Suite
Loading...
Searching...
No Matches
test_drc_incorrect_text_mirror.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 <drc/drc_engine.h>
26#include <drc/drc_item.h>
28
29
37
38
40{
41 std::vector<std::pair<wxString, int>> tests =
42 {
43 { "incorrect_text_mirroring_drc", 8 }
44 };
45
46 for( const std::pair<wxString, int>& test : tests )
47 {
48 KI_TEST::LoadBoard( m_settingsManager, test.first, m_board );
49 KI_TEST::FillZones( m_board.get() );
50
51 std::vector<DRC_ITEM> violations;
52 BOARD_DESIGN_SETTINGS& bds = m_board->GetDesignSettings();
53
54 // Disable DRC tests not useful or not handled in this testcase
55 for( int ii = DRCE_FIRST; ii <= DRCE_LAST; ++ii )
57
58 // Ensure that our desired errors are fired
61
63 [&]( const std::shared_ptr<DRC_ITEM>& aItem, const VECTOR2I& aPos, int aLayer,
64 const std::function<void( PCB_MARKER* )>& aPathGenerator )
65 {
66 if( bds.GetSeverity( aItem->GetErrorCode() ) == SEVERITY::RPT_SEVERITY_ERROR )
67 violations.push_back( *aItem );
68 } );
69
70 bds.m_DRCEngine->RunTests( EDA_UNITS::MM, true, false );
71
72 if( violations.size() == test.second )
73 {
74 BOOST_CHECK_EQUAL( 1, 1 ); // quiet "did not check any assertions" warning
75 BOOST_TEST_MESSAGE( wxString::Format( "DRC incorrect text mirror test: %s, passed", test.first ) );
76 }
77 else
78 {
80
81 std::map<KIID, EDA_ITEM*> itemMap;
82 m_board->FillItemMap( itemMap );
83
84 for( const DRC_ITEM& item : violations )
85 {
86 BOOST_TEST_MESSAGE( item.ShowReport( &unitsProvider, RPT_SEVERITY_ERROR,
87 itemMap ) );
88 }
89
90 BOOST_ERROR( wxString::Format( "DRC incorrect text mirror test: %s, failed (violations found %d expected %d)",
91 test.first, (int)violations.size(), test.second ) );
92 }
93 }
94}
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_MIRRORED_TEXT_ON_FRONT_LAYER
Definition drc_item.h:109
@ DRCE_FIRST
Definition drc_item.h:35
@ DRCE_NONMIRRORED_TEXT_ON_BACK_LAYER
Definition drc_item.h:110
@ DRCE_LAST
Definition drc_item.h:121
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(DRCIncorrectTextMirror, DRC_INCORRECT_TEXT_MIRROR_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