This part of the effort to make all test related pieces into the `test` directory. This helps is excluding test related pieces in a straight forward manner if LLVM_INCLUDE_TESTS is OFF. Future patches will also move the MPFR wrapper and testutils into the 'test' directory.
47 lines
2.0 KiB
C++
47 lines
2.0 KiB
C++
//===-- 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 "test/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));
|
|
}
|