AlexaClientSDK
3.0.0
A cross-platform, modular SDK for interacting with the Alexa Voice Service
|
Test cases for CodecUtils. More...
Functions | |
TEST (Base64InternalCodecTest, test_base64EncodeEmpty) | |
TEST (Base64InternalCodecTest, test_base64EncodeAppend) | |
TEST (Base64InternalCodecTest, test_base64EncodeTestStr) | |
TEST (Base64InternalCodecTest, test_base64DecodeEmpty) | |
TEST (Base64InternalCodecTest, test_base64DecodeAppend) | |
TEST (Base64InternalCodecTest, test_base64DecodeTestStr) | |
TEST (Base64InternalCodecTest, test_base64DecodeAppendWhitespace) | |
TEST (Base64InternalCodecTest, test_base64DecodeError) | |
TEST (Base64InternalCodecTest, test_base64DecodeErrorBadTail) | |
TEST (Base64InternalCodecTest, test_base64DecodeErrorDataAfterEnd) | |
TEST (Base64InternalCodecTest, test_base64DecodeErrorEarlyEnd) | |
TEST (HexCodecTest, test_hexDecode) | |
TEST (HexCodecTest, test_hexDecodeAFLowerCase) | |
TEST (HexCodecTest, test_hexDecodeAFUpperCase) | |
TEST (HexCodecTest, test_hexDecodeAFMixedCase) | |
TEST (HexCodecTest, test_hexDecodeTestStringUpperCase) | |
TEST (HexCodecTest, test_hexDecodeTestStringLowerCase) | |
TEST (HexCodecTest, test_hexDecodeAppend) | |
TEST (HexCodecTest, test_hexDecodeBadSize) | |
TEST (HexCodecTest, test_hexDecodeBadChar) | |
TEST (HexCodecTest, test_hexEncode) | |
TEST (HexCodecTest, test_hexEncodeAppend) | |
TEST (HexCodecTest, test_hexEncodeAF) | |
TEST (HexCodecTest, test_hexEncodeTestString) | |
TEST (HexCodecTest, test_hexDecodeWithWhitespace) | |
Variables | |
static const std::string | TEST_STR {"A quick brown fox jumps over the lazy dog."} |
static const std::string | TEST_STR_B64 {"QSBxdWljayBicm93biBmb3gganVtcHMgb3ZlciB0aGUgbGF6eSBkb2cu"} |
const std::string | HEX_STR = "0123456789" |
const Bytes | HEX_STR_BINARY {0x01, 0x23, 0x45, 0x67, 0x89} |
const Bytes | HEX_STR_BINARY2 {0x01, 0x23, 0x45, 0x67, 0x89, 0x01, 0x23, 0x45, 0x67, 0x89} |
static const std::string | TEST_STR {"A quick brown fox jumps over the lazy dog."} |
static const std::string | TEST_STR_HEX_U |
static const std::string | TEST_STR_HEX_L |
Test cases for CodecUtils.
alexaClientSDK::codecUtils::test::TEST | ( | Base64InternalCodecTest | , |
test_base64EncodeEmpty | |||
) |
alexaClientSDK::codecUtils::test::TEST | ( | Base64InternalCodecTest | , |
test_base64EncodeAppend | |||
) |
alexaClientSDK::codecUtils::test::TEST | ( | HexCodecTest | , |
test_hexDecode | |||
) |
alexaClientSDK::codecUtils::test::TEST | ( | Base64InternalCodecTest | , |
test_base64EncodeTestStr | |||
) |
alexaClientSDK::codecUtils::test::TEST | ( | HexCodecTest | , |
test_hexDecodeAFLowerCase | |||
) |
alexaClientSDK::codecUtils::test::TEST | ( | Base64InternalCodecTest | , |
test_base64DecodeEmpty | |||
) |
alexaClientSDK::codecUtils::test::TEST | ( | HexCodecTest | , |
test_hexDecodeAFUpperCase | |||
) |
alexaClientSDK::codecUtils::test::TEST | ( | Base64InternalCodecTest | , |
test_base64DecodeAppend | |||
) |
alexaClientSDK::codecUtils::test::TEST | ( | HexCodecTest | , |
test_hexDecodeAFMixedCase | |||
) |
alexaClientSDK::codecUtils::test::TEST | ( | Base64InternalCodecTest | , |
test_base64DecodeTestStr | |||
) |
alexaClientSDK::codecUtils::test::TEST | ( | HexCodecTest | , |
test_hexDecodeTestStringUpperCase | |||
) |
alexaClientSDK::codecUtils::test::TEST | ( | Base64InternalCodecTest | , |
test_base64DecodeAppendWhitespace | |||
) |
alexaClientSDK::codecUtils::test::TEST | ( | Base64InternalCodecTest | , |
test_base64DecodeError | |||
) |
alexaClientSDK::codecUtils::test::TEST | ( | HexCodecTest | , |
test_hexDecodeTestStringLowerCase | |||
) |
alexaClientSDK::codecUtils::test::TEST | ( | Base64InternalCodecTest | , |
test_base64DecodeErrorBadTail | |||
) |
alexaClientSDK::codecUtils::test::TEST | ( | HexCodecTest | , |
test_hexDecodeAppend | |||
) |
alexaClientSDK::codecUtils::test::TEST | ( | Base64InternalCodecTest | , |
test_base64DecodeErrorDataAfterEnd | |||
) |
alexaClientSDK::codecUtils::test::TEST | ( | HexCodecTest | , |
test_hexDecodeBadSize | |||
) |
alexaClientSDK::codecUtils::test::TEST | ( | Base64InternalCodecTest | , |
test_base64DecodeErrorEarlyEnd | |||
) |
alexaClientSDK::codecUtils::test::TEST | ( | HexCodecTest | , |
test_hexDecodeBadChar | |||
) |
alexaClientSDK::codecUtils::test::TEST | ( | HexCodecTest | , |
test_hexEncode | |||
) |
alexaClientSDK::codecUtils::test::TEST | ( | HexCodecTest | , |
test_hexEncodeAppend | |||
) |
alexaClientSDK::codecUtils::test::TEST | ( | HexCodecTest | , |
test_hexEncodeAF | |||
) |
alexaClientSDK::codecUtils::test::TEST | ( | HexCodecTest | , |
test_hexEncodeTestString | |||
) |
alexaClientSDK::codecUtils::test::TEST | ( | HexCodecTest | , |
test_hexDecodeWithWhitespace | |||
) |
const std::string alexaClientSDK::codecUtils::test::HEX_STR = "0123456789" |
const Bytes alexaClientSDK::codecUtils::test::HEX_STR_BINARY {0x01, 0x23, 0x45, 0x67, 0x89} |
const Bytes alexaClientSDK::codecUtils::test::HEX_STR_BINARY2 {0x01, 0x23, 0x45, 0x67, 0x89, 0x01, 0x23, 0x45, 0x67, 0x89} |
|
static |
|
static |
|
static |
|
static |
|
static |
AlexaClientSDK 3.0.0 - Copyright 2016-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0