2012-01-23 00:52:05 +00:00
|
|
|
/*!
|
|
|
|
* \file string_converter_test.cc
|
|
|
|
* \brief This file implements unit tests for the valve custom block.
|
|
|
|
* \author Carlos Aviles, 2010. carlos.avilesr(at)googlemail.com
|
|
|
|
* Carles Fernandez-Prades, 2012. cfernandez(at)cttc.es
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* -------------------------------------------------------------------------
|
|
|
|
*
|
|
|
|
* Copyright (C) 2010-2012 (see AUTHORS file for a list of contributors)
|
|
|
|
*
|
|
|
|
* GNSS-SDR is a software defined Global Navigation
|
|
|
|
* Satellite Systems receiver
|
|
|
|
*
|
|
|
|
* This file is part of GNSS-SDR.
|
2011-10-01 18:45:20 +00:00
|
|
|
*
|
2012-01-23 00:52:05 +00:00
|
|
|
* GNSS-SDR 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.
|
|
|
|
*
|
|
|
|
* GNSS-SDR 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 GNSS-SDR. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
* -------------------------------------------------------------------------
|
2011-10-01 18:45:20 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <gtest/gtest.h>
|
|
|
|
#include "string_converter.h"
|
|
|
|
|
|
|
|
|
|
|
|
|
2012-01-23 00:52:05 +00:00
|
|
|
TEST(String_Converter_Test, StringToBool)
|
|
|
|
{
|
2012-01-25 03:16:08 +00:00
|
|
|
StringConverter* converter;
|
|
|
|
converter = new StringConverter();
|
2012-01-23 00:52:05 +00:00
|
|
|
bool conversion_result = converter->convert("false", true);
|
|
|
|
EXPECT_EQ(false, conversion_result);
|
|
|
|
delete converter;
|
2011-10-01 18:45:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-01-23 00:52:05 +00:00
|
|
|
TEST(String_Converter_Test, StringToSizeT)
|
|
|
|
{
|
2012-01-25 03:16:08 +00:00
|
|
|
StringConverter* converter;
|
|
|
|
converter = new StringConverter();
|
2012-01-23 00:52:05 +00:00
|
|
|
size_t conversion_result = converter->convert("8", 1);
|
2012-01-25 03:16:08 +00:00
|
|
|
unsigned int expected = 8;
|
|
|
|
EXPECT_EQ(expected, conversion_result);
|
2012-01-23 00:52:05 +00:00
|
|
|
delete converter;
|
2011-10-01 18:45:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2012-01-23 00:52:05 +00:00
|
|
|
TEST(String_Converter_Test, StringToBoolFail)
|
|
|
|
{
|
2012-01-25 03:16:08 +00:00
|
|
|
StringConverter* converter;
|
|
|
|
converter = new StringConverter();
|
2012-01-23 00:52:05 +00:00
|
|
|
bool conversion_result = converter->convert("lse", true);
|
|
|
|
EXPECT_EQ(true, conversion_result);
|
|
|
|
delete converter;
|
2011-10-01 18:45:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2012-01-23 00:52:05 +00:00
|
|
|
TEST(String_Converter_Test, StringToSizeTFail)
|
|
|
|
{
|
2012-01-25 03:16:08 +00:00
|
|
|
StringConverter* converter;
|
|
|
|
converter = new StringConverter();
|
2012-01-23 00:52:05 +00:00
|
|
|
size_t conversion_result = converter->convert("false", 1);
|
2012-01-25 03:16:08 +00:00
|
|
|
unsigned int expected1 = 1;
|
|
|
|
EXPECT_EQ(expected1, conversion_result);
|
2012-01-23 00:52:05 +00:00
|
|
|
delete converter;
|
|
|
|
}
|