KiCad PCB EDA Suite
Loading...
Searching...
No Matches
eeschema_test_utils.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, 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 "eeschema_test_utils.h"
25
27#include <sch_io/sch_io.h>
29
30#include <cstdlib>
31#include <memory>
32
35#include <eeschema/sch_screen.h>
36#include <eeschema/schematic.h>
39
40
42 m_schematic( nullptr ),
43 m_pi( SCH_IO_MGR::FindPlugin( SCH_IO_MGR::SCH_KICAD ) )
44{
45}
46
47
51
52
54{
55 wxFileName fn( aFn );
56
57 BOOST_TEST_CHECKPOINT( "Loading schematic " << fn.GetFullPath() );
59 wxFileName pro( fn );
61
62 // Schematic must be reset before a project is reloaded
63 m_schematic.release();
64
65 m_manager.LoadProject( pro.GetFullPath() );
66
67 m_manager.Prj().SetElem( PROJECT::ELEM::LEGACY_SYMBOL_LIBS, nullptr );
68
69 m_schematic = std::make_unique<SCHEMATIC>( &m_manager.Prj() );
70 m_schematic->Reset();
71 SCH_SHEET* defaultSheet = m_schematic->GetTopLevelSheet( 0 );
72
73 SCH_SHEET* root = m_pi->LoadSchematicFile( fn.GetFullPath(), m_schematic.get() );
74 m_schematic->AddTopLevelSheet( root );
75
76 m_schematic->RemoveTopLevelSheet( defaultSheet );
77 delete defaultSheet;
78
79 BOOST_REQUIRE_EQUAL( m_pi->GetError().IsEmpty(), true );
80
82 SCH_SCREENS screens( m_schematic->Root() );
84 for( SCH_SCREEN* screen = screens.GetFirst(); screen; screen = screens.GetNext() )
85 screen->UpdateLocalLibSymbolLinks();
86
87 SCH_SHEET_LIST sheets = m_schematic->BuildSheetListSortedByPageNumbers();
88
89 // Restore all of the loaded symbol instances from the root sheet screen.
90 if( m_schematic->RootScreen()->GetFileFormatVersionAtLoad() < 20221002 )
91 sheets.UpdateSymbolInstanceData( m_schematic->RootScreen()->GetSymbolInstances() );
92
93 if( m_schematic->RootScreen()->GetFileFormatVersionAtLoad() < 20221110 )
94 sheets.UpdateSheetInstanceData( m_schematic->RootScreen()->GetSheetInstances() );
95
96 if( m_schematic->RootScreen()->GetFileFormatVersionAtLoad() < 20221206 )
97 {
98 for( SCH_SCREEN* screen = screens.GetFirst(); screen; screen = screens.GetNext() )
99 screen->MigrateSimModels();
100 }
101
102 if( m_schematic->RootScreen()->GetFileFormatVersionAtLoad() < 20230221 )
103 screens.FixLegacyPowerSymbolMismatches();
104
105 sheets.AnnotatePowerSymbols();
106
107 // NOTE: This is required for multi-unit symbols to be correct
108 for( SCH_SHEET_PATH& sheet : sheets )
109 sheet.UpdateAllScreenReferences();
110
111 // NOTE: SchematicCleanUp is not called; QA schematics must already be clean or else
112 // SchematicCleanUp must be freed from its UI dependencies.
113
114 std::unordered_set<SCH_SCREEN*> all_screens;
115
116 for( const SCH_SHEET_PATH& path : sheets )
117 all_screens.insert( path.LastScreen() );
118
119 SCH_RULE_AREA::UpdateRuleAreasInScreens( all_screens, nullptr );
120
121 m_schematic->ConnectionGraph()->Recalculate( sheets, true );
122}
123
124
125wxFileName KI_TEST::SCHEMATIC_TEST_FIXTURE::SchematicQAPath( const wxString& aBaseName )
126{
127 wxFileName fn( KI_TEST::GetEeschemaTestDataDir() );
128 fn.AppendDir( "netlists" );
129 fn.AppendDir( aBaseName );
130 fn.SetName( aBaseName );
132
133 return fn;
134}
135
136
137template <typename Exporter>
139{
140 wxFileName netFile = m_schematic->Project().GetProjectFullName();
141
142 if( aTest )
143 netFile.SetName( netFile.GetName() + "_test" );
144
145 netFile.SetExt( FILEEXT::NetlistFileExtension );
146
147 return netFile.GetFullPath();
148}
149
150
151template <typename Exporter>
153{
154 wxString netlistPath = GetNetlistPath( true );
155 BOOST_TEST_CHECKPOINT( "Writing netlist " << netlistPath );
156
157 // In case of a crash the file may not have been deleted.
158 if( wxFileExists( netlistPath ) )
159 wxRemoveFile( netlistPath );
160
161 WX_STRING_REPORTER reporter;
162 std::unique_ptr<Exporter> exporter = std::make_unique<Exporter>( m_schematic.get() );
163
164 bool success = exporter->WriteNetlist( netlistPath, GetNetlistOptions(), reporter );
165
166 BOOST_REQUIRE( success && reporter.GetMessages().IsEmpty() );
167}
168
169
170template <typename Exporter>
172{
173 wxRemoveFile( GetNetlistPath( true ) );
174 m_schematic->Reset();
175}
176
177
178template <typename Exporter>
180{
181 LoadSchematic( SchematicQAPath( aBaseName ) );
182 WriteNetlist();
184 Cleanup();
185}
186
187
std::unique_ptr< SCHEMATIC > m_schematic
virtual void LoadSchematic(const wxFileName &aFn)
virtual wxFileName SchematicQAPath(const wxString &aBaseName)
@ LEGACY_SYMBOL_LIBS
Definition project.h:72
A factory which returns an instance of a SCH_IO.
Definition sch_io_mgr.h:50
static std::vector< std::pair< SCH_RULE_AREA *, SCH_SCREEN * > > UpdateRuleAreasInScreens(std::unordered_set< SCH_SCREEN * > &screens, KIGFX::SCH_VIEW *view)
Update all rule area connectvity / caches in the given sheet paths.
Container class that holds multiple SCH_SCREEN objects in a hierarchy.
Definition sch_screen.h:747
A container for handling SCH_SHEET_PATH objects in a flattened hierarchy.
void UpdateSheetInstanceData(const std::vector< SCH_SHEET_INSTANCE > &aSheetInstances)
Update all of the sheet instance information using aSheetInstances.
void AnnotatePowerSymbols()
Silently annotate the not yet annotated power symbols of the entire hierarchy of the sheet path list.
void UpdateSymbolInstanceData(const std::vector< SCH_SYMBOL_INSTANCE > &aSymbolInstances)
Update all of the symbol instance information using aSymbolInstances.
Handle access to a stack of flattened SCH_SHEET objects by way of a path for creating a flattened sch...
Sheet symbol placed in a schematic, and is the entry point for a sub schematic.
Definition sch_sheet.h:48
void TestNetlist(const wxString &aBaseName)
virtual void CompareNetlists()=0
virtual wxString GetNetlistPath(bool aTest=false)
A wrapper for reporting to a wxString object.
Definition reporter.h:191
const wxString & GetMessages() const
Definition reporter.cpp:78
static const std::string NetlistFileExtension
static const std::string ProjectFileExtension
static const std::string KiCadSchematicFileExtension
void LoadSchematic(SETTINGS_MANAGER &aSettingsManager, const wxString &aRelPath, std::unique_ptr< SCHEMATIC > &aSchematic)
std::string GetEeschemaTestDataDir()
Get the configured location of Eeschema test data.
BOOST_REQUIRE(intersection.has_value()==c.ExpectedIntersection.has_value())
std::string path
Definition of file extensions used in Kicad.