Files moved, - boringssl_certificate.h - buffer_queue.h - byte_buffer.h - data_rate_limiter.h - recursive_critical_section.h - dscp.h - file_rotating_stream.h - ifaddrs_converter.h - log_sinks.h - fifo_buffer.h - memory_stream.h - message_digest.h - win32.h - rate_tracker.h - openssl_digest.h - openssl_key_pair.h - memory_usage.h - ssl_certificate.h - ssl_adapter.h - platform_thread_types.h - ssl_fingerprint.h - cpu_time.h - proxy_server.h - boringssl_identity.h - string_utils.h - default_socket_server.h - openssl_session_cache.h - net_helpers.h - network.h - network_monitor_factory.h - network_route.h - sent_packet.h - openssl_adapter.h - openssl_stream_adapter.h - operations_chain.h - net_helper.h No-Iwyu: ssl and socket related files don't play well it include cleaner Bug: webrtc:42232595 Change-Id: I949cf4e8be6dab99ce170d8c7388c84fdcdd6447 Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/382520 Reviewed-by: Harald Alvestrand <hta@webrtc.org> Commit-Queue: Evan Shrubsole <eshr@webrtc.org> Cr-Commit-Position: refs/heads/main@{#44274}
62 lines
1.7 KiB
C++
62 lines
1.7 KiB
C++
/*
|
|
* Copyright 2004 The WebRTC Project Authors. All rights reserved.
|
|
*
|
|
* Use of this source code is governed by a BSD-style license
|
|
* that can be found in the LICENSE file in the root of the source
|
|
* tree. An additional intellectual property rights grant can be found
|
|
* in the file PATENTS. All contributing project authors may
|
|
* be found in the AUTHORS file in the root of the source tree.
|
|
*/
|
|
|
|
#include "rtc_base/string_utils.h"
|
|
|
|
#include <string>
|
|
|
|
#include "test/gtest.h"
|
|
|
|
namespace webrtc {
|
|
|
|
TEST(string_toHexTest, ToHex) {
|
|
EXPECT_EQ(ToHex(0), "0");
|
|
EXPECT_EQ(ToHex(0X1243E), "1243e");
|
|
EXPECT_EQ(ToHex(-20), "ffffffec");
|
|
}
|
|
|
|
#if defined(WEBRTC_WIN)
|
|
|
|
TEST(string_toutf, Empty) {
|
|
char empty_string[] = "";
|
|
EXPECT_TRUE(ToUtf16(empty_string, 0u).empty());
|
|
wchar_t empty_wchar[] = L"";
|
|
EXPECT_TRUE(ToUtf8(empty_wchar, 0u).empty());
|
|
}
|
|
|
|
#endif // WEBRTC_WIN
|
|
|
|
TEST(CompileTimeString, MakeActsLikeAString) {
|
|
EXPECT_STREQ(MakeCompileTimeString("abc123"), "abc123");
|
|
}
|
|
|
|
TEST(CompileTimeString, ConvertibleToStdString) {
|
|
EXPECT_EQ(std::string(MakeCompileTimeString("abab")), "abab");
|
|
}
|
|
|
|
namespace detail {
|
|
constexpr bool StringEquals(const char* a, const char* b) {
|
|
while (*a && *a == *b)
|
|
a++, b++;
|
|
return *a == *b;
|
|
}
|
|
} // namespace detail
|
|
|
|
static_assert(detail::StringEquals(MakeCompileTimeString("handellm"),
|
|
"handellm"),
|
|
"String should initialize.");
|
|
|
|
static_assert(detail::StringEquals(MakeCompileTimeString("abc123").Concat(
|
|
MakeCompileTimeString("def456ghi")),
|
|
"abc123def456ghi"),
|
|
"Strings should concatenate.");
|
|
|
|
} // namespace webrtc
|