KiCad PCB EDA Suite
Loading...
Searching...
No Matches
board_test_utils.h
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
24
25#pragma once
26
27#include <map>
28#include <memory>
29#include <mutex>
30#include <functional>
31#include <optional>
32#include <string>
33
34#include <wx/string.h>
35
36#include <boost/test/unit_test.hpp>
37
38#include <reporter.h>
39#include <core/typeinfo.h>
40#include <tool/tool_manager.h>
41#include <pcb_io/pcb_io.h>
42#include <pcb_track_types.h>
43
44class BOARD;
45class BOARD_ITEM;
46class FOOTPRINT;
47class KIID;
48class PCB_TEXT;
49class PCB_SHAPE;
50class ZONE;
51class PAD;
52class SHAPE_POLY_SET;
54
55
56/*
57 * Boost test printers
58 */
59std::ostream& boost_test_print_type( std::ostream& os, const VIATYPE& aViaType );
60
61
62namespace KI_TEST
63{
64class DUMMY_TOOL : public TOOL_BASE
65{
66public:
68 TOOL_BASE( BATCH, TOOL_MANAGER::MakeToolId( "" ), "testframework.dummytool" )
69 {};
70
71 void Reset( RESET_REASON aReason ) override {}
72};
73
74
87{
88public:
90
91 void DumpBoardToFile( BOARD& aBoard, const std::string& aName ) const;
92
93 const bool m_dump_boards;
94};
95
96
98{
99public:
100 enum COLOR
101 {
102 RED = 0,
105 };
106
108
109 const wxString& GetLogContents() const
110 {
111 return m_logContents;
112 }
113
114 void PrintProgress( const wxString& aMessage )
115 {
117 return;
118
121
122 printf( "%s", (const char*) aMessage.c_str() );
123 fflush( stdout );
124
126 }
127
128
129 void Print( const wxString& aMessage )
130 {
133
135 {
136 printf( "%s", (const char*) aMessage.c_str() );
137 fflush( stdout );
138 }
139
140 m_logContents.append( aMessage );
142 }
143
144
145 void SetColor( COLOR color )
146 {
148 return;
149
150 std::map<COLOR, wxString> colorMap =
151 {
152 { RED, "\033[0;31m" },
153 { GREEN, "\033[0;32m" },
154 { DEFAULT, "\033[0;37m" }
155 };
156
157 printf( "%s", (const char*) colorMap[color].c_str() );
158 fflush( stdout );
159 }
160
161
162private:
164 {
166 return;
167
168 printf( "\r\033[K" );
169 fflush( stdout );
170 }
171
174 std::mutex m_lock;
176};
177
178
180{
181public:
184
185
186 virtual REPORTER& Report( const wxString& aText,
187 SEVERITY aSeverity = RPT_SEVERITY_UNDEFINED ) override
188 {
189 switch( aSeverity )
190 {
192 m_log->SetColor( CONSOLE_LOG::RED );
193 m_log->Print( "ERROR | " );
194 break;
195
196 default: m_log->SetColor( CONSOLE_LOG::DEFAULT ); m_log->Print( " | " );
197 }
198
199 m_log->SetColor( CONSOLE_LOG::DEFAULT );
200 m_log->Print( aText + "\n" );
201 return *this;
202 }
203
204 virtual bool HasMessage() const override { return true; }
205
206private:
208};
209
210
212{
214
215 // These tests may well test specific versions of the board file format,
216 // so don't let it change accidentally in the files (e.g. by resaving in newer KiCad)!
217 std::optional<int> m_ExpectedBoardVersion;
218
219 // Be default, printing the board file is sufficent to identify the test case
220 friend std::ostream& operator<<( std::ostream& os, const BOARD_LOAD_TEST_CASE& aTestCase )
221 {
222 os << aTestCase.m_BoardFileRelativePath;
223 return os;
224 }
225};
226
227
228void LoadBoard( SETTINGS_MANAGER& aSettingsManager, const wxString& aRelPath,
229 std::unique_ptr<BOARD>& aBoard );
230
241BOARD_ITEM& RequireBoardItemWithTypeAndId( const BOARD& aBoard, KICAD_T aItemType,
242 const KIID& aID );
243
255void LoadAndTestBoardFile( const wxString aRelativePath, bool aRoundtrip,
256 std::function<void( BOARD& )> aBoardTestFunction,
257 std::optional<int> aExpectedBoardVersion = std::nullopt );
258
262void LoadAndTestFootprintFile( const wxString& aLibRelativePath, const wxString& aFpName,
263 bool aRoundtrip,
264 std::function<void( FOOTPRINT& )> aFootprintTestFunction,
265 std::optional<int> aExpectedFootprintVersion );
266
267
268void FillZones( BOARD* m_board );
269
270
274void CheckFootprint( const FOOTPRINT* expected, const FOOTPRINT* fp );
275
276void CheckFpPad( const PAD* expected, const PAD* pad );
277
278void CheckFpText( const PCB_TEXT* expected, const PCB_TEXT* text );
279
280void CheckFpShape( const PCB_SHAPE* expected, const PCB_SHAPE* shape );
281
282void CheckFpZone( const ZONE* expected, const ZONE* zone );
283
284void CheckShapePolySet( const SHAPE_POLY_SET* expected, const SHAPE_POLY_SET* polyset );
285
289void PrintBoardStats( const BOARD* aBoard, const std::string& aBoardName );
290
291
296{
297public:
303
305 m_errorCount( 0 ),
306 m_warningCount( 0 ),
307 m_infoCount( 0 )
308 {
309 }
310
311 REPORTER& Report( const wxString& aText, SEVERITY aSeverity = RPT_SEVERITY_UNDEFINED ) override;
312
313 bool HasMessage() const override { return !m_messages.empty(); }
314
315 EDA_UNITS GetUnits() const override { return EDA_UNITS::MM; }
316
317 void Clear() override
318 {
319 m_messages.clear();
320 m_errorCount = 0;
321 m_warningCount = 0;
322 m_infoCount = 0;
323 }
324
325 void PrintAllMessages( const std::string& aContext ) const;
326
327 int GetErrorCount() const { return m_errorCount; }
328 int GetWarningCount() const { return m_warningCount; }
329 const std::vector<MESSAGE>& GetMessages() const { return m_messages; }
330
331private:
332 std::vector<MESSAGE> m_messages;
336};
337
338
343std::unique_ptr<BOARD> LoadBoardWithCapture( PCB_IO& aIoPlugin, const std::string& aFilePath, REPORTER* aReporter );
344
345
354{
355public:
363 BOARD* LoadAndCache( const std::string& aFilePath, REPORTER* aReporter );
364
369 BOARD* GetCachedBoard( const std::string& aFilePath );
370
371protected:
372 BOARD* getCachedBoard( PCB_IO& aIoPlugin, const std::string& aFilePath, bool aForceReload, REPORTER* aReporter );
373
377 virtual BOARD* getCachedBoard( const std::string& aFilePath, bool aForceReload, REPORTER* aReporter ) = 0;
378
379private:
380 std::map<std::string, std::unique_ptr<BOARD>> m_boardCache;
381};
382
383} // namespace KI_TEST
std::ostream & boost_test_print_type(std::ostream &os, const VIATYPE &aViaType)
A base class for any item which can be embedded within the BOARD container class, and therefore insta...
Definition board_item.h:84
Information pertinent to a Pcbnew printed circuit board.
Definition board.h:323
Definition kiid.h:48
void DumpBoardToFile(BOARD &aBoard, const std::string &aName) const
Manager for caching loaded boards in memory, to avoid repeatedly loading and parsing the same board.
std::map< std::string, std::unique_ptr< BOARD > > m_boardCache
BOARD * getCachedBoard(PCB_IO &aIoPlugin, const std::string &aFilePath, bool aForceReload, REPORTER *aReporter)
BOARD * LoadAndCache(const std::string &aFilePath, REPORTER *aReporter)
Load (or reload) board for the given file path and send the load messages to the given reporter.
BOARD * GetCachedBoard(const std::string &aFilePath)
Get a cached board for the given file path, or load it if not already cached, without forcing a reloa...
virtual BOARD * getCachedBoard(const std::string &aFilePath, bool aForceReload, REPORTER *aReporter)=0
Implementation of the board loader (probably plug in the PCB_IO plugin here)
bool HasMessage() const override
Returns true if any messages were reported.
void PrintAllMessages(const std::string &aContext) const
const std::vector< MESSAGE > & GetMessages() const
REPORTER & Report(const wxString &aText, SEVERITY aSeverity=RPT_SEVERITY_UNDEFINED) override
Report a string with a given severity.
EDA_UNITS GetUnits() const override
std::vector< MESSAGE > m_messages
void PrintProgress(const wxString &aMessage)
void SetColor(COLOR color)
void Print(const wxString &aMessage)
const wxString & GetLogContents() const
virtual bool HasMessage() const override
Returns true if any messages were reported.
CONSOLE_MSG_REPORTER(CONSOLE_LOG *log)
virtual REPORTER & Report(const wxString &aText, SEVERITY aSeverity=RPT_SEVERITY_UNDEFINED) override
Report a string with a given severity.
void Reset(RESET_REASON aReason) override
Bring the tool to a known, initial state.
Definition pad.h:55
A base class that BOARD loading and saving plugins should derive from.
Definition pcb_io.h:70
A pure virtual class used to derive REPORTER objects from.
Definition reporter.h:73
REPORTER()
Definition reporter.h:75
Represent a set of closed polygons.
friend class TOOL_MANAGER
Definition tool_base.h:156
RESET_REASON
Determine the reason of reset for a tool.
Definition tool_base.h:78
TOOL_BASE(TOOL_TYPE aType, TOOL_ID aId, const std::string &aName=std::string(""))
Definition tool_base.h:68
Handle a list of polygons defining a copper zone.
Definition zone.h:74
EDA_UNITS
Definition eda_units.h:48
void LoadBoard(SETTINGS_MANAGER &aSettingsManager, const wxString &aRelPath, std::unique_ptr< BOARD > &aBoard)
void CheckFootprint(const FOOTPRINT *expected, const FOOTPRINT *fp)
Helper method to check if two footprints are semantically the same.
void PrintBoardStats(const BOARD *aBoard, const std::string &aBoardName)
Print detailed board statistics for debugging using test-framework logging.
void FillZones(BOARD *m_board)
std::unique_ptr< BOARD > LoadBoardWithCapture(PCB_IO &aIoPlugin, const std::string &aFilePath, REPORTER *aReporter)
Attempt to load an board with a given IO plugin, capturing all reporter messages.
void CheckFpShape(const PCB_SHAPE *expected, const PCB_SHAPE *shape)
void LoadAndTestFootprintFile(const wxString &aLibRelativePath, const wxString &aFpName, bool aRoundtrip, std::function< void(FOOTPRINT &)> aFootprintTestFunction, std::optional< int > aExpectedFootprintVersion)
Same as LoadAndTestBoardFile, but for footprints.
void CheckFpPad(const PAD *expected, const PAD *pad)
void CheckFpZone(const ZONE *expected, const ZONE *zone)
void CheckFpText(const PCB_TEXT *expected, const PCB_TEXT *text)
void LoadAndTestBoardFile(const wxString aRelativePath, bool aRoundtrip, std::function< void(BOARD &)> aBoardTestFunction, std::optional< int > aExpectedBoardVersion)
Perform "some test" on a board file loaded from the path, then optionally save and reload and run the...
void CheckShapePolySet(const SHAPE_POLY_SET *expected, const SHAPE_POLY_SET *polyset)
BOARD_ITEM & RequireBoardItemWithTypeAndId(const BOARD &aBoard, KICAD_T aItemType, const KIID &aID)
Get an item from the given board with a certain type and UUID.
Declarations of types for tracks and vias.
VIATYPE
SEVERITY
@ RPT_SEVERITY_ERROR
@ RPT_SEVERITY_UNDEFINED
std::optional< int > m_ExpectedBoardVersion
friend std::ostream & operator<<(std::ostream &os, const BOARD_LOAD_TEST_CASE &aTestCase)
VECTOR3I expected(15, 30, 45)
@ BATCH
Tool that runs in the background without any user intervention.
Definition tool_base.h:52
KICAD_T
The set of class identification values stored in EDA_ITEM::m_structType.
Definition typeinfo.h:75