-
Notifications
You must be signed in to change notification settings - Fork 824
/
Copy pathShaderGraphSearcherDatabaseProviderTest.cs
56 lines (50 loc) · 2.24 KB
/
ShaderGraphSearcherDatabaseProviderTest.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
using NUnit.Framework;
using Unity.ItemLibrary.Editor;
using UnityEditor.ShaderGraph.GraphDelta;
namespace UnityEditor.ShaderGraph.GraphUI.UnitTests
{
[TestFixture]
class ShaderGraphSearcherDatabaseProviderTest
{
// TODO (Brett) Correct this test once a testable registry can be created.
//[Test]
public void GetNodeSearcherItems_Basic()
{
// make a registry
// load some node descriptors
// make a mock shader graph model
// get the list of node seacher items
// check that the display names are in the list as searcher item names
// make sure that a ItemLibraryDatabase can be made
}
// TODO (Brett) This test is currently not being run as part of the suite
// because the "empty" registry is actually filled with 207 keys.
// TODO (Brett) Make this test correct.
//[Test]
public void GetNodeSearcherItems_WithEmptyRegistry()
{
// Setup
ShaderGraphRegistry registry = new ShaderGraphRegistry();
SGGraphModel graphModel = new SGGraphModelMock(registry);
// Test ItemLibraryItem list from an empty registry
var searcherItems = ShaderGraphSearcherDatabaseProvider.GetNodeSearcherItems(graphModel);
Assert.Zero(searcherItems.Count, "ItemLibraryItem list created from an empty Registry should be empty");
// Test ItemLibraryDatabase creation from empty ItemLibraryItem list
Assert.DoesNotThrow(() =>
{
ItemLibraryDatabase db = new(searcherItems);
}, "Should be able to create a ItemLibraryDatabase from an empty ItemLibraryItem list");
}
// TODO (Brett) Correct this test once a testable registry can be created.
//[Test]
public void GetNodeSearcherItems_WithDuplicates()
{
// make a registry
// add multiple node descriptors with the same display name
// make a mock shader graph model
// get the list of node seacher items
// check that the duplicated dispaly name only appears in one searcher item
// make sure that a ItemLibraryDatabase can be made
}
}
}