Firstborn/Library/PackageCache/com.unity.addressables@1.19.19/Tests/Runtime/AddressablesIntegrationTest...
Schaken-Mods 7502018d20 Adding Mod Support
There is an asset in the store I grabbed. the coding is WAY above my head, I got about half of it and integrated and adapted what I can to it. im going as far as I can with it and ill come back in a few month when I understand t better.
2023-05-13 22:01:48 -05:00

281 lines
12 KiB
C#

using System.Collections.Generic;
using UnityEngine;
using UnityEngine.AddressableAssets;
using UnityEngine.ResourceManagement;
using UnityEngine.TestTools;
using NUnit.Framework;
using System.Collections;
using System;
using System.Linq;
using UnityEngine.AddressableAssets.ResourceLocators;
using UnityEngine.ResourceManagement.ResourceLocations;
using UnityEngine.ResourceManagement.Util;
using UnityEngine.ResourceManagement.ResourceProviders;
using UnityEngine.ResourceManagement.AsyncOperations;
namespace AddressableAssetsIntegrationTests
{
internal abstract partial class AddressablesIntegrationTests : IPrebuildSetup
{
internal protected AddressablesImpl m_Addressables;
Dictionary<object, int> m_KeysHashSet = new Dictionary<object, int>();
List<object> m_PrefabKeysList = new List<object>();
Action<AsyncOperationHandle, Exception> m_PrevHandler;
protected const string k_TestConfigName = "AddressableAssetSettings.Tests";
protected const string k_TestConfigFolder = "Assets/AddressableAssetsData_AddressableAssetSettingsIntegrationTests";
protected abstract string TypeName { get; }
protected virtual string PathFormat { get { return "Assets/{0}_AssetsToDelete_{1}"; } }
protected virtual string GetRuntimePath(string testType, string suffix) { return string.Format("{0}" + Addressables.LibraryPath + "settings_{1}_TEST_{2}.json", "file://{UnityEngine.Application.dataPath}/../", testType, suffix); }
protected virtual string GetCatalogPath(string testType, string suffix) { return string.Format("{0}" + Addressables.LibraryPath + "catalog_{1}_TEST_{2}.json", "file://{UnityEngine.Application.dataPath}/../", testType, suffix); }
protected virtual ILocationSizeData CreateLocationSizeData(string name, long size, uint crc, string hash) { return null; }
private object AssetReferenceObjectKey { get { return m_PrefabKeysList.FirstOrDefault(s => s.ToString().Contains("AssetReferenceBehavior")); } }
public virtual void Setup()
{
AddressablesTestUtility.Setup(TypeName, PathFormat, "BASE");
}
[OneTimeTearDown]
public virtual void DeleteTempFiles()
{
ResourceManager.ExceptionHandler = m_PrevHandler;
AddressablesTestUtility.TearDown(TypeName, PathFormat, "BASE");
}
int m_StartingOpCount;
int m_StartingTrackedHandleCount;
int m_StartingInstanceCount;
private Action PostTearDownEvent = null;
[TearDown]
public void TearDown()
{
if (m_Addressables != null)
{
Assert.AreEqual(m_StartingOpCount, m_Addressables.ResourceManager.OperationCacheCount);
Assert.AreEqual(m_StartingTrackedHandleCount, m_Addressables.TrackedHandleCount, $"Starting tracked handle count [{m_StartingInstanceCount}], not equal to current tracked handle count [{m_Addressables.TrackedHandleCount}]");
Assert.AreEqual(m_StartingInstanceCount, m_Addressables.ResourceManager.InstanceOperationCount);
}
PostTearDownEvent?.Invoke();
PostTearDownEvent = null;
}
//we must wait for Addressables initialization to complete since we are clearing out all of its data for the tests.
public bool initializationComplete;
string currentInitType = null;
string m_RuntimeSettingsPath
{
get
{
var runtimeSettingsPath = m_Addressables.RuntimePath + "/settingsBASE.json";
#if UNITY_EDITOR
runtimeSettingsPath = GetRuntimePath(currentInitType, "BASE");
#endif
runtimeSettingsPath = m_Addressables.ResolveInternalId(runtimeSettingsPath);
return runtimeSettingsPath;
}
}
IEnumerator Init()
{
if (!initializationComplete || TypeName != currentInitType)
{
if (m_Addressables == null)
m_Addressables = new AddressablesImpl(new LRUCacheAllocationStrategy(1000, 1000, 100, 10));
if (TypeName != currentInitType)
{
currentInitType = TypeName;
yield return m_Addressables.InitializeAsync(m_RuntimeSettingsPath, "BASE", false);
foreach (var locator in m_Addressables.ResourceLocators)
{
if (locator.Keys == null)
continue;
foreach (var key in locator.Keys)
{
IList<IResourceLocation> locs;
if (locator.Locate(key, typeof(object), out locs))
{
var isPrefab = locs.All(s => s.InternalId.EndsWith(".prefab"));
if (!m_KeysHashSet.ContainsKey(key))
{
if (isPrefab)
m_PrefabKeysList.Add(key);
m_KeysHashSet.Add(key, locs.Count);
}
else
{
m_KeysHashSet[key] = m_KeysHashSet[key] + locs.Count;
}
}
}
}
initializationComplete = true;
m_PrevHandler = ResourceManager.ExceptionHandler;
ResourceManager.ExceptionHandler = null;
}
}
m_Addressables.ResourceManager.ClearDiagnosticCallbacks();
m_StartingOpCount = m_Addressables.ResourceManager.OperationCacheCount;
m_StartingTrackedHandleCount = m_Addressables.TrackedHandleCount;
m_StartingInstanceCount = m_Addressables.ResourceManager.InstanceOperationCount;
}
IEnumerator InitWithoutInitializeAsync()
{
if (!initializationComplete || TypeName != currentInitType)
{
if (m_Addressables == null)
m_Addressables = new AddressablesImpl(new LRUCacheAllocationStrategy(1000, 1000, 100, 10));
currentInitType = TypeName;
yield return this;
for (int i = 0; i < 3; i++)
{
var locator = new DynamicResourceLocator(m_Addressables);
m_Addressables.AddResourceLocator(locator);
}
initializationComplete = true;
m_PrevHandler = ResourceManager.ExceptionHandler;
ResourceManager.ExceptionHandler = null;
}
m_Addressables.ResourceManager.ClearDiagnosticCallbacks();
m_StartingOpCount = m_Addressables.ResourceManager.OperationCacheCount;
m_StartingTrackedHandleCount = m_Addressables.TrackedHandleCount;
m_StartingInstanceCount = m_Addressables.ResourceManager.InstanceOperationCount;
}
private void ResetAddressables()
{
m_Addressables = null;
currentInitType = null;
initializationComplete = false;
}
internal class DumbUpdateOperation : AsyncOperationBase<List<IResourceLocator>>
{
protected override void Execute() { }
public void CallComplete()
{
Complete(new List<IResourceLocator>(), true, string.Empty);
}
}
}
#if UNITY_EDITOR
class AddressablesIntegrationTestsFastMode : AddressablesIntegrationTests
{
protected override string TypeName { get { return "BuildScriptFastMode"; } }
protected override string GetRuntimePath(string testType, string suffix)
{
return PlayerPrefs.GetString(Addressables.kAddressablesRuntimeDataPath + TypeName, "");
}
}
class AddressablesIntegrationTestsVirtualMode : AddressablesIntegrationTests
{
protected override string TypeName { get { return "BuildScriptVirtualMode"; } }
protected override ILocationSizeData CreateLocationSizeData(string name, long size, uint crc, string hash)
{
return new UnityEngine.ResourceManagement.ResourceProviders.Simulation.VirtualAssetBundleRequestOptions()
{
BundleName = name,
BundleSize = size,
Crc = crc,
Hash = hash
};
}
}
class AddressablesIntegrationTestsPackedPlayMode : AddressablesIntegrationTests
{
protected override string TypeName { get { return "BuildScriptPackedPlayMode"; } }
protected override string GetRuntimePath(string testType, string suffix) { return "{UnityEngine.AddressableAssets.Addressables.RuntimePath}/settings" + suffix + ".json"; }
protected override string GetCatalogPath(string testType, string suffix) { return "{UnityEngine.AddressableAssets.Addressables.RuntimePath}/catalog" + suffix + ".json"; }
public override void Setup()
{
AddressablesTestUtility.Setup("BuildScriptPackedMode", PathFormat, "BASE");
AddressablesTestUtility.Setup(TypeName, PathFormat, "BASE");
}
public override void DeleteTempFiles()
{
AddressablesTestUtility.TearDown("BuildScriptPackedMode", PathFormat, "BASE");
AddressablesTestUtility.TearDown(TypeName, PathFormat, "BASE");
}
[UnityTest]
public IEnumerator GetDownloadSize_CalculatesCachedBundles()
{
return GetDownloadSize_CalculatesCachedBundlesInternal();
}
[UnityTest]
public IEnumerator GetDownloadSize_WithList_CalculatesCachedBundles()
{
return GetDownloadSize_WithList_CalculatesCachedBundlesInternal();
}
[UnityTest]
public IEnumerator GetDownloadSize_WithList_CalculatesCorrectSize_WhenAssetsReferenceSameBundle()
{
return GetDownloadSize_WithList_CalculatesCorrectSize_WhenAssetsReferenceSameBundleInternal();
}
}
#endif
class AddressablesIntegrationPlayer : AddressablesIntegrationTests
{
protected override string TypeName { get { return "BuildScriptPackedMode"; } }
protected override string GetRuntimePath(string testType, string suffix) { return "{UnityEngine.AddressableAssets.Addressables.RuntimePath}/settings" + suffix + ".json"; }
protected override string GetCatalogPath(string testType, string suffix) { return "{UnityEngine.AddressableAssets.Addressables.RuntimePath}/catalog" + suffix + ".json"; }
protected override ILocationSizeData CreateLocationSizeData(string name, long size, uint crc, string hash)
{
return new AssetBundleRequestOptions()
{
BundleName = name,
BundleSize = size,
Crc = crc,
Hash = hash
};
}
[UnityTest]
public IEnumerator GetDownloadSize_CalculatesCachedBundles()
{
return GetDownloadSize_CalculatesCachedBundlesInternal();
}
[UnityTest]
public IEnumerator GetDownloadSize_WithList_CalculatesCachedBundles()
{
return GetDownloadSize_WithList_CalculatesCachedBundlesInternal();
}
[UnityTest]
public IEnumerator GetDownloadSize_WithList_CalculatesCorrectSize_WhenAssetsReferenceSameBundle()
{
return GetDownloadSize_WithList_CalculatesCorrectSize_WhenAssetsReferenceSameBundleInternal();
}
}
}