KiCad PCB EDA Suite
Loading...
Searching...
No Matches
test_easyedapro_import.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
28
32
34
35#include <footprint.h>
36#include <pad.h>
37
38
45
46
47BOOST_FIXTURE_TEST_SUITE( EasyedaproImport, EASYEDAPRO_IMPORT_FIXTURE )
48
49
50
55BOOST_AUTO_TEST_CASE( PolygonPadImport )
56{
57 std::string dataPath = KI_TEST::GetPcbnewTestDataDir()
58 + "plugins/easyedapro/PDFN-8_L3.2-W3.1-P0.65-LS3.4-BL-EP2.efoo";
59
60 wxString fpName = wxS( "PDFN-8_L3.2-W3.1-P0.65-LS3.4-BL-EP2" );
61 FOOTPRINT* fp = plugin.FootprintLoad( dataPath, fpName, false, nullptr );
62
63 BOOST_REQUIRE( fp );
64
65 // The footprint should have 10 pads: 8 numbered pads plus 2 polygon-shaped pads (9 and 10)
66 BOOST_CHECK_EQUAL( fp->Pads().size(), 10 );
67
68 // Find the polygon pads (pads 9 and 10 in the test file)
69 PAD* pad9 = fp->FindPadByNumber( "9" );
70 PAD* pad10 = fp->FindPadByNumber( "10" );
71
72 BOOST_REQUIRE( pad9 );
73 BOOST_REQUIRE( pad10 );
74
75 // These pads should be custom shape (POLYGON in EasyEDA Pro becomes CUSTOM in KiCad)
76 BOOST_CHECK_EQUAL( static_cast<int>( pad9->GetShape( PADSTACK::ALL_LAYERS ) ),
77 static_cast<int>( PAD_SHAPE::CUSTOM ) );
78 BOOST_CHECK_EQUAL( static_cast<int>( pad10->GetShape( PADSTACK::ALL_LAYERS ) ),
79 static_cast<int>( PAD_SHAPE::CUSTOM ) );
80
81 // Check that primitives were added to the custom pads
82 BOOST_CHECK( !pad9->GetPrimitives( PADSTACK::ALL_LAYERS ).empty() );
83 BOOST_CHECK( !pad10->GetPrimitives( PADSTACK::ALL_LAYERS ).empty() );
84
85 delete fp;
86}
87
88
General utilities for PCB file IO for QA programs.
std::deque< PAD * > & Pads()
Definition footprint.h:306
PAD * FindPadByNumber(const wxString &aPadNumber, PAD *aSearchAfterMe=nullptr) const
Return a PAD with a matching number.
static constexpr PCB_LAYER_ID ALL_LAYERS
! Temporary layer identifier to identify code that is not padstack-aware
Definition padstack.h:177
Definition pad.h:55
const std::vector< std::shared_ptr< PCB_SHAPE > > & GetPrimitives(PCB_LAYER_ID aLayer) const
Accessor to the basic shape list for custom-shaped pads.
Definition pad.h:377
PAD_SHAPE GetShape(PCB_LAYER_ID aLayer) const
Definition pad.h:196
std::string GetPcbnewTestDataDir()
Utility which returns a path to the data directory where the test board files are stored.
BOOST_AUTO_TEST_CASE(HorizontalAlignment)
BOOST_REQUIRE(intersection.has_value()==c.ExpectedIntersection.has_value())
BOOST_AUTO_TEST_SUITE_END()
BOOST_CHECK_EQUAL(result, "25.4")