-
Notifications
You must be signed in to change notification settings - Fork 160
Expand file tree
/
Copy pathClearScriptTest.cs
More file actions
52 lines (41 loc) · 1.75 KB
/
ClearScriptTest.cs
File metadata and controls
52 lines (41 loc) · 1.75 KB
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
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT license.
using System;
using System.Net.Http;
using System.Runtime.InteropServices;
using System.Threading;
using Microsoft.ClearScript.V8;
using Microsoft.VisualStudio.TestTools.UnitTesting;
namespace Microsoft.ClearScript.Test
{
public class ClearScriptTest
{
public TestContext TestContext { get; set; }
public void BaseTestInitialize()
{
((DefaultDocumentLoader)DocumentLoader.Default).HttpClientHandlerFactory = static () => new HttpClientHandler { ServerCertificateCustomValidationCallback = static (_, _, _, _) => true };
}
public void BaseTestCleanup()
{
((DefaultDocumentLoader)DocumentLoader.Default).HttpClientHandlerFactory = null;
DocumentLoader.Default.DiscardCachedDocuments();
GC.Collect();
GC.WaitForPendingFinalizers();
var proxy = V8TestProxy.Create();
var statistics = proxy.GetStatistics();
for (var attempts = 0; attempts < 10; attempts++)
{
if ((statistics.ContextCount == 0UL) && (statistics.IsolateCount == 0UL))
{
return;
}
Thread.Sleep(100);
statistics = proxy.GetStatistics();
}
Assert.AreEqual(0UL, statistics.ContextCount, "Not all V8 contexts were destroyed.");
Assert.AreEqual(0UL, statistics.IsolateCount, "Not all V8 isolates were destroyed.");
}
protected bool IsNetFramework => RuntimeInformation.FrameworkDescription.StartsWith(".NET Framework", StringComparison.Ordinal);
protected string HttpBinUrl => "http://localhost:9339";
}
}