Boat Attack使用了Universal RP的许多新图形功能,可以用于探索 Universal RP 的使用方式和技巧。
您最多选择25个主题 主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 

49 行
1.7 KiB

using NUnit.Framework;
using System.Collections.Generic;
using UnityEngine.Networking;
using System.Linq;
using UnityEngine;
using System.Runtime.CompilerServices;
[assembly: InternalsVisibleTo("Unity.RenderPipelines.HighDefinition.Editor.Tests")]
namespace UnityEditor.Rendering.Tests
{
class DocumentationTests
{
[Test]
public void Validation_GoogleOnline()
=> IsLinkValid("http://www.google.com");
[Test]
public void Validation_ErrorDown()
=> IsLinkValid("http://Error.com", shouldExist: false);
//TODO: reactivate this test once documentation is provided in Core
//[Test]
//public void AllDocumentationLinksAccessible()
//{
// foreach (var url in GetDocumentationURLsForAssembly(typeof(UnityEngine.Rendering.Documentation).Assembly))
// IsLinkValid(url);
//}
public static void IsLinkValid(string url, bool shouldExist = true)
{
using (UnityWebRequest webRequest = UnityWebRequest.Get(url))
{
var asyncOp = webRequest.SendWebRequest();
while (!webRequest.isDone)
new WaitForEndOfFrame();
Assert.IsTrue((webRequest.isNetworkError || webRequest.isHttpError) ^ shouldExist, $"{url}\n{webRequest.error}");
}
}
public static IEnumerable<string> GetDocumentationURLsForAssembly(System.Reflection.Assembly assembly)
=> TypeCache
.GetTypesWithAttribute<HelpURLAttribute>()
.Where(x => x.Assembly == assembly)
.Select(x => (x.GetCustomAttributes(typeof(HelpURLAttribute), false).First() as HelpURLAttribute).URL)
.Distinct();
}
}