mirror of
https://gitlab.com/kicad/code/kicad.git
synced 2024-11-22 04:45:00 +00:00
79 lines
2.7 KiB
C++
79 lines
2.7 KiB
C++
/*
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
*
|
|
* Copyright (C) 2022 Jon Evans <jon@craftyjon.com>
|
|
* Copyright (C) 2022 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 <fmt/core.h>
|
|
#include <boost/test/unit_test.hpp>
|
|
|
|
#include <database/database_connection.h>
|
|
|
|
BOOST_AUTO_TEST_SUITE( Database )
|
|
|
|
|
|
BOOST_AUTO_TEST_CASE( Connect )
|
|
{
|
|
std::string cs = fmt::format( "Driver={{SQLite3}};Database={}/database.sqlite",
|
|
QA_DATABASE_FILE_LOCATION );
|
|
|
|
// Construct and connect
|
|
DATABASE_CONNECTION dc( cs, 2, false );
|
|
BOOST_CHECK_NO_THROW( dc.Connect() );
|
|
BOOST_CHECK( dc.IsConnected() );
|
|
|
|
dc.Disconnect();
|
|
BOOST_CHECK( !dc.IsConnected() );
|
|
|
|
dc.Connect();
|
|
BOOST_CHECK( dc.IsConnected() );
|
|
|
|
dc.Disconnect();
|
|
|
|
// Scoped connection should self-disconnect
|
|
{
|
|
DATABASE_CONNECTION dc2( cs, 2 );
|
|
}
|
|
|
|
dc.Connect();
|
|
dc.CacheTableInfo( "Resistors", { "Part ID", "MPN" } );
|
|
dc.CacheTableInfo( "Capacitors", { "Part ID", "Cost" } );
|
|
BOOST_CHECK( dc.IsConnected() );
|
|
|
|
DATABASE_CONNECTION::ROW result;
|
|
|
|
BOOST_CHECK( dc.SelectOne( "Resistors", std::make_pair( "Part ID", "RES-001" ), result ) );
|
|
|
|
BOOST_CHECK( !result.empty() );
|
|
BOOST_CHECK( result.count( "MPN" ) );
|
|
BOOST_CHECK_NO_THROW( std::any_cast<std::string>( result.at( "MPN" ) ) );
|
|
BOOST_CHECK_EQUAL( std::any_cast<std::string>( result.at( "MPN" ) ), "RC0603FR-0710KL" );
|
|
|
|
BOOST_CHECK( dc.SelectOne( "Capacitors", std::make_pair( "Part ID", "CAP-003" ), result ) );
|
|
|
|
BOOST_CHECK( !result.empty() );
|
|
BOOST_CHECK( result.count( "Cost" ) );
|
|
BOOST_CHECK_NO_THROW( std::any_cast<std::string>( result.at( "Cost" ) ) );
|
|
BOOST_CHECK_EQUAL( std::any_cast<std::string>( result.at( "Cost" ) ), "1.95" );
|
|
}
|
|
|
|
BOOST_AUTO_TEST_SUITE_END()
|