1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051 |
- /*
- * 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/Casting/numeric_cast.h>
- #include <AzCore/IO/ByteContainerStream.h>
- #include <AzCore/IO/Path/Path.h>
- #include <AzCore/Settings/CommandLine.h>
- #include <AzCore/Settings/SettingsRegistryImpl.h>
- #include <AzCore/Settings/SettingsRegistryMergeUtils.h>
- #include <AzCore/Settings/SettingsRegistryVisitorUtils.h>
- #include <AzCore/std/containers/vector.h>
- #include <AzCore/std/smart_ptr/unique_ptr.h>
- #include <AzCore/std/string/string.h>
- #include <AzCore/std/containers/variant.h>
- #include <AzCore/UnitTest/TestTypes.h>
- #include <AzCore/Utils/Utils.h>
- #include <AzCore/Serialization/Json/JsonUtils.h>
- namespace SettingsRegistryMergeUtilsTests
- {
- struct DumpSettingsRegistryParams
- {
- AZ::SettingsRegistryInterface::Format m_jsonFormat{ AZ::SettingsRegistryInterface::Format::JsonMergePatch };
- const char* m_inputJsonDocument{ "" };
- const char* m_expectedDumpString{ "" };
- AZ::SettingsRegistryMergeUtils::DumperSettings m_dumperSettings;
- AZStd::string_view m_jsonPointerPath;
- };
- class SettingsRegistryMergeUtilsParamFixture
- : public UnitTest::LeakDetectionFixture
- , public ::testing::WithParamInterface<DumpSettingsRegistryParams>
- {
- public:
- void SetUp() override
- {
- m_registry = AZStd::make_unique<AZ::SettingsRegistryImpl>();
- }
- void TearDown() override
- {
- m_registry.reset();
- }
- AZStd::unique_ptr<AZ::SettingsRegistryImpl> m_registry;
- };
- TEST_P(SettingsRegistryMergeUtilsParamFixture, DumpSettingsToByteContainerStream_ReturnsExpected)
- {
- const DumpSettingsRegistryParams& param = GetParam();
- ASSERT_TRUE(m_registry->MergeSettings(param.m_inputJsonDocument, param.m_jsonFormat));
- AZStd::string dumpString;
- AZ::IO::ByteContainerStream stringStream(&dumpString);
- EXPECT_TRUE(AZ::SettingsRegistryMergeUtils::DumpSettingsRegistryToStream(*m_registry, param.m_jsonPointerPath, stringStream,
- param.m_dumperSettings));
- EXPECT_FALSE(dumpString.empty());
- EXPECT_STREQ(param.m_expectedDumpString, dumpString.c_str());
- }
- TEST_P(SettingsRegistryMergeUtilsParamFixture, DumpSettingsStdout_ReturnsExpected)
- {
- const DumpSettingsRegistryParams& param = GetParam();
- ASSERT_TRUE(m_registry->MergeSettings(param.m_inputJsonDocument, param.m_jsonFormat));
- AZ::IO::StdoutStream stdoutStream;
- EXPECT_TRUE(AZ::SettingsRegistryMergeUtils::DumpSettingsRegistryToStream(*m_registry, param.m_jsonPointerPath, stdoutStream,
- param.m_dumperSettings));
- }
- INSTANTIATE_TEST_SUITE_P(
- DumpSettings,
- SettingsRegistryMergeUtilsParamFixture,
- ::testing::Values(
- DumpSettingsRegistryParams
- {
- AZ::SettingsRegistryInterface::Format::JsonPatch,
- R"([)" "\n"
- R"( { "op": "add", "path": "/Test", "value": { "Object": {} } },)" "\n"
- R"( { "op": "add", "path": "/Test/Object/NullType", "value": null },)" "\n"
- R"( { "op": "add", "path": "/Test/Object/TrueType", "value": true },)" "\n"
- R"( { "op": "add", "path": "/Test/Object/FalseType", "value": false },)" "\n"
- R"( { "op": "add", "path": "/Test/Object/IntType", "value": -42 },)" "\n"
- R"( { "op": "add", "path": "/Test/Object/UIntType", "value": 42 },)" "\n"
- R"( { "op": "add", "path": "/Test/Object/DoubleType", "value": 42.0 },)" "\n"
- R"( { "op": "add", "path": "/Test/Object/StringType", "value": "Hello world" },)" "\n"
- R"( { "op": "add", "path": "/Test/Array", "value": [ null, true, false, -42, 42, 42.0, "Hello world" ] })" "\n"
- R"(])" "\n",
- R"({"Test":{"Object":{"NullType":null,"TrueType":true,"FalseType":false,"IntType":-42,"UIntType":42)"
- R"(,"DoubleType":42.0,"StringType":"Hello world"},"Array":[null,true,false,-42,42,42.0,"Hello world"]}})",
- AZ::SettingsRegistryMergeUtils::DumperSettings
- {
- false,
- [](AZStd::string_view path)
- {
- AZStd::string_view prefixPath("/Test");
- return prefixPath.starts_with(path.substr(0, prefixPath.size()));
- }
- }
- },
- DumpSettingsRegistryParams
- {
- AZ::SettingsRegistryInterface::Format::JsonMergePatch,
- R"({)" "\n"
- R"( "Test":)" "\n"
- R"( {)" "\n"
- R"( "Array0": [ 142, 188 ], )" "\n"
- R"( "Array1": [ 242, 288 ], )" "\n"
- R"( "Array2": [ 342, 388 ] )" "\n"
- R"( })" "\n"
- R"(})" "\n",
- R"({"Test":{"Array0":[142,188],"Array1":[242,288],"Array2":[342,388]}})",
- AZ::SettingsRegistryMergeUtils::DumperSettings{ false,
- [](AZStd::string_view path)
- {
- AZStd::string_view prefixPath("/Test");
- return prefixPath.starts_with(path.substr(0, prefixPath.size()));
- }
- }
- },
- DumpSettingsRegistryParams
- {
- AZ::SettingsRegistryInterface::Format::JsonMergePatch,
- R"({
- "Test":
- {
- "Array0": [ 142, 188 ],
- "Array1": [ 242, 288 ],
- "Array2": [ 342, 388 ]
- }
- })",
- R"({)""\n"
- R"( "Test": {)""\n"
- R"( "Array0": [)""\n"
- R"( 142,)""\n"
- R"( 188)""\n"
- R"( ],)""\n"
- R"( "Array1": [)""\n"
- R"( 242,)""\n"
- R"( 288)""\n"
- R"( ],)""\n"
- R"( "Array2": [)""\n"
- R"( 342,)""\n"
- R"( 388)""\n"
- R"( ])""\n"
- R"( })""\n"
- R"(})",
- AZ::SettingsRegistryMergeUtils::DumperSettings
- {
- true,
- [](AZStd::string_view path)
- {
- AZStd::string_view prefixPath("/Test");
- return prefixPath.starts_with(path.substr(0, prefixPath.size()));
- }
- }
- },
- DumpSettingsRegistryParams
- {
- AZ::SettingsRegistryInterface::Format::JsonMergePatch,
- R"({
- "Test":
- {
- "Array0": [ 142, 188 ],
- "Array1": [ 242, 288 ],
- "Array2": [ 342, 388 ]
- }
- })",
- R"({)""\n"
- R"( "Array0": [)""\n"
- R"( 142,)""\n"
- R"( 188)""\n"
- R"( ],)""\n"
- R"( "Array1": [)""\n"
- R"( 242,)""\n"
- R"( 288)""\n"
- R"( ],)""\n"
- R"( "Array2": [)""\n"
- R"( 342,)""\n"
- R"( 388)""\n"
- R"( ])""\n"
- R"(})",
- AZ::SettingsRegistryMergeUtils::DumperSettings
- {
- true,
- [](AZStd::string_view path)
- {
- AZStd::string_view prefixPath("/Test");
- return prefixPath.starts_with(path.substr(0, prefixPath.size()));
- }
- },
- "/Test"
- },
- DumpSettingsRegistryParams{
- AZ::SettingsRegistryInterface::Format::JsonMergePatch,
- R"({)" "\n"
- R"( "Test":)" "\n"
- R"( {)" "\n"
- R"( "Array0": [ 142, 188 ])" "\n"
- R"( })" "\n"
- R"(})",
- R"({"Root":{"Path":{"Test":{"Array0":[142,188]}}}})",
- AZ::SettingsRegistryMergeUtils::DumperSettings{ false, {}, "/Root/Path/Test" },
- "/Test"
- })
- );
- //! ConfigFile MergeUtils Test
- struct ConfigFileParams
- {
- AZStd::string_view m_testConfigFileName;
- AZStd::string_view m_testConfigContents;
- using SettingsValueVariant = AZStd::variant<AZ::s64, bool, double, AZStd::string_view>;
- using SettingsKeyValuePair = AZStd::pair<AZStd::string_view, SettingsValueVariant>;
- // The following test below will not have more than 32 settings in their config files
- AZStd::fixed_vector<SettingsKeyValuePair, 20> m_expectedSettings;
- };
- class SettingsRegistryMergeUtilsConfigFileFixture
- : public UnitTest::LeakDetectionFixture
- , public ::testing::WithParamInterface<ConfigFileParams>
- {
- public:
- void SetUp() override
- {
- m_registry = AZStd::make_unique<AZ::SettingsRegistryImpl>();
- auto configFileParam = GetParam();
- // Create the test config file
- ASSERT_TRUE(AZ::Test::CreateTestFile(m_testFolder, configFileParam.m_testConfigFileName, configFileParam.m_testConfigContents));
- }
- void TearDown() override
- {
- m_registry.reset();
- }
- protected:
- AZStd::unique_ptr<AZ::SettingsRegistryImpl> m_registry;
- AZ::Test::ScopedAutoTempDirectory m_testFolder;
- };
- TEST_P(SettingsRegistryMergeUtilsConfigFileFixture, MergeSettingsToRegistry_ConfigFile_ParseContents_Successfully)
- {
- auto configFileParam = GetParam();
- // Merge Config File to Settings Registry
- AZ::SettingsRegistryMergeUtils::ConfigParserSettings parserSettings;
- parserSettings.m_commentPrefixFunc = [](AZStd::string_view line) -> AZStd::string_view
- {
- constexpr AZStd::string_view commentPrefixes[]{ "--", ";","#" };
- for (AZStd::string_view commentPrefix : commentPrefixes)
- {
- if (size_t commentOffset = line.find(commentPrefix); commentOffset != AZStd::string_view::npos)
- {
- line = line.substr(0, commentOffset);
- }
- }
- return line;
- };
- auto testPath = AZ::IO::FixedMaxPath(m_testFolder.GetDirectory()) / configFileParam.m_testConfigFileName;
- AZ::SettingsRegistryMergeUtils::MergeSettingsToRegistry_ConfigFile(*m_registry, testPath.Native(), parserSettings);
- // Validate that Settings Registry contains expected settings
- for (auto&& expectedSettingPair : configFileParam.m_expectedSettings)
- {
- auto ValidateExpectedSettings = [this, settingsKey = expectedSettingPair.first](auto&& settingsValue)
- {
- using SettingsValueType = AZStd::remove_cvref_t<decltype(settingsValue)>;
- if constexpr (AZStd::is_same_v<SettingsValueType, AZ::s64>
- || AZStd::is_same_v<SettingsValueType, double>
- || AZStd::is_same_v<SettingsValueType, bool>)
- {
- SettingsValueType registryValue{};
- EXPECT_TRUE(m_registry->Get(registryValue, settingsKey));
- EXPECT_EQ(settingsValue, registryValue);
- }
- else if constexpr (AZStd::is_same_v<SettingsValueType, AZStd::string_view>)
- {
- AZ::SettingsRegistryInterface::FixedValueString registryValue;
- EXPECT_TRUE(m_registry->Get(registryValue, settingsKey));
- EXPECT_EQ(settingsValue, registryValue);
- }
- };
- AZStd::visit(ValidateExpectedSettings, expectedSettingPair.second);
- }
- }
- INSTANTIATE_TEST_SUITE_P(
- ReadConfigFile,
- SettingsRegistryMergeUtilsConfigFileFixture,
- ::testing::Values(
- // Processes a fake bootstrap.cfg file which contains no section headers
- // and properly terminates the file with a newline
- ConfigFileParams{ "fake_bootstrap.cfg", R"(
- -- When you see an option that does not have a platform preceding it, that is the default
- -- value for anything not specifically set per platform. So if remote_filesystem=0 and you have
- -- ios_remote_file_system=1 then remote filesystem will be off for all platforms except ios
- -- Any of the settings in this file can be prefixed with a platform name:
- -- android, ios, mac, linux, windows, etc...
- -- or left unprefixed, to set all platforms not specified. The rules apply in the order they're declared
- project_path=TestProject
- -- remote_filesystem - enable Virtual File System (VFS)
- -- This feature allows a remote instance of the game to run off assets
- -- on the asset processor computers cache instead of deploying them the remote device
- -- By default it is off and can be overridden for any platform
- remote_filesystem=0
- android_remote_filesystem=0
- ios_remote_filesystem=0
- mac_remote_filesystem=0
- -- What type of assets are we going to load?
- -- We need to know this before we establish VFS because different platform assets
- -- are stored in different root folders in the cache. These correspond to the names
- -- In the asset processor config file. This value also controls what config file is read
- -- when you read system_xxxx_xxxx.cfg (for example, system_windows_pc.cfg or system_android_android.cfg)
- -- by default, pc assets (in the 'pc' folder) are used, with RC being fed 'pc' as the platform
- -- by default on console we use the default assets=pc for better iteration times
- -- we should turn on console specific assets only when in release and/or testing assets and/or loading performance
- -- that way most people will not need to have 3 different caches taking up disk space
- assets = pc
- android_assets = android
- ios_assets = ios
- mac_assets = mac
- -- Add the IP address of your console to the white list that will connect to the asset processor here
- -- You can list addresses or CIDR's. CIDR's are helpful if you are using DHCP. A CIDR looks like an ip address with
- -- a /n on the end means how many bits are significant. 8bits.8bits.8bits.8bits = /32
- -- Example: 192.168.1.3
- -- Example: 192.168.1.3, 192.168.1.15
- -- Example: 192.168.1.0/24 will allow any address starting with 192.168.1.
- -- Example: 192.168.0.0/16 will allow any address starting with 192.168.
- -- Example: 192.168.0.0/8 will allow any address starting with 192.
- -- allowed_list =
- -- IP address and optionally port of the asset processor.
- -- Set your PC IP here: (and uncomment the next line)
- -- If you are running your asset processor on a windows machine you
- -- can find out your ip address by opening a cmd prompt and typing in ipconfig
- -- remote_ip = 127.0.0.1
- -- remote_port = 45643
- -- Which way do you want to connect the asset processor to the game: 1=game connects to AP "connect", 0=AP connects to game "listen"
- -- Note: android and IOS over USB port forwarding may need to listen instead of connect
- connect_to_remote=0
- windows_connect_to_remote=1
- android_connect_to_remote=0
- ios_connect_to_remote=0
- mac_connect_to_remote=0
- -- Should we tell the game to wait and not proceed unless we have a connection to the AP or
- -- do we allow it to continue to try to connect in the background without waiting
- -- Note: Certain options REQUIRE that we do not proceed unless we have a connection, and will override this option to 1 when set
- -- Since remote_filesystem=1 requires a connection to proceed it will override our option to 1
- wait_for_connect=0
- windows_wait_for_connect=1
- android_wait_for_connect=0
- ios_wait_for_connect=0
- mac_wait_for_connect=0
- -- How long applications should wait while attempting to connect to an already launched AP(in seconds)
- -- connect_ap_timeout=3
- -- How long application should wait when launching the AP and wait for the AP to connect back to it(in seconds)
- -- This time is dependent on Machine load as well as how long it takes for the new AP instance to initialize
- -- A debug AP takes longer to start up than a profile AP
- -- launch_ap_timeout=15
- -- How long to wait for the AssetProcessor to be ready(i.e have all critical assets processed)
- -- wait_ap_ready_timeout = 1200
- # Commented out line using a number sign character
- ; Commented out line using a semicolon
- )"
- , AZStd::fixed_vector<ConfigFileParams::SettingsKeyValuePair, 20>{
- ConfigFileParams::SettingsKeyValuePair{"/project_path", AZStd::string_view{"TestProject"}},
- ConfigFileParams::SettingsKeyValuePair{"/remote_filesystem", AZ::s64{0}},
- ConfigFileParams::SettingsKeyValuePair{"/android_remote_filesystem", AZ::s64{0}},
- ConfigFileParams::SettingsKeyValuePair{"/ios_remote_filesystem", AZ::s64{0}},
- ConfigFileParams::SettingsKeyValuePair{"/mac_remote_filesystem", AZ::s64{0}},
- ConfigFileParams::SettingsKeyValuePair{"/assets", AZStd::string_view{"pc"}},
- ConfigFileParams::SettingsKeyValuePair{"/android_assets", AZStd::string_view{"android"}},
- ConfigFileParams::SettingsKeyValuePair{"/ios_assets", AZStd::string_view{"ios"}},
- ConfigFileParams::SettingsKeyValuePair{"/mac_assets", AZStd::string_view{"mac"}},
- ConfigFileParams::SettingsKeyValuePair{"/connect_to_remote", AZ::s64{0}},
- ConfigFileParams::SettingsKeyValuePair{"/windows_connect_to_remote", AZ::s64{1}},
- ConfigFileParams::SettingsKeyValuePair{"/android_connect_to_remote", AZ::s64{0}},
- ConfigFileParams::SettingsKeyValuePair{"/ios_connect_to_remote", AZ::s64{0}},
- ConfigFileParams::SettingsKeyValuePair{"/mac_connect_to_remote", AZ::s64{0}},
- ConfigFileParams::SettingsKeyValuePair{"/wait_for_connect", AZ::s64{0}},
- ConfigFileParams::SettingsKeyValuePair{"/windows_wait_for_connect", AZ::s64{1}},
- ConfigFileParams::SettingsKeyValuePair{"/android_wait_for_connect", AZ::s64{0}},
- ConfigFileParams::SettingsKeyValuePair{"/ios_wait_for_connect", AZ::s64{0}},
- ConfigFileParams::SettingsKeyValuePair{"/mac_wait_for_connect", AZ::s64{0}},
- }},
- // Parses a fake AssetProcessorPlatformConfig file which contains sections headers
- // and does not end with a newline
- ConfigFileParams{ "fake_AssetProcessorPlatformConfig.ini", R"(
- ; ---- Enable/Disable platforms for the entire project. AssetProcessor will automatically add the current platform by default.
- ; PLATFORM DEFINITIONS
- ; [Platform (unique identifier)]
- ; tags=(comma-seperated-tags)
- ;
- ; note: the 'identifier' of a platform is the word(s) following the "Platform" keyword (so [Platform pc] means identifier
- ; is 'pc' for example. This is used to name its assets folder in the cache and should be used in your bootstrap.cfg
- ; or your main.cpp to choose what assets to load for that particular platform.
- ; Its primary use is to enable additional non-host platforms (Ios, android...) that are not the current platform.
- ; note: 'tags' is a comma-seperated list of tags to tag the platform with that builders can inspect to decide what to do.
- ; while builders can accept any tags you add in order to make decisions, common tags are
- ; tools - this platform can host the tools and editor and such
- ; renderer - this platform runs the client engine and renders on a GPU. If missing we could be on a server-only platform
- ; mobile - a mobile platform such as a set top box or phone with limited resources
- ; console - a console platform
- ; server - a server platform of some kind, usually headless, no renderer.
- test_asset_processor_tag = test_value
- [Platform pc]
- tags=tools,renderer,dx12,vulkan
- [Platform android]
- tags=android,mobile,renderer,vulkan ; With Comments at the end
- [Platform ios]
- tags=mobile,renderer,metal
- [Platform mac]
- tags=tools,renderer,metal)"
- , AZStd::fixed_vector<ConfigFileParams::SettingsKeyValuePair, 20>{
- ConfigFileParams::SettingsKeyValuePair{"/test_asset_processor_tag", AZStd::string_view{"test_value"}},
- ConfigFileParams::SettingsKeyValuePair{"/Platform pc/tags", AZStd::string_view{"tools,renderer,dx12,vulkan"}},
- ConfigFileParams::SettingsKeyValuePair{"/Platform android/tags", AZStd::string_view{"android,mobile,renderer,vulkan"}},
- ConfigFileParams::SettingsKeyValuePair{"/Platform ios/tags", AZStd::string_view{"mobile,renderer,metal"}},
- ConfigFileParams::SettingsKeyValuePair{"/Platform mac/tags", AZStd::string_view{"tools,renderer,metal"}},
- }}
- )
- );
- struct SettingsRegistryGemVisitParams
- {
- const char* m_o3deManifestJson{ "" };
- const char* m_engineManifestJson{ "" };
- const char* m_projectManifestJson{ "" };
- AZStd::fixed_vector<AZStd::tuple<const char*, const char*>, 8> m_gemManifestJsons;
- const char* m_activeGemJson{ "" };
- AZStd::fixed_vector<const char*, 8> m_expectedActiveGemPaths;
- AZStd::fixed_vector<const char*, 8> m_expectedManifestGemPaths;
- };
- class SettingsRegistryGemVisitFixture
- : public UnitTest::LeakDetectionFixture
- , public ::testing::WithParamInterface<SettingsRegistryGemVisitParams>
- {
- public:
- void SetUp() override
- {
- m_registry = AZStd::make_unique<AZ::SettingsRegistryImpl>();
- // Create the manifest json files
- const auto& gemVisitParams = GetParam();
- AZ::IO::PathView o3deManifestFilePath = "o3de/o3de_manifest.json";
- AZ::IO::PathView engineManifestPath = "engine/engine.json";
- AZ::IO::PathView projectManifestPath = "project/project.json";
- ASSERT_TRUE(AZ::Test::CreateTestFile(m_testFolder, o3deManifestFilePath, gemVisitParams.m_o3deManifestJson));
- ASSERT_TRUE(AZ::Test::CreateTestFile(m_testFolder, engineManifestPath, gemVisitParams.m_engineManifestJson));
- ASSERT_TRUE(AZ::Test::CreateTestFile(m_testFolder, projectManifestPath, gemVisitParams.m_projectManifestJson));
- for (const auto& [gemRelativePath, gemManifestJson] : gemVisitParams.m_gemManifestJsons)
- {
- AZ::IO::FixedMaxPath gemManifestPath = AZ::IO::FixedMaxPath(gemRelativePath) / "gem.json";
- ASSERT_TRUE(AZ::Test::CreateTestFile(m_testFolder, gemManifestPath, gemManifestJson));
- }
- // Set the FilePathKeys for the o3de root, engine root and project root directories
- m_registry->Set(AZ::SettingsRegistryMergeUtils::FilePathKey_O3deManifestRootFolder,
- m_testFolder.Resolve("o3de").Native());
- m_registry->Set(AZ::SettingsRegistryMergeUtils::FilePathKey_EngineRootFolder,
- m_testFolder.Resolve("engine").Native());
- m_registry->Set(AZ::SettingsRegistryMergeUtils::FilePathKey_ProjectPath,
- m_testFolder.Resolve("project").Native());
- // Merge the Active Gem Json data to the Settings Registry
- EXPECT_TRUE(m_registry->MergeSettings(gemVisitParams.m_activeGemJson, AZ::SettingsRegistryInterface::Format::JsonMergePatch));
- AZ::SettingsRegistryMergeUtils::MergeSettingsToRegistry_ManifestGemsPaths(*m_registry);
- }
- void TearDown() override
- {
- m_registry.reset();
- }
- protected:
- AZStd::unique_ptr<AZ::SettingsRegistryImpl> m_registry;
- AZ::Test::ScopedAutoTempDirectory m_testFolder;
- };
- TEST_P(SettingsRegistryGemVisitFixture, SettingsRegistryMergeUtils_AllManifestGems_AreInSettingsRegistry)
- {
- AZStd::vector<AZ::IO::Path> manifestGemPaths;
- auto GetManifestGemPaths = [&manifestGemPaths, this](const AZ::SettingsRegistryInterface::VisitArgs& visitArgs)
- {
- using FixedValueString = AZ::SettingsRegistryInterface::FixedValueString;
- AZ::IO::Path gemPath;
- EXPECT_TRUE(m_registry->Get(gemPath.Native(), FixedValueString(visitArgs.m_jsonKeyPath) + "/Path"));
- manifestGemPaths.push_back(gemPath.LexicallyRelative(m_testFolder.GetDirectory()));
- return AZ::SettingsRegistryInterface::VisitResponse::Skip;
- };
- EXPECT_TRUE(AZ::SettingsRegistryVisitorUtils::VisitObject(*m_registry,
- GetManifestGemPaths, AZ::SettingsRegistryMergeUtils::ManifestGemsRootKey));
- const auto& gemVisitParams = GetParam();
- EXPECT_THAT(manifestGemPaths, ::testing::UnorderedElementsAreArray(
- gemVisitParams.m_expectedManifestGemPaths.begin(), gemVisitParams.m_expectedManifestGemPaths.end()));
- }
- TEST_P(SettingsRegistryGemVisitFixture, SettingsRegistryMergeUtils_VisitActiveGems_OnlyReturnsActiveGemPaths)
- {
- AZStd::vector<AZ::IO::Path> activeGemPaths;
- auto GetActiveGems = [&activeGemPaths, this](AZStd::string_view, AZStd::string_view gemPath)
- {
- activeGemPaths.push_back(AZ::IO::Path(gemPath).LexicallyRelative(m_testFolder.GetDirectory()));
- };
- AZ::SettingsRegistryMergeUtils::VisitActiveGems(*m_registry, GetActiveGems);
- const auto& gemVisitParams = GetParam();
- EXPECT_THAT(activeGemPaths, ::testing::UnorderedElementsAreArray(
- gemVisitParams.m_expectedActiveGemPaths.begin(), gemVisitParams.m_expectedActiveGemPaths.end()));
- }
- TEST_P(SettingsRegistryGemVisitFixture, Validate_SettingsRegistryUtilsQueries_WorksWithLocalRegistry)
- {
- const AZ::IO::FixedMaxPath tempRootFolder(m_testFolder.GetDirectory());
- AZ::IO::FixedMaxPath testPath = AZ::Utils::GetO3deManifestDirectory(m_registry.get());
- EXPECT_EQ((tempRootFolder / "o3de"), testPath);
- testPath = AZ::Utils::GetEnginePath(m_registry.get());
- EXPECT_EQ((tempRootFolder / "engine"), testPath);
- testPath = AZ::Utils::GetProjectPath(m_registry.get());
- EXPECT_EQ((tempRootFolder / "project"), testPath);
- testPath = AZ::Utils::GetGemPath("outerGem1", m_registry.get());
- EXPECT_EQ((tempRootFolder / "o3de/outerGem1"), testPath);
- testPath = AZ::Utils::GetGemPath("outerGem2", m_registry.get());
- EXPECT_EQ((tempRootFolder / "o3de/outerGem2"), testPath);
- testPath = AZ::Utils::GetGemPath("innerGem1", m_registry.get());
- EXPECT_EQ((tempRootFolder / "o3de/outerGem2/innerGem1"), testPath);
- testPath = AZ::Utils::GetGemPath("engineGem1", m_registry.get());
- EXPECT_EQ((tempRootFolder / "engine/engineGem1"), testPath);
- testPath = AZ::Utils::GetGemPath("projectGem1", m_registry.get());
- EXPECT_EQ((tempRootFolder / "project/projectGem1"), testPath);
- testPath = AZ::Utils::GetGemPath("outsideGem1", m_registry.get());
- EXPECT_EQ((tempRootFolder / "outsideGem1"), testPath);
- }
- static auto MakeGemVisitTestingValues()
- {
- return AZStd::array{
- SettingsRegistryGemVisitParams{
- R"({
- "o3de_manifest_name": "testuser",
- "external_subdirectories": [
- "outerGem1",
- "outerGem2"
- ]
- })",
- R"({
- "engine_name": "o3de",
- "external_subdirectories": [
- "engineGem1"
- ]
- })",
- R"({
- "project_name": "TestProject",
- "external_subdirectories": [
- "projectGem1",
- "../outsideGem1"
- ]
- })",
- {
- AZStd::make_tuple("o3de/outerGem1",
- R"({
- "gem_name": "outerGem1",
- })"
- ),
- AZStd::make_tuple("o3de/outerGem2",
- R"({
- "gem_name": "outerGem2",
- "external_subdirectories": [
- "innerGem1"
- ]
- })"
- ),
- AZStd::make_tuple("o3de/outerGem2/innerGem1",
- R"({
- "gem_name": "innerGem1",
- })"
- ),
- AZStd::make_tuple("engine/engineGem1",
- R"({
- "gem_name": "engineGem1",
- })"
- ),
- AZStd::make_tuple("project/projectGem1",
- R"({
- "gem_name": "projectGem1",
- })"
- ),
- AZStd::make_tuple("outsideGem1",
- R"({
- "gem_name": "outsideGem1",
- })"
- ),
- },
- R"({
- "O3DE": {
- "Gems": {
- "outerGem1" : {},
- "innerGem1" : {},
- "engineGem1" : {},
- "projectGem1" : {},
- }
- }
- })",
- {
- "o3de/outerGem1",
- "o3de/outerGem2/innerGem1",
- "engine/engineGem1",
- "project/projectGem1"
- },
- {
- "o3de/outerGem1",
- "o3de/outerGem2",
- "o3de/outerGem2/innerGem1",
- "engine/engineGem1",
- "project/projectGem1",
- "outsideGem1"
- }
- } };
- }
- INSTANTIATE_TEST_SUITE_P(
- MergeManifestJson,
- SettingsRegistryGemVisitFixture,
- ::testing::ValuesIn(MakeGemVisitTestingValues()));
- class SettingsRegistryMergeUtilsCommandLineFixture
- : public UnitTest::LeakDetectionFixture
- {
- public:
- void SetUp() override
- {
- m_registry = AZStd::make_unique<AZ::SettingsRegistryImpl>();
- }
- void TearDown() override
- {
- m_registry.reset();
- }
- AZStd::unique_ptr<AZ::SettingsRegistryImpl> m_registry;
- };
- TEST_F(SettingsRegistryMergeUtilsCommandLineFixture, CommandLineArguments_MergeToSettingsRegistry_Success)
- {
- AZ::CommandLine commandLine;
- commandLine.Parse({ "programname.exe", "--project-path", "--RemoteIp", "10.0.0.1", "--ScanFolders", R"(\a\b\c,\d\e\f)", "Foo", "Bat" });
- AZ::SettingsRegistryMergeUtils::StoreCommandLineToRegistry(*m_registry, commandLine);
- // Clear the CommandLine instance
- commandLine = {};
- EXPECT_TRUE(AZ::SettingsRegistryMergeUtils::GetCommandLineFromRegistry(*m_registry, commandLine));
- ASSERT_TRUE(commandLine.HasSwitch("project-path"));
- EXPECT_EQ(1, commandLine.GetNumSwitchValues("project-path"));
- EXPECT_STREQ("", commandLine.GetSwitchValue("project-path", 0).c_str());
- ASSERT_TRUE(commandLine.HasSwitch("remoteip"));
- ASSERT_EQ(1, commandLine.GetNumSwitchValues("remoteip"));
- EXPECT_STREQ("10.0.0.1", commandLine.GetSwitchValue("remoteip", 0).c_str());
- ASSERT_TRUE(commandLine.HasSwitch("scanfolders"));
- ASSERT_EQ(2, commandLine.GetNumSwitchValues("scanfolders"));
- EXPECT_STREQ(R"(\a\b\c)", commandLine.GetSwitchValue("scanfolders", 0).c_str());
- EXPECT_STREQ(R"(\d\e\f)", commandLine.GetSwitchValue("scanfolders", 1).c_str());
- ASSERT_EQ(3, commandLine.GetNumMiscValues());
- EXPECT_STREQ("programname.exe", commandLine.GetMiscValue(0).c_str());
- EXPECT_STREQ("Foo", commandLine.GetMiscValue(1).c_str());
- EXPECT_STREQ("Bat", commandLine.GetMiscValue(2).c_str());
- }
- TEST_F(SettingsRegistryMergeUtilsCommandLineFixture, RegsetFileArgument_DoesNotMergeNUL)
- {
- AZStd::string regsetFile = AZ::IO::SystemFile::GetNullFilename();
- AZ::CommandLine commandLine;
- commandLine.Parse({ "--regset-file", regsetFile });
- AZ::SettingsRegistryMergeUtils::MergeSettingsToRegistry_CommandLine(*m_registry, commandLine, {});
- // Add a settings path to anchor loaded settings underneath
- regsetFile = AZStd::string::format("%s::/AnchorPath/Of/Settings", AZ::IO::SystemFile::GetNullFilename());
- commandLine.Parse({ "--regset-file", regsetFile });
- AZ::SettingsRegistryMergeUtils::MergeSettingsToRegistry_CommandLine(*m_registry, commandLine, {});
- EXPECT_EQ(AZ::SettingsRegistryInterface::Type::NoType, m_registry->GetType("/AnchorPath/Of/Settings"));
- }
- using SettingsRegistryAncestorDescendantOrEqualPathFixture = SettingsRegistryMergeUtilsCommandLineFixture;
- TEST_F(SettingsRegistryAncestorDescendantOrEqualPathFixture, ValidateThatAncestorOrDescendantOrPathWithTheSameValue_Succeeds)
- {
- EXPECT_TRUE(AZ::SettingsRegistryMergeUtils::IsPathAncestorDescendantOrEqual("/Amazon/AzCore/Bootstrap", "/Amazon/AzCore"));
- EXPECT_TRUE(AZ::SettingsRegistryMergeUtils::IsPathAncestorDescendantOrEqual("/Amazon/AzCore/Bootstrap", "/Amazon/AzCore/Bootstrap"));
- EXPECT_TRUE(AZ::SettingsRegistryMergeUtils::IsPathAncestorDescendantOrEqual("/Amazon/AzCore/Bootstrap", "/Amazon/AzCore/Bootstrap/project_path"));
- EXPECT_FALSE(AZ::SettingsRegistryMergeUtils::IsPathAncestorDescendantOrEqual("/Amazon/AzCore/Bootstrap", "/Amazon/Project/Settings/project_name"));
- }
- struct SettingsRegistryFindEngineRootParams
- {
- AZStd::fixed_vector<const char*, 2> m_engineManifestsJson;
- const char* m_projectManifestJson{ "" };
- const char* m_userProjectManifestJson{ "" };
- const int m_expectedEnginePathIndex; // negative means not found
- const char* m_scanUpEngineRoot{ "" };
- };
- static auto MakeFindEngineRootTestingValues()
- {
- return AZStd::array{
- // Selects correct engine based on name
- SettingsRegistryFindEngineRootParams{
- // engine.json files
- {
- R"({ "engine_name": "o3de1", "version": "1.0.0"})",
- R"({ "engine_name": "o3de2", "version": "1.2.3"})",
- },
- // project/project.json
- R"({ "project_name": "TestProject", "engine":"o3de1" })",
- // project/user/project.json
- R"({})",
- 0, // expect o3de1
- ""
- },
- // Selects engine with highest version when multiple of same name found
- SettingsRegistryFindEngineRootParams{
- // engine.json files
- {
- R"({ "engine_name": "o3de", "version": "1.2.3"})",
- R"({ "engine_name": "o3de", "version": "2.3.4"})",
- },
- // project/project.json
- R"({ "project_name": "TestProject", "engine":"o3de" })",
- // project/user/project.json
- R"({})",
- 1, // expect second engine with higher version number
- ""
- },
- // Fails to find engine with name that isn't registered
- SettingsRegistryFindEngineRootParams{
- // engine.json files
- {
- R"({ "engine_name": "o3de1", "version": "1.0.0"})",
- R"({ "engine_name": "o3de2", "version": "1.2.3"})",
- },
- // project/project.json
- R"({ "project_name": "TestProject", "engine":"o3de-not-found" })",
- // project/user/project.json
- R"({})",
- -1, // not found
- ""
- },
- // Fails to find engine with version that isn't registered
- SettingsRegistryFindEngineRootParams{
- // engine.json files
- {
- R"({ "engine_name": "o3de1", "version": "1.0.0"})",
- R"({ "engine_name": "o3de2", "version": "1.2.3"})",
- },
- // project/project.json
- R"({ "project_name": "TestProject", "engine":"o3de==1.1.1" })",
- // project/user/project.json
- R"({})",
- -1, // not found
- ""
- },
- // Selects engine that has a legacy version field
- SettingsRegistryFindEngineRootParams{
- // engine.json files
- {
- R"({ "engine_name": "o3de", "O3DEVersion": "0.1.0.0"})",
- R"({ "engine_name": "o3de-new", "O3DEVersion": "0.1.0.0", "version": "1.2.3"})",
- },
- // project/project.json
- R"({ "project_name": "TestProject", "engine":"o3de" })",
- // project/user/project.json
- R"({})",
- 0, // o3de
- ""
- },
- // Selects first engine when multiple engines found with ambiguous project engine
- SettingsRegistryFindEngineRootParams{
- // engine.json files
- {
- R"({ "engine_name": "o3de", "O3DEVersion": "0.1.0.0"})",
- R"({ "engine_name": "o3de", "O3DEVersion": "0.1.0.0"})",
- },
- // project/project.json
- R"({ "project_name": "TestProject", "engine":"o3de" })",
- // project/user/project.json
- R"({})",
- 0, // first engine
- ""
- },
- // Selects correct engine when a version specifier is used
- SettingsRegistryFindEngineRootParams{
- // engine.json files
- {
- R"({ "engine_name": "o3de1", "version": "1.2.3"})",
- R"({ "engine_name": "o3de2", "version": "2.3.4"})",
- },
- // project/project.json
- R"({ "project_name": "TestProject", "engine":"o3de2==2.3.4" })",
- // project/user/project.json
- R"({})",
- 1, // o3de2
- ""
- },
- // Selects the engine specified by name in project/user/project.json
- SettingsRegistryFindEngineRootParams{
- // engine.json files
- {
- R"({ "engine_name": "o3de1", "version": "1.2.3"})",
- R"({ "engine_name": "o3de2", "version": "2.3.4"})",
- },
- // project/project.json
- R"({ "project_name": "TestProject", "engine":"o3de2==2.3.4" })",
- // project/user/project.json
- R"({ "engine":"o3de1==1.2.3" })",
- 0, // o3de1
- ""
- },
- // Selects the engine specified by path in project/user/project.json
- SettingsRegistryFindEngineRootParams{
- // engine.json files
- {
- R"({ "engine_name": "o3de", "version": "1.2.3"})",
- R"({ "engine_name": "o3de", "version": "1.2.3"})",
- },
- // project/project.json
- R"({ "project_name": "TestProject", "engine":"o3de" })",
- // project/user/project.json
- R"({ "engine_path":"<engine_path1>" })",
- 1, // 2nd engine, even though both have same name & version
- ""
- },
- // Fails if invalid engine specified in project/user/project.json
- SettingsRegistryFindEngineRootParams{
- // engine.json files
- {
- R"({ "engine_name": "o3de", "version": "1.2.3"})",
- R"({ "engine_name": "o3de-other", "version": "1.2.3"})",
- },
- // project/project.json
- R"({ "project_name": "TestProject", "engine":"o3de" })",
- // project/user/project.json
- R"({ "engine_path":"c:/path/not/found" })",
- -1, // not found
- ""
- },
- // Uses scan up engine if all other methods fail
- SettingsRegistryFindEngineRootParams{
- // engine.json files
- {
- R"({ "engine_name": "o3de", "version": "1.2.3"})",
- R"({ "engine_name": "o3de-other", "version": "1.2.3"})",
- },
- // project/project.json
- R"({ "project_name": "TestProject", "engine":"o3de-blah" })",
- // project/user/project.json
- R"({})",
- -1,
- "engine"
- },
- };
- }
- class SettingsRegistryMergeUtilsFindEngineRootFixture
- : public UnitTest::LeakDetectionFixture
- , public ::testing::WithParamInterface<SettingsRegistryFindEngineRootParams>
- {
- public:
- void SetUp() override
- {
- constexpr AZStd::string_view InternalScanUpEngineRootKey{ "/O3DE/Runtime/Internal/engine_root_scan_up_path" };
- m_registry = AZStd::make_unique<AZ::SettingsRegistryImpl>();
- // Create the manifest json files
- const auto& params = GetParam();
- AZ::IO::PathView o3deManifestFilePath = "o3de/o3de_manifest.json";
- AZ::IO::PathView projectPath = "project";
- AZ::IO::FixedMaxPath projectManifestPath = AZ::IO::FixedMaxPath(projectPath) / "project.json";
- AZ::IO::PathView projectUserPath = "project/user";
- AZ::IO::FixedMaxPath userProjectManifestPath = AZ::IO::FixedMaxPath(projectUserPath) / "project.json";
- for (size_t i = 0; i < params.m_engineManifestsJson.size(); ++i)
- {
- const AZ::IO::FixedMaxPath enginePath = AZ::IO::FixedMaxPathString::format("engine%zu", i);
- ASSERT_TRUE(AZ::Test::CreateTestFile(m_testFolder, enginePath / "engine.json", params.m_engineManifestsJson[i]));
- m_enginePaths.emplace_back(m_testFolder.GetDirectoryAsFixedMaxPath() / enginePath);
- }
- m_registry->Set(AZ::SettingsRegistryMergeUtils::FilePathKey_O3deManifestRootFolder,
- m_testFolder.Resolve("o3de").Native());
- m_registry->Set(AZ::SettingsRegistryMergeUtils::FilePathKey_ProjectPath,
- (m_testFolder.GetDirectoryAsFixedMaxPath() / projectPath).Native());
- m_registry->Set(AZ::SettingsRegistryMergeUtils::FilePathKey_ProjectUserPath,
- (m_testFolder.GetDirectoryAsFixedMaxPath() / projectUserPath).Native());
- if(!AZStd::string_view(params.m_scanUpEngineRoot).empty())
- {
- // use an absolute path because that is what should be returned from FindEngineRoot
- AZ::IO::FixedMaxPath scanUpEngineRootPath = m_testFolder.GetDirectoryAsFixedMaxPath() / params.m_scanUpEngineRoot;
- m_registry->Set(InternalScanUpEngineRootKey, scanUpEngineRootPath.Native());
- }
- else
- {
- // set to an empty value to simulate no scan up engine root found
- m_registry->Set(InternalScanUpEngineRootKey, "");
- }
- const char* o3deManifest = R"({ "o3de_manifest_name": "testmanifest", "engines":["<engine_path0>","<engine_path1>"] })";
- ASSERT_TRUE(CreateTestFileWithSubstitutions(o3deManifestFilePath, o3deManifest));
- ASSERT_TRUE(CreateTestFileWithSubstitutions(projectManifestPath, params.m_projectManifestJson));
- ASSERT_TRUE(CreateTestFileWithSubstitutions(userProjectManifestPath, params.m_userProjectManifestJson));
- }
- bool CreateTestFileWithSubstitutions(const AZ::IO::FixedMaxPath& testPath, AZStd::string_view content)
- {
- // replace instances of <engine0>, <engine1> etc. with actual engine paths
- AZStd::string contentString{ content };
- for (size_t i = 0; i < m_enginePaths.size(); ++i)
- {
- AZStd::string enginePath{ m_enginePaths[i].Native().c_str() };
- AZ::StringFunc::Json::ToEscapedString(enginePath);
- AZ::StringFunc::Replace(contentString, AZStd::string::format("<engine_path%zu>", i).c_str(), enginePath.c_str());
- }
- return AZ::Test::CreateTestFile(m_testFolder, testPath, contentString.c_str()).has_value();
- }
- void TearDown() override
- {
- m_registry.reset();
- }
- protected:
- AZStd::unique_ptr<AZ::SettingsRegistryImpl> m_registry;
- AZ::Test::ScopedAutoTempDirectory m_testFolder;
- AZStd::vector<AZ::IO::FixedMaxPath> m_enginePaths;
- };
- TEST_P(SettingsRegistryMergeUtilsFindEngineRootFixture, SettingsRegistryMergeUtils_FindEngineRoot_DetectsCorrectPath)
- {
- const auto& params = GetParam();
- const AZ::IO::FixedMaxPath engineRoot = AZ::SettingsRegistryMergeUtils::FindEngineRoot(*m_registry).Native();
- if (!AZStd::string_view(params.m_scanUpEngineRoot).empty())
- {
- auto tempRootFolder = AZ::IO::FixedMaxPath(m_testFolder.GetDirectory());
- AZ::IO::FixedMaxPath scanUpEngineRootPath = tempRootFolder / params.m_scanUpEngineRoot;
- EXPECT_EQ(engineRoot, scanUpEngineRootPath);
- }
- else if (params.m_expectedEnginePathIndex < 0 || params.m_expectedEnginePathIndex >= m_enginePaths.size())
- {
- EXPECT_TRUE(engineRoot.empty());
- }
- else
- {
- EXPECT_EQ(engineRoot, m_enginePaths[params.m_expectedEnginePathIndex]);
- }
- }
- INSTANTIATE_TEST_SUITE_P(
- FindEngineRoot,
- SettingsRegistryMergeUtilsFindEngineRootFixture,
- ::testing::ValuesIn(MakeFindEngineRootTestingValues()));
- }
|