strnlen_test.cpp 1.98 KB
//===-- 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(StrNLenTest, 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(StrNLenTest, 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(StrNLenTest, 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(StrNLenTest, 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));
}