forked from cefsharp/CefSharp
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBrowserRefCountTests.cs
58 lines (45 loc) · 1.74 KB
/
BrowserRefCountTests.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
57
58
// Copyright © 2022 The CefSharp Authors. All rights reserved.
//
// Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.
using System.Threading;
using CefSharp.Internals;
using CefSharp.OffScreen;
using Xunit;
using Xunit.Abstractions;
namespace CefSharp.Test.OffScreen
{
//NOTE: All Test classes must be part of this collection as it manages the Cef Initialize/Shutdown lifecycle
[Collection(CefSharpFixtureCollection.Key)]
public class BrowserRefCountTests
{
private readonly ITestOutputHelper output;
private readonly CefSharpFixture fixture;
public BrowserRefCountTests(ITestOutputHelper output, CefSharpFixture fixture)
{
this.fixture = fixture;
this.output = output;
}
[Fact]
public void ShouldWork()
{
var currentCount = BrowserRefCounter.Instance.Count;
var manualResetEvent = new ManualResetEvent(false);
var browser = new ChromiumWebBrowser("https://google.com", useLegacyRenderHandler: false);
browser.LoadingStateChanged += (sender, e) =>
{
if (!e.IsLoading)
{
manualResetEvent.Set();
}
};
manualResetEvent.WaitOne();
//TODO: Refactor this so reference is injected into browser
Assert.Equal(currentCount + 1, BrowserRefCounter.Instance.Count);
browser.Dispose();
Cef.WaitForBrowsersToClose(10000);
output.WriteLine("BrowserRefCounter Log");
output.WriteLine(BrowserRefCounter.Instance.GetLog());
Assert.Equal(0, BrowserRefCounter.Instance.Count);
}
}
}