summaryrefslogtreecommitdiffstats
path: root/chrome_elf/ntdll_cache_unittest.cc
blob: d3f3555ab380aa49f484ee787a4c9c2d85daadb3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
// Copyright 2013 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include <windows.h>

#include "base/basictypes.h"
#include "base/compiler_specific.h"
#include "chrome_elf/ntdll_cache.h"
#include "testing/gtest/include/gtest/gtest.h"

namespace {

class NTDLLCacheTest : public testing::Test {
 protected:
  void SetUp() override {
    InitCache();
  }

};

TEST_F(NTDLLCacheTest, NtDLLCacheSanityCheck) {
  HMODULE ntdll_handle = ::GetModuleHandle(L"ntdll.dll");
  // Grab a couple random entries from the cache and make sure they match the
  // addresses exported by ntdll.
  EXPECT_EQ(::GetProcAddress(ntdll_handle, "A_SHAFinal"),
            g_ntdll_lookup["A_SHAFinal"]);
  EXPECT_EQ(::GetProcAddress(ntdll_handle, "ZwTraceControl"),
            g_ntdll_lookup["ZwTraceControl"]);
}

}  // namespace