/
GitCaptain
/
llvm-project
Обзор
Документация
Войти
/
GitCaptain
/
llvm-project
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
fix-tests
libc/test/src/string/strnlen_test.cpp
46 строк
2 KB
Michael Jones
[libc][NFC] add "LlvmLibc" as a prefix to all test names
21 янв 2021, 02:15
21 янв 2021, 02:15
1df0dbf
Код
Авторство
О чём код?
//===-- Unittests for strnlen ---------------------------------------------===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // //===----------------------------------------------------------------------===// #include "src/string/strnlen.h" #include "utils/UnitTest/Test.h" #include <stddef.h> TEST(LlvmLibcStrNLenTest, EmptyString) { const char *empty = ""; ASSERT_EQ(static_cast<size_t>(0), __llvm_libc::strnlen(empty, 0)); // If N is greater than string length, this should still return 0. ASSERT_EQ(static_cast<size_t>(0), __llvm_libc::strnlen(empty, 1)); } TEST(LlvmLibcStrNLenTest, OneCharacterString) { const char *single = "X"; ASSERT_EQ(static_cast<size_t>(1), __llvm_libc::strnlen(single, 1)); // If N is zero, this should return 0. ASSERT_EQ(static_cast<size_t>(0), __llvm_libc::strnlen(single, 0)); // If N is greater than string length, this should still return 1. ASSERT_EQ(static_cast<size_t>(1), __llvm_libc::strnlen(single, 2)); } TEST(LlvmLibcStrNLenTest, ManyCharacterString) { const char *many = "123456789"; ASSERT_EQ(static_cast<size_t>(9), __llvm_libc::strnlen(many, 9)); // If N is smaller than the string length, it should return N. ASSERT_EQ(static_cast<size_t>(3), __llvm_libc::strnlen(many, 3)); // If N is zero, this should return 0. ASSERT_EQ(static_cast<size_t>(0), __llvm_libc::strnlen(many, 0)); // If N is greater than the string length, this should still return 9. ASSERT_EQ(static_cast<size_t>(9), __llvm_libc::strnlen(many, 42)); } TEST(LlvmLibcStrNLenTest, CharactersAfterNullTerminatorShouldNotBeIncluded) { const char str[5] = {'a', 'b', 'c', '\0', 'd'}; ASSERT_EQ(static_cast<size_t>(3), __llvm_libc::strnlen(str, 3)); // This should only read up to the null terminator. ASSERT_EQ(static_cast<size_t>(3), __llvm_libc::strnlen(str, 4)); ASSERT_EQ(static_cast<size_t>(3), __llvm_libc::strnlen(str, 5)); }