strnlen_test.cpp
1.98 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
//===-- 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));
}