mirror of
https://github.com/intel/compute-runtime.git
synced 2025-09-15 13:01:45 +08:00
50 lines
1.8 KiB
C++
50 lines
1.8 KiB
C++
![]() |
/*
|
||
|
* Copyright (C) 2018 Intel Corporation
|
||
|
*
|
||
|
* SPDX-License-Identifier: MIT
|
||
|
*
|
||
|
*/
|
||
|
|
||
|
#include <memory>
|
||
|
#include "runtime/os_interface/os_library.h"
|
||
|
#include "runtime/os_interface/windows/windows_wrapper.h"
|
||
|
#include "runtime/helpers/windows/gl_helper.h"
|
||
|
#include "unit_tests/helpers/windows/mock_function.h"
|
||
|
#include "test.h"
|
||
|
#include "gtest/gtest.h"
|
||
|
|
||
|
typedef const char *(__cdecl *funcType)();
|
||
|
|
||
|
namespace OCLRT {
|
||
|
class glFunctionHelperMock : public glFunctionHelper {
|
||
|
public:
|
||
|
glFunctionHelperMock(OsLibrary *glLibrary, const std::string &functionName) : glFunctionHelper(glLibrary, functionName) {}
|
||
|
using glFunctionHelper::glFunctionPtr;
|
||
|
};
|
||
|
|
||
|
TEST(glFunctionHelper, whenCreateGlFunctionHelperThenSetGlFunctionPtrToLoadAnotherFunctions) {
|
||
|
std::unique_ptr<OsLibrary> glLibrary(OsLibrary::load("mock_opengl32.dll"));
|
||
|
EXPECT_TRUE(glLibrary->isLoaded());
|
||
|
glFunctionHelperMock loader(glLibrary.get(), "mockLoader");
|
||
|
funcType function1 = ConvertibleProcAddr{loader.glFunctionPtr("realFunction")};
|
||
|
funcType function2 = loader["realFunction"];
|
||
|
EXPECT_STREQ(function1(), function2());
|
||
|
}
|
||
|
|
||
|
TEST(glFunctionHelper, givenNonExistingFunctionNameWhenCreateGlFunctionHelperThenNullptr) {
|
||
|
std::unique_ptr<OsLibrary> glLibrary(OsLibrary::load("mock_opengl32.dll"));
|
||
|
EXPECT_TRUE(glLibrary->isLoaded());
|
||
|
glFunctionHelper loader(glLibrary.get(), "mockLoader");
|
||
|
funcType function = loader["nonExistingFunction"];
|
||
|
EXPECT_EQ(nullptr, function);
|
||
|
}
|
||
|
|
||
|
TEST(glFunctionHelper, givenRealFunctionNameWhenCreateGlFunctionHelperThenGetPointerToAppropriateFunction) {
|
||
|
std::unique_ptr<OsLibrary> glLibrary(OsLibrary::load("mock_opengl32.dll"));
|
||
|
EXPECT_TRUE(glLibrary->isLoaded());
|
||
|
glFunctionHelper loader(glLibrary.get(), "mockLoader");
|
||
|
funcType function = loader["realFunction"];
|
||
|
EXPECT_STREQ(realFunction(), function());
|
||
|
}
|
||
|
}; // namespace OCLRT
|