#include "base/scoped_native_library.h"
#include "build/build_config.h"
#include "testing/gtest/include/gtest/gtest.h"
#if BUILDFLAG(IS_WIN)
#include "base/files/file_path.h"
#include "base/strings/utf_string_conversions.h"
#endif
namespace base {
TEST(ScopedNativeLibrary, Basic) {
#if BUILDFLAG(IS_WIN)
const char kFunctionName[] = "DirectDrawCreate";
NativeLibrary native_library;
{
FilePath path(FilePath::FromUTF8Unsafe(GetNativeLibraryName("ddraw")));
native_library = LoadNativeLibrary(path, nullptr);
ScopedNativeLibrary library(native_library);
EXPECT_TRUE(library.is_valid());
EXPECT_EQ(native_library, library.get());
FARPROC test_function =
reinterpret_cast<FARPROC>(library.GetFunctionPointer(kFunctionName));
EXPECT_EQ(0, IsBadCodePtr(test_function));
EXPECT_EQ(
GetFunctionPointerFromNativeLibrary(native_library, kFunctionName),
test_function);
}
EXPECT_FALSE(
GetFunctionPointerFromNativeLibrary(native_library, kFunctionName));
#endif
}
}