b81f52e48bc92cba54dcd2474ff51076ac2a4421
[folly.git] / folly / experimental / symbolizer / test / ElfTests.cpp
1 /*
2  * Copyright 2017 Facebook, Inc.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *   http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 #include <folly/experimental/symbolizer/Elf.h>
18 #include <folly/portability/GTest.h>
19
20 using folly::symbolizer::ElfFile;
21
22 // Add some symbols for testing. Note that we have to be careful with type
23 // signatures here to prevent name mangling
24 uint64_t kIntegerValue = 1234567890UL;
25 const char* kStringValue = "coconuts";
26
27 class ElfTest : public ::testing::Test {
28  protected:
29   ElfFile elfFile_{"/proc/self/exe"};
30 };
31
32 TEST_F(ElfTest, IntegerValue) {
33   auto sym = elfFile_.getSymbolByName("kIntegerValue");
34   EXPECT_NE(nullptr, sym.first) << "Failed to look up symbol kIntegerValue";
35   EXPECT_EQ(kIntegerValue, elfFile_.getSymbolValue<uint64_t>(sym.second));
36 }
37
38 TEST_F(ElfTest, PointerValue) {
39   auto sym = elfFile_.getSymbolByName("kStringValue");
40   EXPECT_NE(nullptr, sym.first) << "Failed to look up symbol kStringValue";
41   ElfW(Addr) addr = elfFile_.getSymbolValue<ElfW(Addr)>(sym.second);
42   const char* str = &elfFile_.getAddressValue<const char>(addr);
43   EXPECT_STREQ(kStringValue, str);
44 }
45
46 TEST_F(ElfTest, iterateProgramHeaders) {
47   auto phdr = elfFile_.iterateProgramHeaders(
48       [](auto& h) { return h.p_type == PT_LOAD; });
49   EXPECT_NE(nullptr, phdr);
50   EXPECT_GE(phdr->p_filesz, 0);
51 }