4 changed files with 111 additions and 2 deletions
-
2qa/common/CMakeLists.txt
-
2qa/common/plugins/altium/test_altium_parser.cpp
-
2qa/eeschema/CMakeLists.txt
-
107qa/eeschema/sch_plugins/altium/test_altium_parser_sch.cpp
@ -0,0 +1,107 @@ |
|||
/*
|
|||
* This program source code file is part of KiCad, a free EDA CAD application. |
|||
* |
|||
* Copyright (C) 2021 KiCad Developers, see CHANGELOG.TXT for contributors. |
|||
* |
|||
* This program is free software; you can redistribute it and/or |
|||
* modify it under the terms of the GNU General Public License |
|||
* as published by the Free Software Foundation; either version 2 |
|||
* of the License, or (at your option) any later version. |
|||
* |
|||
* This program is distributed in the hope that it will be useful, |
|||
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
|||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|||
* GNU General Public License for more details. |
|||
* |
|||
* You should have received a copy of the GNU General Public License |
|||
* along with this program; if not, you may find one here: |
|||
* http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
|
|||
* or you may search the http://www.gnu.org website for the version 2 license,
|
|||
* or you may write to the Free Software Foundation, Inc., |
|||
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA |
|||
*/ |
|||
|
|||
/**
|
|||
* @file test_altium_parser_sch.cpp |
|||
* Test suite for #ALTIUM_PARSER_SCH |
|||
*/ |
|||
|
|||
#include <unit_test_utils/unit_test_utils.h>
|
|||
|
|||
#include <eeschema/sch_plugins/altium/altium_parser_sch.h>
|
|||
|
|||
// Function declarations of private methods to test
|
|||
int PropertiesReadKiCadUnitFrac( const std::map<wxString, wxString>& aProperties, |
|||
const wxString& aKey ); |
|||
|
|||
|
|||
struct ALTIUM_PARSER_SCH_FIXTURE |
|||
{ |
|||
ALTIUM_PARSER_SCH_FIXTURE() {} |
|||
}; |
|||
|
|||
|
|||
/**
|
|||
* Declares the struct as the Boost test fixture. |
|||
*/ |
|||
BOOST_FIXTURE_TEST_SUITE( AltiumParserSch, ALTIUM_PARSER_SCH_FIXTURE ) |
|||
|
|||
struct ALTIUM_TO_KICAD_UNIT_FRAC_CASE |
|||
{ |
|||
wxString input; |
|||
wxString input_frac; |
|||
int exp_result; |
|||
}; |
|||
|
|||
/**
|
|||
* A list of valid internal unit conversation factors |
|||
*/ |
|||
static const std::vector<ALTIUM_TO_KICAD_UNIT_FRAC_CASE> altium_to_kicad_unit_frac = { |
|||
// Some simple values
|
|||
{ "0", "0", 0 }, |
|||
{ "1", "0", 2540 }, |
|||
{ "2", "0", 5080 }, |
|||
{ "-1", "0", -2540 }, |
|||
{ "-2", "0", -5080 }, |
|||
// Decimal Places
|
|||
{ "0", "1", 0 }, |
|||
{ "0", "10", 0 }, |
|||
{ "0", "100", 2 }, |
|||
{ "0", "1000", 25 }, |
|||
{ "0", "10000", 254 }, |
|||
{ "1", "10000", 2794 }, |
|||
{ "0", "-1", 0 }, |
|||
{ "0", "-10", 0 }, |
|||
{ "0", "-100", -2 }, |
|||
{ "0", "-1000", -25 }, |
|||
{ "0", "-10000", -254 }, |
|||
{ "-1", "-10000", -2794 }, |
|||
// Edge Cases
|
|||
// Clamp bigger values
|
|||
// imperial rounded units as input
|
|||
// metric rounded units as input
|
|||
}; |
|||
|
|||
/**
|
|||
* Test conversation from Altium internal units into KiCad internal units using properties with FRAC |
|||
*/ |
|||
BOOST_AUTO_TEST_CASE( PropertiesReadKiCadUnitFracConversation ) |
|||
{ |
|||
for( const auto& c : altium_to_kicad_unit_frac ) |
|||
{ |
|||
BOOST_TEST_CONTEXT( |
|||
wxString::Format( wxT( "%s FRAC %s -> %i" ), c.input, c.input_frac, c.exp_result ) ) |
|||
{ |
|||
std::map<wxString, wxString> properties = { { "TEST", c.input }, |
|||
{ "TEST_FRAC", c.input_frac } }; |
|||
|
|||
int result = PropertiesReadKiCadUnitFrac( properties, "TEST" ); |
|||
|
|||
// These are all valid
|
|||
BOOST_CHECK_EQUAL( result, c.exp_result ); |
|||
} |
|||
} |
|||
} |
|||
|
|||
|
|||
BOOST_AUTO_TEST_SUITE_END() |
|||
Write
Preview
Loading…
Cancel
Save
Reference in new issue