2021-09-05 15:06:12 +00:00
|
|
|
/*
|
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2021 KiCad Developers, see AUTHORS.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
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <qa_utils/wx_utils/unit_test_utils.h>
|
2022-03-18 20:05:15 +00:00
|
|
|
#include <pcbnew_utils/board_test_utils.h>
|
2021-09-05 15:06:12 +00:00
|
|
|
#include <board.h>
|
|
|
|
#include <board_design_settings.h>
|
|
|
|
#include <pcb_marker.h>
|
|
|
|
#include <drc/drc_item.h>
|
|
|
|
#include <settings/settings_manager.h>
|
|
|
|
|
|
|
|
|
|
|
|
struct DRC_REGRESSION_TEST_FIXTURE
|
|
|
|
{
|
|
|
|
DRC_REGRESSION_TEST_FIXTURE() :
|
|
|
|
m_settingsManager( true /* headless */ )
|
|
|
|
{ }
|
|
|
|
|
|
|
|
SETTINGS_MANAGER m_settingsManager;
|
|
|
|
std::unique_ptr<BOARD> m_board;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
BOOST_FIXTURE_TEST_CASE( DRCCustomRuleSeverityTest, DRC_REGRESSION_TEST_FIXTURE )
|
|
|
|
{
|
|
|
|
// This board has two edge-connectors. There is a custom DRC rule which conditionally
|
|
|
|
// applies to one of them and sets the edge-clearance severity to "ignore". It should
|
|
|
|
// therefore only generate edge-clearance violations for the other edge connector.
|
|
|
|
|
|
|
|
KI_TEST::LoadBoard( m_settingsManager, "severities", m_board );
|
2022-02-11 12:42:09 +00:00
|
|
|
KI_TEST::FillZones( m_board.get() );
|
2021-09-05 15:06:12 +00:00
|
|
|
|
|
|
|
std::vector<DRC_ITEM> violations;
|
|
|
|
BOARD_DESIGN_SETTINGS& bds = m_board->GetDesignSettings();
|
|
|
|
|
2022-01-12 17:09:07 +00:00
|
|
|
// Disable DRC tests not handled in this testcase
|
|
|
|
// These DRC tests are not useful and do not work because they need a footprint library
|
|
|
|
// associated to the board
|
|
|
|
bds.m_DRCSeverities[ DRCE_LIB_FOOTPRINT_ISSUES ] = SEVERITY::RPT_SEVERITY_IGNORE;
|
|
|
|
bds.m_DRCSeverities[ DRCE_LIB_FOOTPRINT_MISMATCH ] = SEVERITY::RPT_SEVERITY_IGNORE;
|
2022-04-23 20:39:00 +00:00
|
|
|
|
|
|
|
// Also disable a couple of footprint checks which throw up errors on this board
|
|
|
|
bds.m_DRCSeverities[ DRCE_FOOTPRINT_TYPE_MISMATCH ] = SEVERITY::RPT_SEVERITY_IGNORE;
|
2022-01-12 17:09:07 +00:00
|
|
|
|
2021-09-05 15:06:12 +00:00
|
|
|
bds.m_DRCEngine->SetViolationHandler(
|
2022-08-15 16:59:34 +00:00
|
|
|
[&]( const std::shared_ptr<DRC_ITEM>& aItem, VECTOR2I aPos, int aLayer )
|
2021-09-05 15:06:12 +00:00
|
|
|
{
|
|
|
|
PCB_MARKER temp( aItem, aPos );
|
|
|
|
|
|
|
|
if( bds.m_DrcExclusions.find( temp.Serialize() ) == bds.m_DrcExclusions.end() )
|
|
|
|
violations.push_back( *aItem );
|
|
|
|
} );
|
|
|
|
|
|
|
|
bds.m_DRCEngine->RunTests( EDA_UNITS::MILLIMETRES, true, false );
|
|
|
|
|
|
|
|
if( violations.size() == 8 )
|
|
|
|
{
|
|
|
|
BOOST_CHECK_EQUAL( 1, 1 ); // quiet "did not check any assertions" warning
|
|
|
|
BOOST_TEST_MESSAGE( "Custom rule severity test passed" );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
BOOST_CHECK_EQUAL( violations.size(), 8 );
|
|
|
|
|
2022-09-19 16:09:59 +00:00
|
|
|
UNITS_PROVIDER unitsProvider( pcbIUScale, EDA_UNITS::INCHES );
|
|
|
|
|
2021-09-05 15:06:12 +00:00
|
|
|
std::map<KIID, EDA_ITEM*> itemMap;
|
|
|
|
m_board->FillItemMap( itemMap );
|
|
|
|
|
|
|
|
for( const DRC_ITEM& item : violations )
|
2022-09-19 16:09:59 +00:00
|
|
|
BOOST_TEST_MESSAGE( item.ShowReport( &unitsProvider, RPT_SEVERITY_ERROR, itemMap ) );
|
2021-09-05 15:06:12 +00:00
|
|
|
|
|
|
|
BOOST_ERROR( "Custom rule severity test failed" );
|
|
|
|
}
|
|
|
|
}
|