Use the GTest portability headers
[folly.git] / folly / experimental / symbolizer / test / ElfTests.cpp
1 /*
2  * Copyright 2016 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  public:
29   // Path to the test binary itself; set by main()
30   static std::string binaryPath;
31
32   ElfTest() : elfFile_(binaryPath.c_str()) {
33   }
34   ~ElfTest() override {}
35
36  protected:
37   ElfFile elfFile_;
38 };
39
40 std::string ElfTest::binaryPath;
41
42 TEST_F(ElfTest, IntegerValue) {
43   auto sym = elfFile_.getSymbolByName("kIntegerValue");
44   EXPECT_NE(nullptr, sym.first) <<
45     "Failed to look up symbol kIntegerValue";
46   EXPECT_EQ(kIntegerValue, elfFile_.getSymbolValue<uint64_t>(sym.second));
47 }
48
49 TEST_F(ElfTest, PointerValue) {
50   auto sym = elfFile_.getSymbolByName("kStringValue");
51   EXPECT_NE(nullptr, sym.first) <<
52     "Failed to look up symbol kStringValue";
53   ElfW(Addr) addr = elfFile_.getSymbolValue<ElfW(Addr)>(sym.second);
54   const char *str = &elfFile_.getAddressValue<const char>(addr);
55   EXPECT_STREQ(kStringValue, str);
56 }
57
58 int main(int argc, char** argv) {
59   testing::InitGoogleTest(&argc, argv);
60   gflags::ParseCommandLineFlags(&argc, &argv, true);
61   ElfTest::binaryPath = argv[0];
62   return RUN_ALL_TESTS();
63 }