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, see <https://www.gnu.org/licenses/>.
18 */
19
20
21#pragma once
22
23#include <filesystem>
24#include <map>
25#include <memory>
26#include <mutex>
27#include <functional>
28#include <optional>
29#include <set>
30#include <string>
31#include <system_error>
32
33#include <wx/string.h>
34
35#include <boost/test/unit_test.hpp>
36
37#include <reporter.h>
38#include <core/typeinfo.h>
39#include <tool/tool_manager.h>
40#include <pcb_io/pcb_io.h>
41#include <pcb_track_types.h>
42
44
45class BOARD;
46class BOARD_ITEM;
47class FOOTPRINT;
48class KIID;
49class PCB_TEXT;
50class PCB_SHAPE;
51class ZONE;
52class PAD;
53class SHAPE_POLY_SET;
55
56
57/*
58 * Boost test printers
59 */
60std::ostream& boost_test_print_type( std::ostream& os, const VIATYPE& aViaType );
61
62
63namespace KI_TEST
64{
65class DUMMY_TOOL : public TOOL_BASE
66{
67public:
69 TOOL_BASE( BATCH, TOOL_MANAGER::MakeToolId( "" ), "testframework.dummytool" )
70 {};
71
72 void Reset( RESET_REASON aReason ) override {}
73};
74
75
85{
86public:
88
90 {
91 std::error_code ec;
92
93 for( const std::string& path : scan() )
94 {
95 if( m_preexisting.count( path ) == 0 )
96 std::filesystem::remove( path, ec );
97 }
98 }
99
100private:
101 static std::set<std::string> scan()
102 {
103 std::set<std::string> found;
104 std::error_code ec;
105
106 for( auto it = std::filesystem::recursive_directory_iterator( GetPcbnewTestDataDir(), ec );
107 !ec && it != std::filesystem::recursive_directory_iterator(); it.increment( ec ) )
108 {
109 if( it->path().extension() == ".kicad_dru" )
110 found.insert( it->path().string() );
111 }
112
113 return found;
114 }
115
116 std::set<std::string> m_preexisting;
117};
118
119
132{
133public:
134 BOARD_DUMPER();
135
136 void DumpBoardToFile( BOARD& aBoard, const std::string& aName ) const;
137
138 const bool m_dump_boards;
139};
140
141
143{
144public:
145 enum COLOR
146 {
147 RED = 0,
150 };
151
153
154 void SetConsoleOutputEnabled( bool aEnabled ) { m_silenceConsoleOutput = !aEnabled; }
155
156 const wxString& GetLogContents() const
157 {
158 return m_logContents;
159 }
160
161 void PrintProgress( const wxString& aMessage )
162 {
164 return;
165
168
169 printf( "%s", (const char*) aMessage.c_str() );
170 fflush( stdout );
171
173 }
174
175
176 void Print( const wxString& aMessage )
177 {
180
182 {
183 printf( "%s", (const char*) aMessage.c_str() );
184 fflush( stdout );
185 }
186
187 m_logContents.append( aMessage );
189 }
190
191
192 void SetColor( COLOR color )
193 {
195 return;
196
197 std::map<COLOR, wxString> colorMap =
198 {
199 { RED, "\033[0;31m" },
200 { GREEN, "\033[0;32m" },
201 { DEFAULT, "\033[0;37m" }
202 };
203
204 printf( "%s", (const char*) colorMap[color].c_str() );
205 fflush( stdout );
206 }
207
208
209private:
211 {
213 return;
214
215 printf( "\r\033[K" );
216 fflush( stdout );
217 }
218
221 std::mutex m_lock;
223};
224
225
227{
228public:
231
232
233 virtual REPORTER& Report( const wxString& aText,
234 SEVERITY aSeverity = RPT_SEVERITY_UNDEFINED ) override
235 {
236 switch( aSeverity )
237 {
239 m_log->SetColor( CONSOLE_LOG::RED );
240 m_log->Print( "ERROR | " );
241 break;
242
243 default: m_log->SetColor( CONSOLE_LOG::DEFAULT ); m_log->Print( " | " );
244 }
245
246 m_log->SetColor( CONSOLE_LOG::DEFAULT );
247 m_log->Print( aText + "\n" );
248 return *this;
249 }
250
251 virtual bool HasMessage() const override { return true; }
252
253private:
255};
256
257
259{
261
262 // These tests may well test specific versions of the board file format,
263 // so don't let it change accidentally in the files (e.g. by resaving in newer KiCad)!
264 std::optional<int> m_ExpectedBoardVersion;
265
266 // Be default, printing the board file is sufficent to identify the test case
267 friend std::ostream& operator<<( std::ostream& os, const BOARD_LOAD_TEST_CASE& aTestCase )
268 {
269 os << aTestCase.m_BoardFileRelativePath;
270 return os;
271 }
272};
273
274
275void LoadBoard( SETTINGS_MANAGER& aSettingsManager, const wxString& aRelPath,
276 std::unique_ptr<BOARD>& aBoard );
277
288BOARD_ITEM& RequireBoardItemWithTypeAndId( const BOARD& aBoard, KICAD_T aItemType,
289 const KIID& aID );
290
302void LoadAndTestBoardFile( const wxString aRelativePath, bool aRoundtrip,
303 std::function<void( BOARD& )> aBoardTestFunction,
304 std::optional<int> aExpectedBoardVersion = std::nullopt );
305
309void LoadAndTestFootprintFile( const wxString& aLibRelativePath, const wxString& aFpName,
310 bool aRoundtrip,
311 std::function<void( FOOTPRINT& )> aFootprintTestFunction,
312 std::optional<int> aExpectedFootprintVersion );
313
314
315void FillZones( BOARD* m_board );
316
317
321void CheckFootprint( const FOOTPRINT* expected, const FOOTPRINT* fp );
322
323void CheckFpPad( const PAD* expected, const PAD* pad );
324
325void CheckFpText( const PCB_TEXT* expected, const PCB_TEXT* text );
326
327void CheckFpShape( const PCB_SHAPE* expected, const PCB_SHAPE* shape );
328
329void CheckFpZone( const ZONE* expected, const ZONE* zone );
330
331void CheckShapePolySet( const SHAPE_POLY_SET* expected, const SHAPE_POLY_SET* polyset );
332
336void PrintBoardStats( const BOARD* aBoard, const std::string& aBoardName );
337
338
343{
344public:
350
352 m_errorCount( 0 ),
353 m_warningCount( 0 ),
354 m_infoCount( 0 )
355 {
356 }
357
358 REPORTER& Report( const wxString& aText, SEVERITY aSeverity = RPT_SEVERITY_UNDEFINED ) override;
359
360 bool HasMessage() const override { return !m_messages.empty(); }
361
362 EDA_UNITS GetUnits() const override { return EDA_UNITS::MM; }
363
364 void Clear() override
365 {
366 m_messages.clear();
367 m_errorCount = 0;
368 m_warningCount = 0;
369 m_infoCount = 0;
370 }
371
372 void PrintAllMessages( const std::string& aContext ) const;
373
374 int GetErrorCount() const { return m_errorCount; }
375 int GetWarningCount() const { return m_warningCount; }
376 const std::vector<MESSAGE>& GetMessages() const { return m_messages; }
377
378private:
379 std::vector<MESSAGE> m_messages;
383};
384
385
390std::unique_ptr<BOARD> LoadBoardWithCapture( PCB_IO& aIoPlugin, const std::string& aFilePath, REPORTER* aReporter );
391
392
401{
402public:
410 BOARD* LoadAndCache( const std::string& aFilePath, REPORTER* aReporter );
411
416 BOARD* GetCachedBoard( const std::string& aFilePath );
417
418protected:
419 BOARD* getCachedBoard( PCB_IO& aIoPlugin, const std::string& aFilePath, bool aForceReload, REPORTER* aReporter );
420
424 virtual BOARD* getCachedBoard( const std::string& aFilePath, bool aForceReload, REPORTER* aReporter ) = 0;
425
426private:
427 std::map<std::string, std::unique_ptr<BOARD>> m_boardCache;
428};
429
430} // namespace KI_TEST
General utilities for PCB file IO for QA programs.
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:409
Definition kiid.h:46
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 SetConsoleOutputEnabled(bool aEnabled)
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.
static std::set< std::string > scan()
std::set< std::string > m_preexisting
Definition pad.h:61
A base class that BOARD loading and saving plugins should derive from.
Definition pcb_io.h:76
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:152
RESET_REASON
Determine the reason of reset for a tool.
Definition tool_base.h:74
TOOL_BASE(TOOL_TYPE aType, TOOL_ID aId, const std::string &aName=std::string(""))
Definition tool_base.h:64
Handle a list of polygons defining a copper zone.
Definition zone.h:70
EDA_UNITS
Definition eda_units.h:44
std::string GetPcbnewTestDataDir()
Utility which returns a path to the data directory where the test board files are stored.
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)
std::string path
VECTOR3I expected(15, 30, 45)
@ BATCH
Tool that runs in the background without any user intervention.
Definition tool_base.h:48
KICAD_T
The set of class identification values stored in EDA_ITEM::m_structType.
Definition typeinfo.h:70