| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278 |
- /*
- * 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
- *
- */
- #include <AzCore/UnitTest/TestTypes.h>
- #include <AzCore/Asset/AssetManagerBus.h>
- #include <AzCore/Math/Uuid.h>
- #include <AzCore/Memory/Memory.h>
- #include <AzCore/std/smart_ptr/unique_ptr.h>
- #include <AzCore/UserSettings/UserSettingsComponent.h>
- #include <AzCore/IO/FileIO.h>
- #include <AZTestShared/Utils/Utils.h>
- #include <AzToolsFramework/Archive/ArchiveAPI.h>
- #include <AzFramework/StringFunc/StringFunc.h>
- #include <AzToolsFramework/Archive/ArchiveAPI.h>
- #include <AzToolsFramework/AssetBundle/AssetBundleAPI.h>
- #include <AzToolsFramework/UnitTest/ToolsTestApplication.h>
- #include <QString>
- #include <QDir>
- #include <QFileInfo>
- #include <QStandardPaths>
- #include <QTemporaryDir>
- #include <QTextStream>
- namespace UnitTest
- {
- namespace
- {
- bool CreateDummyFile(const QString& fullPathToFile, const QString& tempStr = {})
- {
- QFileInfo fi(fullPathToFile);
- QDir fp(fi.path());
- fp.mkpath(".");
- QFile writer(fullPathToFile);
- if (!writer.open(QFile::ReadWrite))
- {
- return false;
- }
- {
- QTextStream stream(&writer);
- stream << tempStr << Qt::endl;
- }
- writer.close();
- return true;
- }
- class ArchiveComponentTest :
- public UnitTest::LeakDetectionFixture
- {
- public:
- QStringList CreateArchiveFileList()
- {
- QStringList returnList;
- returnList.append("basicfile.txt");
- returnList.append("basicfile2.txt");
- returnList.append("testfolder/folderfile.txt");
- returnList.append("testfolder2/sharedfolderfile.txt");
- returnList.append("testfolder2/sharedfolderfile2.txt");
- returnList.append("testfolder3/testfolder4/depthfile.bat");
- return returnList;
- }
- QString GetArchiveFolderName()
- {
- return "archive";
- }
- QString GetExtractFolderName()
- {
- return "extracted";
- }
- void CreateArchiveFolder(QString archiveFolderName, QStringList fileList)
- {
- QDir tempPath = QDir(m_tempDir.GetDirectory()).filePath(archiveFolderName);
- for (const auto& thisFile : fileList)
- {
- QString absoluteTestFilePath = tempPath.absoluteFilePath(thisFile);
- EXPECT_TRUE(CreateDummyFile(absoluteTestFilePath));
- }
- }
- QString CreateArchiveListTextFile()
- {
- QString listFilePath = QDir(m_tempDir.GetDirectory()).absoluteFilePath("filelist.txt");
- QString textContent = CreateArchiveFileList().join("\n");
- EXPECT_TRUE(CreateDummyFile(listFilePath, textContent));
- return listFilePath;
- }
- void CreateArchiveFolder()
- {
- CreateArchiveFolder(GetArchiveFolderName(), CreateArchiveFileList());
- }
- QString GetArchivePath()
- {
- return QDir(m_tempDir.GetDirectory()).filePath("TestArchive.pak");
- }
- QString GetArchiveFolder()
- {
- return QDir(m_tempDir.GetDirectory()).filePath(GetArchiveFolderName());
- }
- QString GetExtractFolder()
- {
- return QDir(m_tempDir.GetDirectory()).filePath(GetExtractFolderName());
- }
- bool CreateArchive()
- {
- std::future<bool> createResult;
- AzToolsFramework::ArchiveCommandsBus::BroadcastResult(createResult,
- &AzToolsFramework::ArchiveCommandsBus::Events::CreateArchive,
- GetArchivePath().toUtf8().constData(), GetArchiveFolder().toUtf8().constData());
- bool result = createResult.get();
- return result;
- }
- void SetUp() override
- {
- m_app.reset(aznew ToolsTestApplication("ArchiveComponentTest"));
- AZ::ComponentApplication::StartupParameters startupParameters;
- startupParameters.m_loadSettingsRegistry = false;
- m_app->Start(AzFramework::Application::Descriptor(), startupParameters);
- // Without this, the user settings component would attempt to save on finalize/shutdown. Since the file is
- // shared across the whole engine, if multiple tests are run in parallel, the saving could cause a crash
- // in the unit tests.
- AZ::UserSettingsComponentRequestBus::Broadcast(&AZ::UserSettingsComponentRequests::DisableSaveOnFinalize);
- if (auto fileIoBase = AZ::IO::FileIOBase::GetInstance(); fileIoBase != nullptr)
- {
- fileIoBase->SetAlias("@products@", m_tempDir.GetDirectory());
- }
- }
- void TearDown() override
- {
- m_app->Stop();
- m_app.reset();
- }
- AZStd::unique_ptr<ToolsTestApplication> m_app;
- AZ::Test::ScopedAutoTempDirectory m_tempDir;
- };
- TEST_F(ArchiveComponentTest, CreateArchive_FilesAtThreeDepths_ArchiveCreated)
- {
- CreateArchiveFolder();
- AZ_TEST_START_TRACE_SUPPRESSION;
- bool createResult = CreateArchive();
- AZ_TEST_STOP_TRACE_SUPPRESSION_NO_COUNT;
- EXPECT_TRUE(createResult);
- }
- TEST_F(ArchiveComponentTest, ListFilesInArchive_FilesAtThreeDepths_FilesFound)
- {
- CreateArchiveFolder();
- AZ_TEST_START_TRACE_SUPPRESSION;
- EXPECT_EQ(CreateArchive(), true);
- AZStd::vector<AZStd::string> fileList;
- bool listResult{ false };
- AzToolsFramework::ArchiveCommandsBus::BroadcastResult(listResult,
- &AzToolsFramework::ArchiveCommandsBus::Events::ListFilesInArchive,
- GetArchivePath().toUtf8().constData(), fileList);
- AZ_TEST_STOP_TRACE_SUPPRESSION_NO_COUNT;
- EXPECT_TRUE(listResult);
- EXPECT_EQ(fileList.size(), 6);
- }
- TEST_F(ArchiveComponentTest, CreateDeltaCatalog_AssetsNotRegistered_Failure)
- {
- QStringList fileList = CreateArchiveFileList();
- CreateArchiveFolder(GetArchiveFolderName(), fileList);
- AZ_TEST_START_TRACE_SUPPRESSION;
- bool createResult = CreateArchive();
- AZ_TEST_STOP_TRACE_SUPPRESSION_NO_COUNT;
- EXPECT_EQ(createResult, true);
- bool catalogCreated{ true };
- AZ::Test::AssertAbsorber assertAbsorber;
- AzToolsFramework::AssetBundleCommandsBus::BroadcastResult(catalogCreated,
- &AzToolsFramework::AssetBundleCommandsBus::Events::CreateDeltaCatalog, GetArchivePath().toUtf8().constData(), true);
- EXPECT_EQ(catalogCreated, false);
- }
- TEST_F(ArchiveComponentTest, AddFilesToArchive_FromListFile_Success)
- {
- QString listFile = CreateArchiveListTextFile();
- CreateArchiveFolder(GetArchiveFolderName(), CreateArchiveFileList());
- AZ_TEST_START_TRACE_SUPPRESSION;
- std::future<bool> addResult;
- AzToolsFramework::ArchiveCommandsBus::BroadcastResult(
- addResult, &AzToolsFramework::ArchiveCommandsBus::Events::AddFilesToArchive, GetArchivePath().toUtf8().constData(),
- GetArchiveFolder().toUtf8().constData(), listFile.toUtf8().constData());
- bool result = addResult.get();
- AZ_TEST_STOP_TRACE_SUPPRESSION_NO_COUNT;
- EXPECT_TRUE(result);
- }
- TEST_F(ArchiveComponentTest, ExtractArchive_AllFiles_Success)
- {
- CreateArchiveFolder();
- AZ_TEST_START_TRACE_SUPPRESSION;
- bool createResult = CreateArchive();
- AZ_TEST_STOP_TRACE_SUPPRESSION_NO_COUNT;
- EXPECT_TRUE(createResult);
- AZ_TEST_START_TRACE_SUPPRESSION;
- std::future<bool> extractResult;
- AzToolsFramework::ArchiveCommandsBus::BroadcastResult(
- extractResult, &AzToolsFramework::ArchiveCommandsBus::Events::ExtractArchive, GetArchivePath().toUtf8().constData(),
- GetExtractFolder().toUtf8().constData());
- bool result = extractResult.get();
- AZ_TEST_STOP_TRACE_SUPPRESSION_NO_COUNT;
- EXPECT_TRUE(result);
- QStringList archiveFiles = CreateArchiveFileList();
- for (const auto& file : archiveFiles)
- {
- QString fullFilePath = QDir(GetExtractFolder()).absoluteFilePath(file);
- QFileInfo fi(fullFilePath);
- EXPECT_TRUE(fi.exists());
- }
- }
- TEST_F(ArchiveComponentTest, CreateDeltaCatalog_ArchiveWithoutCatalogAssetsRegistered_Success)
- {
- QStringList fileList = CreateArchiveFileList();
- CreateArchiveFolder(GetArchiveFolderName(), fileList);
- AZ_TEST_START_TRACE_SUPPRESSION;
- bool createResult = CreateArchive();
- AZ_TEST_STOP_TRACE_SUPPRESSION_NO_COUNT;
- EXPECT_EQ(createResult, true);
- for (const auto& thisPath : fileList)
- {
- AZ::Data::AssetInfo newInfo;
- newInfo.m_relativePath = thisPath.toUtf8().constData();
- newInfo.m_assetType = AZ::Uuid::CreateRandom();
- newInfo.m_sizeBytes = 100; // Arbitrary
- AZ::Data::AssetId generatedID(AZ::Uuid::CreateRandom());
- newInfo.m_assetId = generatedID;
- AZ::Data::AssetCatalogRequestBus::Broadcast(&AZ::Data::AssetCatalogRequestBus::Events::RegisterAsset, generatedID, newInfo);
- }
- bool catalogCreated{ false };
- AZ_TEST_START_TRACE_SUPPRESSION;
- AzToolsFramework::AssetBundleCommandsBus::BroadcastResult(catalogCreated, &AzToolsFramework::AssetBundleCommandsBus::Events::CreateDeltaCatalog, GetArchivePath().toUtf8().constData(), true);
- AZ_TEST_STOP_TRACE_SUPPRESSION_NO_COUNT; // produces different counts in different platforms
- EXPECT_EQ(catalogCreated, true);
- }
- }
- }
|