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 (C) 2019-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 "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 m_manager( true )
45{
46}
47
48
50{
51 m_schematic.Reset();
52 m_pi.reset();
53}
54
55
56void KI_TEST::SCHEMATIC_TEST_FIXTURE::LoadSchematic( const wxString& aBaseName )
57{
58 wxFileName fn = GetSchematicPath( aBaseName );
59
60 BOOST_TEST_MESSAGE( fn.GetFullPath() );
61
62 wxFileName pro( fn );
64
65 // Schematic must be reset before a project is reloaded
66 m_schematic.Reset();
67 m_manager.LoadProject( pro.GetFullPath() );
68
69 m_manager.Prj().SetElem( PROJECT::ELEM::SCH_SYMBOL_LIBS, nullptr );
70
71 m_schematic.SetProject( &m_manager.Prj() );
72 m_schematic.SetRoot( m_pi->LoadSchematicFile( fn.GetFullPath(), &m_schematic ) );
74 BOOST_REQUIRE_EQUAL( m_pi->GetError().IsEmpty(), true );
75
76 m_schematic.CurrentSheet().push_back( &m_schematic.Root() );
77
78 SCH_SCREENS screens( m_schematic.Root() );
79
80 for( SCH_SCREEN* screen = screens.GetFirst(); screen; screen = screens.GetNext() )
81 screen->UpdateLocalLibSymbolLinks();
83 SCH_SHEET_LIST sheets = m_schematic.BuildSheetListSortedByPageNumbers();
84
85 // Restore all of the loaded symbol instances from the root sheet screen.
86 if( m_schematic.RootScreen()->GetFileFormatVersionAtLoad() < 20221002 )
87 sheets.UpdateSymbolInstanceData( m_schematic.RootScreen()->GetSymbolInstances());
88
89 if( m_schematic.RootScreen()->GetFileFormatVersionAtLoad() < 20221110 )
90 sheets.UpdateSheetInstanceData( m_schematic.RootScreen()->GetSheetInstances());
91
92 if( m_schematic.RootScreen()->GetFileFormatVersionAtLoad() < 20221206 )
93 {
94 for( SCH_SCREEN* screen = screens.GetFirst(); screen; screen = screens.GetNext() )
95 screen->MigrateSimModels();
96 }
97
98 if( m_schematic.RootScreen()->GetFileFormatVersionAtLoad() < 20230221 )
99 screens.FixLegacyPowerSymbolMismatches();
100
101 sheets.AnnotatePowerSymbols();
102
103 // NOTE: This is required for multi-unit symbols to be correct
104 for( SCH_SHEET_PATH& sheet : sheets )
105 sheet.UpdateAllScreenReferences();
106
107 // NOTE: SchematicCleanUp is not called; QA schematics must already be clean or else
108 // SchematicCleanUp must be freed from its UI dependencies.
109
110 std::unordered_set<SCH_SCREEN*> all_screens;
111
112 for( const SCH_SHEET_PATH& path : sheets )
113 all_screens.insert( path.LastScreen() );
114
115 SCH_RULE_AREA::UpdateRuleAreasInScreens( all_screens, nullptr );
116
117 m_schematic.ConnectionGraph()->Recalculate( sheets, true );
118}
119
120
121wxFileName KI_TEST::SCHEMATIC_TEST_FIXTURE::GetSchematicPath( const wxString& aBaseName )
122{
123 wxFileName fn( KI_TEST::GetEeschemaTestDataDir() );
124 fn.AppendDir( "netlists" );
125 fn.AppendDir( aBaseName );
126 fn.SetName( aBaseName );
128
129 return fn;
130}
131
132
133template <typename Exporter>
135{
136 wxFileName netFile = m_schematic.Prj().GetProjectFullName();
137
138 if( aTest )
139 netFile.SetName( netFile.GetName() + "_test" );
140
141 netFile.SetExt( FILEEXT::NetlistFileExtension );
142
143 return netFile.GetFullPath();
144}
145
146
147template <typename Exporter>
149{
150 // In case of a crash the file may not have been deleted.
151 if( wxFileExists( GetNetlistPath( true ) ) )
152 wxRemoveFile( GetNetlistPath( true ) );
153
154 WX_STRING_REPORTER reporter;
155 std::unique_ptr<Exporter> exporter = std::make_unique<Exporter>( &m_schematic );
156
157 bool success = exporter->WriteNetlist( GetNetlistPath( true ), GetNetlistOptions(), reporter );
158
159 BOOST_REQUIRE( success && reporter.GetMessages().IsEmpty() );
160}
161
162
163template <typename Exporter>
165{
166 wxRemoveFile( GetNetlistPath( true ) );
167 m_schematic.Reset();
168}
169
170
171template <typename Exporter>
173{
174 LoadSchematic( aBaseName );
175 WriteNetlist();
176 CompareNetlists();
177 Cleanup();
178}
179
180
virtual void LoadSchematic(const wxString &aRelativePath)
virtual wxFileName GetSchematicPath(const wxString &aBaseName)
A factory which returns an instance of a SCH_IO.
Definition: sch_io_mgr.h:51
static std::vector< std::pair< SCH_RULE_AREA *, SCH_SCREEN * > > UpdateRuleAreasInScreens(std::unordered_set< SCH_SCREEN * > &screens, KIGFX::SCH_VIEW *view)
Updates 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:712
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...
void TestNetlist(const wxString &aBaseName)
virtual wxString GetNetlistPath(bool aTest=false)
A wrapper for reporting to a wxString object.
Definition: reporter.h:171
const wxString & GetMessages() const
Definition: reporter.cpp:84
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.
Definition of file extensions used in Kicad.