blob: dbb957f29fd05c83fa1c373420b1af93e706ae4b [file] [log] [blame]
//===-- Unittests for readlink --------------------------------------------===//
//
// 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/__support/CPP/string_view.h"
#include "src/errno/libc_errno.h"
#include "src/unistd/readlink.h"
#include "src/unistd/symlink.h"
#include "src/unistd/unlink.h"
#include "test/UnitTest/ErrnoSetterMatcher.h"
#include "test/UnitTest/Test.h"
namespace cpp = __llvm_libc::cpp;
TEST(LlvmLibcReadlinkTest, CreateAndUnlink) {
using __llvm_libc::testing::ErrnoSetterMatcher::Succeeds;
constexpr const char LINK_VAL[] = "readlink_test_value";
constexpr const char LINK[] = "testdata/readlink.test.link";
libc_errno = 0;
// The test strategy is as follows:
// 1. Create a symlink with value LINK_VAL.
// 2. Read the symlink with readlink. The link value read should be LINK_VAL
// 3. Cleanup the symlink created in step #1.
ASSERT_THAT(__llvm_libc::symlink(LINK_VAL, LINK), Succeeds(0));
char buf[sizeof(LINK_VAL)];
ssize_t len = __llvm_libc::readlink(LINK, buf, sizeof(buf));
ASSERT_EQ(libc_errno, 0);
ASSERT_EQ(cpp::string_view(buf, len), cpp::string_view(LINK_VAL));
ASSERT_THAT(__llvm_libc::unlink(LINK), Succeeds(0));
}
TEST(LlvmLibcReadlinkTest, ReadlinkInNonExistentPath) {
using __llvm_libc::testing::ErrnoSetterMatcher::Fails;
char buf[8];
ASSERT_THAT(__llvm_libc::readlink("non-existent-link", buf, sizeof(buf)),
Fails(ENOENT));
}