123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153 |
- /*
- * Copyright (c) Contributors to the Open 3D Engine Project.
- * For complete copyright and license terms please see the LICENSE at the root of this distribution.
- *
- * SPDX-License-Identifier: Apache-2.0 OR MIT
- *
- */
- #pragma once
- #include <AzCore/Jobs/JobManager.h>
- #include <AzCore/Jobs/JobManagerBus.h>
- #include <AzCore/Jobs/JobContext.h>
- #include <AzCore/Memory/PoolAllocator.h>
- #include <AzCore/Serialization/Json/JsonSystemComponent.h>
- #include <AzCore/Serialization/Json/RegistrationContext.h>
- #include <AzCore/Settings/SettingsRegistryImpl.h>
- #include <AzCore/Settings/SettingsRegistryMergeUtils.h>
- #include <AzCore/UnitTest/TestTypes.h>
- #include <AzCore/Utils/Utils.h>
- #include <AzFramework/IO/LocalFileIO.h>
- namespace AWSMetrics
- {
- class AWSMetricsGemAllocatorFixture
- : public UnitTest::LeakDetectionFixture
- {
- protected:
- void SetUp() override
- {
- UnitTest::LeakDetectionFixture::SetUp();
- // Set up the file IO and alias
- m_localFileIO = aznew AZ::IO::LocalFileIO();
- m_priorFileIO = AZ::IO::FileIOBase::GetInstance();
- // we need to set it to nullptr first because otherwise the
- // underneath code assumes that we might be leaking the previous instance
- AZ::IO::FileIOBase::SetInstance(nullptr);
- AZ::IO::FileIOBase::SetInstance(m_localFileIO);
- const AZ::IO::Path engineRoot = AZ::Test::GetEngineRootPath();
- const auto productAssetPath = GetTestFolderPath() / "Cache";
- const auto userPath = GetTestFolderPath() / "user";
- m_localFileIO->CreatePath(productAssetPath.c_str());
- m_localFileIO->CreatePath(userPath.c_str());
- m_localFileIO->SetAlias("@engroot@", engineRoot.c_str());
- m_localFileIO->SetAlias("@products@", productAssetPath.c_str());
- m_localFileIO->SetAlias("@user@", userPath.c_str());
- m_serializeContext = AZStd::make_unique<AZ::SerializeContext>();
- m_registrationContext = AZStd::make_unique<AZ::JsonRegistrationContext>();
- AZ::JsonSystemComponent::Reflect(m_registrationContext.get());
- m_settingsRegistry = AZStd::make_unique<AZ::SettingsRegistryImpl>();
- m_settingsRegistry->SetContext(m_serializeContext.get());
- m_settingsRegistry->SetContext(m_registrationContext.get());
- m_settingsRegistry->Set(AZ::SettingsRegistryMergeUtils::FilePathKey_EngineRootFolder, engineRoot.c_str());
- AZ::SettingsRegistry::Register(m_settingsRegistry.get());
- }
- void TearDown() override
- {
- AZ::SettingsRegistry::Unregister(m_settingsRegistry.get());
- m_registrationContext->EnableRemoveReflection();
- AZ::JsonSystemComponent::Reflect(m_registrationContext.get());
- m_registrationContext->DisableRemoveReflection();
- m_settingsRegistry.reset();
- m_serializeContext.reset();
- m_registrationContext.reset();
- const auto productAssetPath = GetTestFolderPath() / "Cache";
- const auto userPath = GetTestFolderPath() / "user";
- // Clear the product asset cache alias to prevent cache write errors
- m_localFileIO->ClearAlias("@products@");
- m_localFileIO->DestroyPath(userPath.c_str());
- m_localFileIO->DestroyPath(productAssetPath.c_str());
- AZ::IO::FileIOBase::SetInstance(nullptr);
- delete m_localFileIO;
- AZ::IO::FileIOBase::SetInstance(m_priorFileIO);
- UnitTest::LeakDetectionFixture::TearDown();
- }
- AZStd::string CreateClientConfigFile(bool offlineRecordingEnabled, double maxQueueSizeInMb, int queueFlushPeriodInSeconds, int MaxNumRetries)
- {
- AZStd::string offlineRecordingEnabledStr = offlineRecordingEnabled ? "true" : "false";
- AZStd::string configFilePath = GetDefaultTestFilePath();
- AZStd::string settings = AZStd::string::format("{\"Amazon\":{\"Gems\":{\"AWSMetrics\":{\"OfflineRecording\":%s,\"MaxQueueSizeInMb\":%f,\"QueueFlushPeriodInSeconds\":%d,\"MaxNumRetries\":%d}}}}",
- offlineRecordingEnabledStr.c_str(),
- maxQueueSizeInMb,
- queueFlushPeriodInSeconds,
- MaxNumRetries);
- CreateFile(configFilePath, settings);
- return configFilePath;
- }
- bool CreateFile(const AZStd::string& filePath, const AZStd::string& content)
- {
- AZ::IO::HandleType fileHandle;
- // Suppress errors about writing to product asset cache
- AZ_TEST_START_TRACE_SUPPRESSION;
- if (!m_localFileIO->Open(filePath.c_str(), AZ::IO::OpenMode::ModeWrite | AZ::IO::OpenMode::ModeText, fileHandle))
- {
- return false;
- }
- m_localFileIO->Write(fileHandle, content.c_str(), content.size());
- AZ_TEST_STOP_TRACE_SUPPRESSION_NO_COUNT;
- m_localFileIO->Close(fileHandle);
- return true;
- }
- AZStd::string GetDefaultTestFilePath()
- {
- return (GetTestFolderPath() / "Test.json").Native();
- }
- bool RemoveFile(const AZStd::string& filePath)
- {
- if (m_localFileIO->Exists(filePath.c_str()))
- {
- return m_localFileIO->Remove(filePath.c_str());
- }
- return true;
- }
- AZ::IO::FileIOBase* m_priorFileIO = nullptr;
- AZ::IO::FileIOBase* m_localFileIO = nullptr;
- AZ::Test::ScopedAutoTempDirectory m_testDirectory;
- AZStd::unique_ptr<AZ::SerializeContext> m_serializeContext;
- AZStd::unique_ptr<AZ::JsonRegistrationContext> m_registrationContext;
- AZStd::unique_ptr<AZ::SettingsRegistryImpl> m_settingsRegistry;
- private:
- AZ::IO::Path GetTestFolderPath()
- {
- AZ::IO::Path testPathString{ m_testDirectory.GetDirectory() };
- return testPathString;
- }
- };
- }
|