/* * Copyright (C) 2017-2019 Intel Corporation * * SPDX-License-Identifier: MIT * */ #include "core/execution_environment/root_device_environment.h" #include "runtime/os_interface/windows/deferrable_deletion_win.h" #include "unit_tests/mocks/mock_execution_environment.h" #include "unit_tests/mocks/mock_wddm.h" #include "gtest/gtest.h" #include using namespace NEO; TEST(DeferrableDeletionImpl, NonCopyable) { EXPECT_FALSE(std::is_move_constructible::value); EXPECT_FALSE(std::is_copy_constructible::value); } TEST(DeferrableDeletionImpl, NonAssignable) { EXPECT_FALSE(std::is_move_assignable::value); EXPECT_FALSE(std::is_copy_assignable::value); } class MockDeferrableDeletion : public DeferrableDeletionImpl { public: using DeferrableDeletionImpl::allocationCount; using DeferrableDeletionImpl::DeferrableDeletionImpl; using DeferrableDeletionImpl::handles; using DeferrableDeletionImpl::resourceHandle; using DeferrableDeletionImpl::wddm; }; class DeferrableDeletionTest : public ::testing::Test { public: std::unique_ptr executionEnvironment; std::unique_ptr wddm; const D3DKMT_HANDLE handle = 0; uint32_t allocationCount = 1; D3DKMT_HANDLE resourceHandle = 0; void SetUp() override { executionEnvironment = std::make_unique(); executionEnvironment->prepareRootDeviceEnvironments(1); wddm = std::make_unique(*executionEnvironment->rootDeviceEnvironments[0]); } }; TEST_F(DeferrableDeletionTest, givenDeferrableDeletionWhenIsCreatedThenObjectMembersAreSetProperly) { MockDeferrableDeletion deletion(wddm.get(), &handle, allocationCount, resourceHandle); EXPECT_EQ(wddm.get(), deletion.wddm); EXPECT_NE(nullptr, deletion.handles); EXPECT_EQ(handle, *deletion.handles); EXPECT_NE(&handle, deletion.handles); EXPECT_EQ(allocationCount, deletion.allocationCount); EXPECT_EQ(resourceHandle, deletion.resourceHandle); } TEST_F(DeferrableDeletionTest, givenDeferrableDeletionWhenApplyIsCalledThenDeletionIsApplied) { wddm->callBaseDestroyAllocations = false; std::unique_ptr deletion(DeferrableDeletion::create((Wddm *)wddm.get(), &handle, allocationCount, resourceHandle)); EXPECT_EQ(0, wddm->destroyAllocationResult.called); deletion->apply(); EXPECT_EQ(1, wddm->destroyAllocationResult.called); }