KiCad PCB EDA Suite
Loading...
Searching...
No Matches
test_generator_load_save.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 (C) 2023 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#include <board.h>
25#include <kiid.h>
26#include <pcb_generator.h>
31
32namespace
33{
34
35struct GENERATOR_LOAD_TEST_FIXTURE
36{
37 GENERATOR_LOAD_TEST_FIXTURE() {}
38};
39
40
41struct GENERATOR_LOAD_TEST_CASE
42{
43 // Which one to look at in the file?
44 KIID m_searchUuid;
45 // Expected values
46 bool m_expectedLocked;
47 wxString m_expectedName;
48 unsigned m_expectedMemberCount;
49};
50
51
52struct GENERATOR_LOAD_BOARD_TEST_CASE
53{
54 // The board to load
55 wxString m_boardFileRelativePath;
56
57 // These tests may well test specific versions of the board file format,
58 // so don't let it change accidentally!
59 int m_expectedBoardVersion;
60
61 // List of images to check
62 std::vector<GENERATOR_LOAD_TEST_CASE> m_generatorCases;
63};
64
65} // namespace
66
67BOOST_FIXTURE_TEST_CASE( GeneratorLoading, GENERATOR_LOAD_TEST_FIXTURE )
68{
69 const std::vector<GENERATOR_LOAD_BOARD_TEST_CASE> testCases{
70 {
71 "tuning_generators_load_save",
72 20231231,
73 {
74 // From top to bottom in the board file
75 {
76 "4f22a815-3048-42b3-86fa-eb71720d35ae",
77 false,
78 "Tuning Pattern",
79 47,
80 },
81 },
82 },
83 {
84 // Before 20231231, 'id' was used in generator s-exprs
85 // and we need to continue to load it for compatibility
86 "tuning_generators_load_save_v20231212",
87 20231212,
88 {
89 // From top to bottom in the board file
90 {
91 "4f22a815-3048-42b3-86fa-eb71720d35ae",
92 false,
93 "Tuning Pattern",
94 47,
95 },
96 },
97 },
98 };
99
100 for( const GENERATOR_LOAD_BOARD_TEST_CASE& testCase : testCases )
101 {
102 const auto doBoardTest = [&]( const BOARD& aBoard )
103 {
104 for( const GENERATOR_LOAD_TEST_CASE& testCase : testCase.m_generatorCases )
105 {
106 BOOST_TEST_MESSAGE(
107 "Checking for generator with UUID: " << testCase.m_searchUuid.AsString() );
108
109 const auto& generator =
111 aBoard, PCB_GENERATOR_T, testCase.m_searchUuid ) );
112
113 BOOST_CHECK_EQUAL( generator.IsLocked(), testCase.m_expectedLocked );
114 BOOST_CHECK_EQUAL( generator.GetName(), testCase.m_expectedName );
115 BOOST_CHECK_EQUAL( generator.GetItems().size(), testCase.m_expectedMemberCount );
116 }
117 };
118
119 KI_TEST::LoadAndTestBoardFile( testCase.m_boardFileRelativePath, true, doBoardTest,
120 testCase.m_expectedBoardVersion );
121 }
122}
General utilities for PCB file IO for QA programs.
Information pertinent to a Pcbnew printed circuit board.
Definition: board.h:282
Definition: kiid.h:49
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...
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.
BOOST_FIXTURE_TEST_CASE(GeneratorLoading, GENERATOR_LOAD_TEST_FIXTURE)
@ PCB_GENERATOR_T
class PCB_GENERATOR, generator on a layer
Definition: typeinfo.h:91