9c6f99e0dd
LAYER_RANGE enters an infinite loop when constructed with layer_count < 2. The next_layer() arithmetic underflows, producing unreachable termination values, so the iterator increments forever. This happens during board import when a file produces a board with zero copper layers. Clamp layer_count to a minimum of 2 in the LAYER_RANGE constructor since F_Cu and B_Cu are always present. Add content validation to the Fabmaster plugin, which previously accepted any .txt file based on extension alone. CanReadBoard now scans for !-delimited rows containing known Fabmaster column headers before claiming the file.
182 lines
5.2 KiB
C++
182 lines
5.2 KiB
C++
/*
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
*
|
|
* Copyright The 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 3 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, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
|
|
#define BOOST_TEST_NO_MAIN
|
|
#include <boost/test/unit_test.hpp>
|
|
#include <layer_range.h>
|
|
#include <vector>
|
|
|
|
BOOST_AUTO_TEST_SUITE(LayerRangeTests)
|
|
|
|
BOOST_AUTO_TEST_CASE( ForwardIterationTwoLayers )
|
|
{
|
|
LAYER_RANGE range( F_Cu, B_Cu, 2 );
|
|
std::vector<PCB_LAYER_ID> expected = { F_Cu, B_Cu };
|
|
std::vector<PCB_LAYER_ID> result;
|
|
|
|
for( auto layer : range )
|
|
{
|
|
result.push_back( layer );
|
|
}
|
|
|
|
BOOST_CHECK_EQUAL_COLLECTIONS( result.begin(), result.end(), expected.begin(), expected.end() );
|
|
}
|
|
|
|
BOOST_AUTO_TEST_CASE( ForwardIterationFourLayers )
|
|
{
|
|
LAYER_RANGE range( F_Cu, B_Cu, 4 );
|
|
std::vector<PCB_LAYER_ID> expected = { F_Cu, In1_Cu, In2_Cu, B_Cu };
|
|
std::vector<PCB_LAYER_ID> result;
|
|
|
|
for( auto layer : range )
|
|
{
|
|
result.push_back( layer );
|
|
}
|
|
|
|
BOOST_CHECK_EQUAL_COLLECTIONS( result.begin(), result.end(), expected.begin(), expected.end() );
|
|
}
|
|
|
|
BOOST_AUTO_TEST_CASE( ReverseIterationFourLayers )
|
|
{
|
|
LAYER_RANGE range( B_Cu, F_Cu, 4 );
|
|
std::vector<PCB_LAYER_ID> expected = { B_Cu, In2_Cu, In1_Cu, F_Cu };
|
|
std::vector<PCB_LAYER_ID> result;
|
|
|
|
for( auto layer : range )
|
|
{
|
|
result.push_back( layer );
|
|
}
|
|
|
|
BOOST_CHECK_EQUAL_COLLECTIONS( result.begin(), result.end(), expected.begin(), expected.end() );
|
|
}
|
|
|
|
BOOST_AUTO_TEST_CASE( PartialRangeForward )
|
|
{
|
|
LAYER_RANGE range( In1_Cu, B_Cu, 6 );
|
|
std::vector<PCB_LAYER_ID> expected = { In1_Cu, In2_Cu, In3_Cu, In4_Cu, B_Cu };
|
|
std::vector<PCB_LAYER_ID> result;
|
|
|
|
for( auto layer : range )
|
|
{
|
|
result.push_back( layer );
|
|
}
|
|
|
|
BOOST_CHECK_EQUAL_COLLECTIONS( result.begin(), result.end(), expected.begin(), expected.end() );
|
|
}
|
|
|
|
BOOST_AUTO_TEST_CASE( PartialRangeReverse )
|
|
{
|
|
LAYER_RANGE range( In3_Cu, F_Cu, 6 );
|
|
std::vector<PCB_LAYER_ID> expected = { In3_Cu, In2_Cu, In1_Cu, F_Cu };
|
|
std::vector<PCB_LAYER_ID> result;
|
|
|
|
for( auto layer : range )
|
|
{
|
|
result.push_back( layer );
|
|
}
|
|
|
|
BOOST_CHECK_EQUAL_COLLECTIONS( result.begin(), result.end(), expected.begin(), expected.end() );
|
|
}
|
|
|
|
BOOST_AUTO_TEST_CASE( InvalidLayerThrowsException )
|
|
{
|
|
BOOST_CHECK_THROW( LAYER_RANGE( F_Mask, B_Cu, 4 ), std::invalid_argument );
|
|
BOOST_CHECK_THROW( LAYER_RANGE( F_Cu, B_Mask, 4 ), std::invalid_argument );
|
|
}
|
|
|
|
BOOST_AUTO_TEST_CASE( SingleLayerRange )
|
|
{
|
|
LAYER_RANGE range( In2_Cu, In2_Cu, 6 );
|
|
std::vector<PCB_LAYER_ID> expected = { In2_Cu };
|
|
std::vector<PCB_LAYER_ID> result;
|
|
|
|
for( auto layer : range )
|
|
{
|
|
result.push_back( layer );
|
|
}
|
|
|
|
BOOST_CHECK_EQUAL_COLLECTIONS( result.begin(), result.end(), expected.begin(), expected.end() );
|
|
}
|
|
|
|
BOOST_AUTO_TEST_CASE( ZeroLayerCountClampedToTwo )
|
|
{
|
|
LAYER_RANGE range( F_Cu, B_Cu, 0 );
|
|
std::vector<PCB_LAYER_ID> expected = { F_Cu, B_Cu };
|
|
std::vector<PCB_LAYER_ID> result;
|
|
|
|
for( auto layer : range )
|
|
{
|
|
result.push_back( layer );
|
|
}
|
|
|
|
BOOST_CHECK_EQUAL_COLLECTIONS( result.begin(), result.end(), expected.begin(), expected.end() );
|
|
}
|
|
|
|
BOOST_AUTO_TEST_CASE( OneLayerCountClampedToTwo )
|
|
{
|
|
LAYER_RANGE range( F_Cu, B_Cu, 1 );
|
|
std::vector<PCB_LAYER_ID> expected = { F_Cu, B_Cu };
|
|
std::vector<PCB_LAYER_ID> result;
|
|
|
|
for( auto layer : range )
|
|
{
|
|
result.push_back( layer );
|
|
}
|
|
|
|
BOOST_CHECK_EQUAL_COLLECTIONS( result.begin(), result.end(), expected.begin(), expected.end() );
|
|
}
|
|
|
|
BOOST_AUTO_TEST_CASE( NegativeLayerCountClampedToTwo )
|
|
{
|
|
LAYER_RANGE range( F_Cu, B_Cu, -5 );
|
|
std::vector<PCB_LAYER_ID> expected = { F_Cu, B_Cu };
|
|
std::vector<PCB_LAYER_ID> result;
|
|
|
|
for( auto layer : range )
|
|
{
|
|
result.push_back( layer );
|
|
}
|
|
|
|
BOOST_CHECK_EQUAL_COLLECTIONS( result.begin(), result.end(), expected.begin(), expected.end() );
|
|
}
|
|
|
|
BOOST_AUTO_TEST_CASE( MaxLayerCount )
|
|
{
|
|
LAYER_RANGE range( F_Cu, B_Cu, PCB_LAYER_ID_COUNT );
|
|
std::vector<PCB_LAYER_ID> expected = { F_Cu };
|
|
|
|
|
|
for( int i = In1_Cu; i < 2 * PCB_LAYER_ID_COUNT; i += 2 )
|
|
{
|
|
expected.push_back( static_cast<PCB_LAYER_ID>( i ) );
|
|
}
|
|
expected.push_back( B_Cu );
|
|
|
|
std::vector<PCB_LAYER_ID> result;
|
|
for( auto layer : range )
|
|
{
|
|
result.push_back( layer );
|
|
}
|
|
|
|
BOOST_CHECK_EQUAL_COLLECTIONS( result.begin(), result.end(), expected.begin(), expected.end() );
|
|
}
|
|
|
|
BOOST_AUTO_TEST_SUITE_END()
|