SmartAudio/package/avs/avs-sdk/files/avs-device-sdk/AVSCommon/Utils/test/StringUtilsTest.cpp

223 lines
6.1 KiB
C++

/*
* Copyright 2018 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0/
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
#include <gtest/gtest.h>
#include <AVSCommon/Utils/String/StringUtils.h>
namespace alexaClientSDK {
namespace avsCommon {
namespace utils {
namespace test {
using namespace alexaClientSDK::avsCommon::utils::string;
/**
* Verify that converting an empty string to an integer fails.
*/
TEST(StringUtilsTest, testEmptyStringFails) {
int result = 0;
ASSERT_FALSE(stringToInt("", &result));
}
/**
* Verify that converting a simple decimal integer string to integer succeeds.
*/
TEST(StringUtilsTest, testSimpleDecimalInteger) {
int result = 0;
ASSERT_TRUE(stringToInt("123", &result));
ASSERT_EQ(123, result);
}
/**
* Verify that converting a negative decimal integer string to integer succeeds.
*/
TEST(StringUtilsTest, testNegativeInt) {
int result = 0;
ASSERT_TRUE(stringToInt("-987654", &result));
ASSERT_EQ(-987654, result);
}
/**
* Verify that converting a decimal integer string with leading whitespace to integer succeeds.
*/
TEST(StringUtilsTest, testInitialWhitespaceSucceeds) {
int result = 0;
ASSERT_TRUE(stringToInt("\t 10101", &result));
ASSERT_EQ(10101, result);
}
/**
* Verify that converting a decimal integer string with trailing whitespace to integer succeeds.
*/
TEST(StringUtilsTest, testTrailingWhitespaceSucceeds) {
int result = 0;
ASSERT_TRUE(stringToInt("982389\t ", &result));
ASSERT_EQ(982389, result);
}
/**
* Verify that converting a decimal integer string with leading and trailing whitespace to integer succeeds.
*/
TEST(StringUtilsTest, testLeadingAndTrailingWhitespaceSucceeds) {
int result = 0;
ASSERT_TRUE(stringToInt(" 982389 ", &result));
ASSERT_EQ(982389, result);
}
/**
* Verify that converting a decimal integer with leading non-whitespace and non-decimal digit characters fails.
*/
TEST(StringUtilsTest, testNonWhitespacePrefixFails) {
int result = 0;
ASSERT_FALSE(stringToInt("a123", &result));
}
/**
* Verify that converting a decimal integer with trailing non-whitespace and non-decimal digit characters fails.
*/
TEST(StringUtilsTest, testNonWhitespaceSuffixFails) {
int result = 0;
ASSERT_FALSE(stringToInt("123a", &result));
}
/**
* Verify that converting a decimal integer with leading and trailing non-whitespace and non-decimal digit
* characters fails.
*/
TEST(StringUtilsTest, testNonWhitespacePrefixAndSuffixFails) {
int result = 0;
ASSERT_FALSE(stringToInt("a123a", &result));
}
/**
* Verify that converting a decimal integer with both leading whitespace and non-whitespace characters fails.
*/
TEST(StringUtilsTest, testNonWhitespaceAndNonWhitespacePrefixFails) {
int result = 0;
ASSERT_FALSE(stringToInt(" e123", &result));
}
/**
* Verify that converting a decimal integer with both trailing whitespace and non-whitespace characters fails.
*/
TEST(StringUtilsTest, testNonWhitespaceAndNonWhitespaceSuffixFails) {
int result = 0;
ASSERT_FALSE(stringToInt("123e ", &result));
}
/**
* Verify that converting a decimal integer with leading and trailing whitespace and non-whitespace characters fails.
*/
TEST(StringUtilsTest, testNonWhitespaceAndNonWhitespacePrefixAndSuffixFails) {
int result = 0;
ASSERT_FALSE(stringToInt(" e123e ", &result));
}
/**
* Verify that converting "0" to integer succeeds.
*/
TEST(StringUtilsTest, testZeroSucceeds) {
int result = -1;
ASSERT_TRUE(stringToInt("0", &result));
ASSERT_EQ(0, result);
}
/**
* Verify that converting a floating string to integer fails.
*/
TEST(StringUtilsTest, testDecimalFloatFails) {
int result = 0;
ASSERT_FALSE(stringToInt("1.234", &result));
}
/**
* Verify that converting an octal integer string si interpreted as decmal with a leading zero.
*/
TEST(StringUtilsTest, testOctalInterpretedAsDecimal) {
int result = 0;
ASSERT_TRUE(stringToInt("0567", &result));
ASSERT_EQ(567, result);
}
/**
* Verify that converting a hex integer string to integer fails.
*/
TEST(StringUtilsTest, testHexIntFails) {
int result = 0;
ASSERT_FALSE(stringToInt("0x321", &result));
}
/**
* Verify that converting a too large integer string to int fails.
*/
TEST(StringUtilsTest, testTooLargeIntFails) {
int result = 0;
ASSERT_FALSE(stringToInt("987654321987654321987654321", &result));
}
/**
* Verify that converting a too small integer string to int fails.
*/
TEST(StringUtilsTest, testTooSmallIntFails) {
int result = 0;
ASSERT_FALSE(stringToInt("-11111111111111111111111111", &result));
}
/**
* Verify that converting a string with multiple numbers in it fails.
*/
TEST(StringUtilsTest, testMultipleNumbers) {
int result = 0;
ASSERT_FALSE(stringToInt("123 123", &result));
ASSERT_FALSE(stringToInt(" 123 123", &result));
ASSERT_FALSE(stringToInt("123 123 ", &result));
ASSERT_FALSE(stringToInt(" 123 123 ", &result));
ASSERT_FALSE(stringToInt("1 2 3", &result));
}
/**
* Verify that converting a empty string to lower case works.
*/
TEST(StringUtilsTest, testToLowerEmptyString) {
ASSERT_EQ(stringToLowerCase(""), "");
}
/**
* Verify that converting a lower case string to lower case works.
*/
TEST(StringUtilsTest, testToLowerCaseString) {
ASSERT_EQ(stringToLowerCase("abc"), "abc");
}
/**
* Verify that converting a Upper case string to lower case works.
*/
TEST(StringUtilsTest, testToUpperCaseString) {
ASSERT_EQ(stringToLowerCase("ABC"), "abc");
}
/**
* Verify that converting a Camel case string to lower case works.
*/
TEST(StringUtilsTest, testToCamelCaseString) {
ASSERT_EQ(stringToLowerCase("AbCd"), "abcd");
}
} // namespace test
} // namespace utils
} // namespace avsCommon
} // namespace alexaClientSDK