diff options
| author | Dimitry Andric <dim@FreeBSD.org> | 2017-04-16 16:04:10 +0000 |
|---|---|---|
| committer | Dimitry Andric <dim@FreeBSD.org> | 2017-04-16 16:04:10 +0000 |
| commit | 74a628f776edb588bff8f8f5cc16eac947c9d631 (patch) | |
| tree | dc32e010ac4902621e5a279bfeb48628f7f0e166 /unittests/Host/linux/HostTest.cpp | |
| parent | afed7be32164a598f8172282c249af7266c48b46 (diff) | |
Diffstat (limited to 'unittests/Host/linux/HostTest.cpp')
| -rw-r--r-- | unittests/Host/linux/HostTest.cpp | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/unittests/Host/linux/HostTest.cpp b/unittests/Host/linux/HostTest.cpp new file mode 100644 index 000000000000..36d3fd206dac --- /dev/null +++ b/unittests/Host/linux/HostTest.cpp @@ -0,0 +1,48 @@ +//===-- HostTest.cpp --------------------------------------------*- C++ -*-===// +// +// The LLVM Compiler Infrastructure +// +// This file is distributed under the University of Illinois Open Source +// License. See LICENSE.TXT for details. +// +//===----------------------------------------------------------------------===// + +#include "lldb/Host/Host.h" +#include "lldb/Host/HostInfo.h" +#include "lldb/Target/Process.h" +#include "gtest/gtest.h" + +using namespace lldb_private; + +namespace { +class HostTest : public testing::Test { +public: + static void SetUpTestCase() { HostInfo::Initialize(); } + static void TearDownTestCase() { HostInfo::Terminate(); } +}; +} // namespace + +TEST_F(HostTest, GetProcessInfo) { + ProcessInstanceInfo Info; + ASSERT_FALSE(Host::GetProcessInfo(0, Info)); + + ASSERT_TRUE(Host::GetProcessInfo(getpid(), Info)); + + ASSERT_TRUE(Info.ProcessIDIsValid()); + EXPECT_EQ(lldb::pid_t(getpid()), Info.GetProcessID()); + + ASSERT_TRUE(Info.ParentProcessIDIsValid()); + EXPECT_EQ(lldb::pid_t(getppid()), Info.GetParentProcessID()); + + ASSERT_TRUE(Info.EffectiveUserIDIsValid()); + EXPECT_EQ(geteuid(), Info.GetEffectiveUserID()); + + ASSERT_TRUE(Info.EffectiveGroupIDIsValid()); + EXPECT_EQ(getegid(), Info.GetEffectiveGroupID()); + + ASSERT_TRUE(Info.UserIDIsValid()); + EXPECT_EQ(geteuid(), Info.GetUserID()); + + ASSERT_TRUE(Info.GroupIDIsValid()); + EXPECT_EQ(getegid(), Info.GetGroupID()); +} |
