#include "base/profiler/stack_base_address_posix.h"
#include "base/numerics/clamped_math.h"
#include "base/process/process_handle.h"
#include "build/build_config.h"
#include "testing/gmock/include/gmock/gmock.h"
#include "testing/gtest/include/gtest/gtest.h"
namespace base {
using ::testing::Gt;
using ::testing::Le;
using ::testing::Optional;
#if defined(ADDRESS_SANITIZER)
#define MAYBE_CurrentThread DISABLED_CurrentThread
#elif BUILDFLAG(IS_LINUX)
#define MAYBE_CurrentThread DISABLED_CurrentThread
#else
#define MAYBE_CurrentThread CurrentThread
#endif
TEST(GetThreadStackBaseAddressTest, MAYBE_CurrentThread) {
std::optional<uintptr_t> base =
GetThreadStackBaseAddress(PlatformThread::CurrentId(), pthread_self());
EXPECT_THAT(base, Optional(Gt(0u)));
uintptr_t stack_addr = reinterpret_cast<uintptr_t>(&base);
EXPECT_THAT(base, Optional(Le(ClampAdd(stack_addr, 4 * 1024 * 1024))));
}
#if BUILDFLAG(IS_ANDROID) || BUILDFLAG(IS_CHROMEOS)
TEST(GetThreadStackBaseAddressTest, MainThread) {
std::optional<uintptr_t> base = GetThreadStackBaseAddress(
PlatformThreadId(GetCurrentProcId()), pthread_t());
EXPECT_THAT(base, Optional(Gt(0u)));
}
#endif
}