KiCad PCB EDA Suite
Loading...
Searching...
No Matches
test_erc_global_labels.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 3
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 at
18 * http://www.gnu.org/licenses/
19 */
20
23
24#include <connection_graph.h>
25#include <schematic.h>
26#include <erc/erc_settings.h>
27#include <erc/erc.h>
28#include <erc/erc_report.h>
30#include <locale_io.h>
31
33{
36
38 std::unique_ptr<SCHEMATIC> m_schematic;
39};
40
41
43{
45
46 // Check for Errors when using global labels
47 std::vector<std::pair<wxString, int>> tests =
48 {
49 { "issue9367", 13 }
50 };
51
52 for( const std::pair<wxString, int>& test : tests )
53 {
54 KI_TEST::LoadSchematic( m_settingsManager, test.first, m_schematic );
55
56 ERC_SETTINGS& settings = m_schematic->ErcSettings();
57 SHEETLIST_ERC_ITEMS_PROVIDER errors( m_schematic.get() );
58
59 // Skip the "Modified symbol" warning
62
63 // Skip the unconnected wire endpoints warning
65
66 SCH_SHEET_LIST sheets = m_schematic->BuildSheetListSortedByPageNumbers();
67 m_schematic->ConnectionGraph()->Recalculate( sheets, true );
68 m_schematic->ConnectionGraph()->RunERC();
69
70 ERC_TESTER tester( m_schematic.get() );
73 tester.TestNoConnectPins();
74 tester.TestPinToPin();
75 tester.TestSimilarLabels();
76
78
79 ERC_REPORT reportWriter( m_schematic.get(), EDA_UNITS::MM );
80
81 BOOST_CHECK_MESSAGE( errors.GetCount() == test.second,
82 "Expected " << test.second << " errors in " << test.first.ToStdString()
83 << " but got " << errors.GetCount() << "\n"
84 << reportWriter.GetTextReport() );
85
86 }
87}
88
89
91{
93
94 // Check for Errors when using global labels
95 std::vector<std::pair<wxString, int>> tests = { { "issue13212", 3 },
96 { "erc_label_test", 7 } };
97
98 for( const std::pair<wxString, int>& test : tests )
99 {
100 KI_TEST::LoadSchematic( m_settingsManager, test.first, m_schematic );
101
102 ERC_SETTINGS& settings = m_schematic->ErcSettings();
103 SHEETLIST_ERC_ITEMS_PROVIDER errors( m_schematic.get() );
104
105 // Skip the "Modified symbol" warning
108
109 // Configure the rules under test
112
113 // Silence dangling wire errors
115
116 SCH_SHEET_LIST sheets = m_schematic->BuildSheetListSortedByPageNumbers();
117 m_schematic->ConnectionGraph()->Recalculate( sheets, true );
118 m_schematic->ConnectionGraph()->RunERC();
119
120 ERC_TESTER tester( m_schematic.get() );
123 tester.TestNoConnectPins();
124 tester.TestPinToPin();
125 tester.TestSimilarLabels();
126
128
129 ERC_REPORT reportWriter( m_schematic.get(), EDA_UNITS::MM );
130
131 BOOST_CHECK_MESSAGE( errors.GetCount() == test.second,
132 "Expected " << test.second << " errors in " << test.first.ToStdString()
133 << " but got " << errors.GetCount() << "\n"
134 << reportWriter.GetTextReport() );
135
136 }
137}
wxString GetTextReport()
Returns the ERC report in "text" (human readable) format in the C-locale.
Container for ERC settings.
std::map< int, SEVERITY > m_ERCSeverities
int TestPinToPin()
Checks the full netlist against the pin-to-pin connectivity requirements.
Definition erc.cpp:891
int TestSimilarLabels()
Checks for labels that differ only in capitalization.
Definition erc.cpp:1333
int TestMultUnitPinConflicts()
Checks if shared pins on multi-unit symbols have been connected to different nets.
Definition erc.cpp:1124
int TestNoConnectPins()
In KiCad 5 and earlier, you could connect stuff up to pins with NC electrical type.
Definition erc.cpp:822
int TestMultiunitFootprints()
Test if all units of each multiunit symbol have the same footprint assigned.
Definition erc.cpp:440
Instantiate the current locale within a scope in which you are expecting exceptions to be thrown.
Definition locale_io.h:41
A container for handling SCH_SHEET_PATH objects in a flattened hierarchy.
An implementation of the RC_ITEM_LIST interface which uses the global SHEETLIST to fulfill the contra...
int GetCount(int aSeverity=-1) const override
void SetSeverities(int aSeverities) override
@ ERCE_UNCONNECTED_WIRE_ENDPOINT
A label is connected to more than one wire.
@ ERCE_LABEL_SINGLE_PIN
A label is connected only to a single pin.
@ ERCE_LIB_SYMBOL_MISMATCH
Symbol doesn't match copy in library.
@ ERCE_LIB_SYMBOL_ISSUES
Symbol not found in active libraries.
@ ERCE_SINGLE_GLOBAL_LABEL
A label only exists once in the schematic.
void LoadSchematic(SETTINGS_MANAGER &aSettingsManager, const wxString &aRelPath, std::unique_ptr< SCHEMATIC > &aSchematic)
@ RPT_SEVERITY_WARNING
@ RPT_SEVERITY_ERROR
@ RPT_SEVERITY_IGNORE
std::vector< FAB_LAYER_COLOR > dummy
std::unique_ptr< SCHEMATIC > m_schematic
BOOST_FIXTURE_TEST_CASE(ERCGlobalLabels, ERC_REGRESSION_TEST_FIXTURE)