From 71ddd257a330367384172552b44269dbbe5ae843 Mon Sep 17 00:00:00 2001 From: bd_ Date: Tue, 17 Sep 2024 23:40:09 -0400 Subject: [PATCH] test: add tests for PropCache (#1156) * test: add tests for PropCache * chore: update NDMF dependency --- .github/ProjectRoot/vpm-manifest-2022.json | 2 +- UnitTests~/PropCacheTest.meta | 3 + UnitTests~/PropCacheTest/PropCacheTest.cs | 71 +++++++++++++++++++ .../PropCacheTest/PropCacheTest.cs.meta | 3 + package.json | 2 +- 5 files changed, 79 insertions(+), 2 deletions(-) create mode 100644 UnitTests~/PropCacheTest.meta create mode 100644 UnitTests~/PropCacheTest/PropCacheTest.cs create mode 100644 UnitTests~/PropCacheTest/PropCacheTest.cs.meta diff --git a/.github/ProjectRoot/vpm-manifest-2022.json b/.github/ProjectRoot/vpm-manifest-2022.json index 306656c5..bbb71a9e 100644 --- a/.github/ProjectRoot/vpm-manifest-2022.json +++ b/.github/ProjectRoot/vpm-manifest-2022.json @@ -19,7 +19,7 @@ "dependencies": {} }, "nadena.dev.ndmf": { - "version": "1.5.0-rc.6" + "version": "1.5.0-rc.7" } } } \ No newline at end of file diff --git a/UnitTests~/PropCacheTest.meta b/UnitTests~/PropCacheTest.meta new file mode 100644 index 00000000..158892ac --- /dev/null +++ b/UnitTests~/PropCacheTest.meta @@ -0,0 +1,3 @@ +fileFormatVersion: 2 +guid: 77aba4362cec4cea91ee64c6e640b6b2 +timeCreated: 1726436552 \ No newline at end of file diff --git a/UnitTests~/PropCacheTest/PropCacheTest.cs b/UnitTests~/PropCacheTest/PropCacheTest.cs new file mode 100644 index 00000000..2b63161c --- /dev/null +++ b/UnitTests~/PropCacheTest/PropCacheTest.cs @@ -0,0 +1,71 @@ +using System; +using System.Collections; +using System.Collections.Generic; +using System.Threading; +using System.Threading.Tasks; +using nadena.dev.modular_avatar.core.editor; +using nadena.dev.ndmf.preview; +using NUnit.Framework; +using UnityEngine; +using UnityEngine.TestTools; + +namespace UnitTests.PropCacheTest +{ + public class PropCacheTest + { + [UnityTest] + public IEnumerator TestCacheInvalidation() + { + int seq = 0; + + Dictionary>> invalidators = new(); + PropCache cache = new PropCache((ctx, k) => + { + Debug.Log("Generating value for " + k); + if (!invalidators.TryGetValue(k, out var list)) + { + list = new List>(); + invalidators[k] = list; + } + + list.Add(new WeakReference(ctx)); + + return (k * 10) + seq++; + }); + + ComputeContext ctx = new ComputeContext("c1"); + int val = cache.Get(ctx, 1); + Assert.AreEqual(10, val); + + ComputeContext ctx2 = new ComputeContext("c2"); + val = cache.Get(ctx2, 1); + Assert.AreEqual(10, val); + + invalidators[1][0].TryGetTarget(out var target); + target?.Invalidate(); + + Debug.Log("Pre-flush"); + ComputeContext.FlushInvalidates(); + Debug.Log("Mid-flush"); + ComputeContext.FlushInvalidates(); + Debug.Log("Post-flush"); + + // Task processing can happen asynchronously. + + int limit = 10; + while (limit-- > 0 && (!ctx.IsInvalidated || !ctx2.IsInvalidated)) + { + Debug.Log("Waiting for invalidation: " + limit); + Thread.Sleep(100); + } + + Assert.IsTrue(ctx.IsInvalidated); + Assert.IsTrue(ctx2.IsInvalidated); + + val = cache.Get(ctx, 1); + Assert.AreEqual(12, val); + + yield return null; + } + } +} \ No newline at end of file diff --git a/UnitTests~/PropCacheTest/PropCacheTest.cs.meta b/UnitTests~/PropCacheTest/PropCacheTest.cs.meta new file mode 100644 index 00000000..ef69296a --- /dev/null +++ b/UnitTests~/PropCacheTest/PropCacheTest.cs.meta @@ -0,0 +1,3 @@ +fileFormatVersion: 2 +guid: 6891e8d136c942878bca9b50b5c58ec9 +timeCreated: 1726436558 \ No newline at end of file diff --git a/package.json b/package.json index 0855ccce..75123de2 100644 --- a/package.json +++ b/package.json @@ -16,6 +16,6 @@ }, "vpmDependencies": { "com.vrchat.avatars": ">=3.7.0", - "nadena.dev.ndmf": ">=1.5.0-rc.6 <2.0.0-a" + "nadena.dev.ndmf": ">=1.5.0-rc.7 <2.0.0-a" } }