Skip to content

Commit a732283

Browse files
authored
test: get rid of separate TestServer package (#3035)
1 parent b2ebd13 commit a732283

File tree

218 files changed

+18
-125
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

218 files changed

+18
-125
lines changed

src/Playwright.Tests.TestServer/Playwright.Tests.TestServer.csproj

-25
This file was deleted.

src/Playwright.Tests.TestServer/Properties/launchSettings.json

-27
This file was deleted.

src/Playwright.Tests/Assertions/APIResponseAssertionsTests.cs

-2
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,6 @@
2222
* SOFTWARE.
2323
*/
2424

25-
using Microsoft.AspNetCore.Http;
26-
2725
namespace Microsoft.Playwright.Tests.Assertions;
2826

2927
public class APIResponseAssertionsTests : PageTestEx

src/Playwright.Tests/BaseTests/HttpService.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ public static Task<HttpService> Register(WorkerAwareTest test)
3636
var workerIndex = test.WorkerIndex;
3737
return test.RegisterService("Http", async () =>
3838
{
39-
var assetDir = Path.Combine(TestUtils.FindParentDirectory("Playwright.Tests.TestServer"), "assets");
39+
var assetDir = Path.Combine(TestUtils.FindParentDirectory("Playwright.Tests"), "assets");
4040
var http = new HttpService
4141
{
4242
Server = SimpleServer.Create(8907 + workerIndex * 2, assetDir),

src/Playwright.Tests/BrowserContextBasicTests.cs

-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@
2424
*/
2525

2626
using System.Net;
27-
using Microsoft.AspNetCore.Http;
2827

2928
namespace Microsoft.Playwright.Tests;
3029

src/Playwright.Tests/BrowserContextEventsTests.cs

-2
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,6 @@
2222
* SOFTWARE.
2323
*/
2424

25-
using Microsoft.AspNetCore.Http;
26-
2725
namespace Microsoft.Playwright.Tests;
2826

2927
public class BrowserContextEventsTests : PageTestEx

src/Playwright.Tests/BrowserContextFetchTests.cs

-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@
2424

2525
using System.Text.Json;
2626
using System.Text.Json.Serialization;
27-
using Microsoft.AspNetCore.Http;
2827

2928
namespace Microsoft.Playwright.Tests;
3029

src/Playwright.Tests/BrowserTypeConnectTests.cs

-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@
2525
using System.Diagnostics;
2626
using System.IO.Compression;
2727
using System.Text;
28-
using Microsoft.AspNetCore.Http;
2928
using Microsoft.Playwright.Helpers;
3029

3130
namespace Microsoft.Playwright.Tests;

src/Playwright.Tests/CapabilitiesTests.cs

-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@
2323
*/
2424

2525
using System.Globalization;
26-
using Microsoft.AspNetCore.Http;
2726

2827
namespace Microsoft.Playwright.Tests;
2928

src/Playwright.Tests/ClientCertficatesTests.cs

-3
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,6 @@
2424

2525
using System.Net;
2626
using System.Security.Cryptography.X509Certificates;
27-
using Microsoft.AspNetCore.Builder;
28-
using Microsoft.AspNetCore.Hosting;
29-
using Microsoft.AspNetCore.Http;
3027
using Microsoft.AspNetCore.Server.Kestrel.Https;
3128

3229
namespace Microsoft.Playwright.Tests;

src/Playwright.Tests/DefaultBrowserContext1Tests.cs

-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@
2323
*/
2424

2525
using System.Net;
26-
using Microsoft.AspNetCore.Http;
2726

2827
namespace Microsoft.Playwright.Tests;
2928

src/Playwright.Tests/DownloadTests.cs

-2
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,6 @@
2222
* SOFTWARE.
2323
*/
2424

25-
using Microsoft.AspNetCore.Http;
26-
2725
namespace Microsoft.Playwright.Tests;
2826

2927
///<playwright-file>download.spec.ts</playwright-file>

src/Playwright.Tests/DownloadsPathTests.cs

-2
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,6 @@
2222
* SOFTWARE.
2323
*/
2424

25-
using Microsoft.AspNetCore.Http;
26-
2725
namespace Microsoft.Playwright.Tests;
2826

2927
public class DownloadsPathTests : PlaywrightTestEx

src/Playwright.Tests/FrameGoToTests.cs

-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@
2424
*/
2525

2626
using System.Net;
27-
using Microsoft.AspNetCore.Http;
2827

2928
namespace Microsoft.Playwright.Tests;
3029

src/Playwright.Tests/GlobalFetchTests.cs

-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@
2525
using System.Globalization;
2626
using System.Text;
2727
using System.Text.Json;
28-
using Microsoft.AspNetCore.Http;
2928

3029
namespace Microsoft.Playwright.Tests;
3130

src/Playwright.Tests/IgnoreHttpsErrorsTests.cs

-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@
2424
*/
2525

2626
using System.Net;
27-
using Microsoft.AspNetCore.Http;
2827

2928
namespace Microsoft.Playwright.Tests;
3029

src/Playwright.Tests/PageAutoWaitingBasicTests.cs

-2
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,6 @@
2222
* SOFTWARE.
2323
*/
2424

25-
using Microsoft.AspNetCore.Http;
26-
2725
namespace Microsoft.Playwright.Tests;
2826

2927
public class PageAutoWaitingBasicTests : PageTestEx

src/Playwright.Tests/PageClockTests.cs

-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@
2323
*/
2424

2525
using System.Text.Json;
26-
using Microsoft.AspNetCore.Http;
2726

2827
namespace Microsoft.Playwright.Tests;
2928

src/Playwright.Tests/PageGotoTests.cs

-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@
2525

2626
using System.Globalization;
2727
using System.Net;
28-
using Microsoft.AspNetCore.Http;
2928

3029
namespace Microsoft.Playwright.Tests;
3130

src/Playwright.Tests/PageNavigationTests.cs

-2
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,6 @@
2222
* SOFTWARE.
2323
*/
2424

25-
using Microsoft.AspNetCore.Http;
26-
2725
namespace Microsoft.Playwright.Tests;
2826

2927
public class PageNavigationTests : PageTestEx

src/Playwright.Tests/PageNetworkIdleTests.cs

-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@
2626
using System.Collections.Concurrent;
2727
using System.Diagnostics;
2828
using System.Net;
29-
using Microsoft.AspNetCore.Http;
3029

3130
namespace Microsoft.Playwright.Tests;
3231

src/Playwright.Tests/PageNetworkRequestTest.cs

-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@
2323
*/
2424

2525
using System.Text.Json;
26-
using Microsoft.AspNetCore.Http;
2726

2827
namespace Microsoft.Playwright.Tests;
2928

src/Playwright.Tests/PageNetworkResponseTests.cs

-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@
2525
using System.Net;
2626
using System.Text.Json.Serialization;
2727
using System.Text.RegularExpressions;
28-
using Microsoft.AspNetCore.Http;
2928
using Microsoft.AspNetCore.Http.Features;
3029

3130
namespace Microsoft.Playwright.Tests;

src/Playwright.Tests/PageRequestFulfillTests.cs

-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@
2323
*/
2424

2525
using System.Net;
26-
using Microsoft.AspNetCore.Http;
2726

2827
namespace Microsoft.Playwright.Tests;
2928

src/Playwright.Tests/PageRequestInterceptTests.cs

-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@
2323
*/
2424

2525
using System.Text.Json;
26-
using Microsoft.AspNetCore.Http;
2726

2827
namespace Microsoft.Playwright.Tests;
2928

src/Playwright.Tests/PageRouteTests.cs

-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@
2525
using System.Globalization;
2626
using System.Net;
2727
using System.Text.RegularExpressions;
28-
using Microsoft.AspNetCore.Http;
2928
using Microsoft.Extensions.Primitives;
3029

3130
namespace Microsoft.Playwright.Tests;

src/Playwright.Tests/PageWaitForLoadStateTests.cs

-2
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,6 @@
2323
* SOFTWARE.
2424
*/
2525

26-
using Microsoft.AspNetCore.Http;
27-
2826
namespace Microsoft.Playwright.Tests;
2927

3028
///<playwright-file>page-wait-for-load-state.ts</playwright-file>

src/Playwright.Tests/PageWaitForUrlTests.cs

-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@
2323
*/
2424

2525
using System.Text.RegularExpressions;
26-
using Microsoft.AspNetCore.Http;
2726

2827
namespace Microsoft.Playwright.Tests;
2928

src/Playwright.Tests/Playwright.Tests.csproj

+7-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0" encoding="utf-8"?>
2-
<Project Sdk="Microsoft.NET.Sdk">
2+
<Project Sdk="Microsoft.NET.Sdk.Web">
33
<PropertyGroup>
44
<TargetFrameworks>net8.0</TargetFrameworks>
55
<LangVersion>12</LangVersion>
@@ -11,6 +11,12 @@
1111
<ImplicitUsings>enable</ImplicitUsings>
1212
</PropertyGroup>
1313
<Import Project="../Common/SignAssembly.props" />
14+
<ItemGroup>
15+
<None Update="TestServer/key.pfx">
16+
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
17+
</None>
18+
<Folder Include="assets\" />
19+
</ItemGroup>
1420
<ItemGroup>
1521
<PackageReference Include="coverlet.collector" Version="3.1.2">
1622
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
@@ -27,7 +33,6 @@
2733
</ItemGroup>
2834
<ItemGroup>
2935
<ProjectReference Include="..\Playwright\Playwright.csproj" />
30-
<ProjectReference Include="..\Playwright.Tests.TestServer\Playwright.Tests.TestServer.csproj" />
3136
<ProjectReference Include="..\Playwright.NUnit\Playwright.NUnit.csproj" />
3237
</ItemGroup>
3338
</Project>

src/Playwright.Tests/ProxyTests.cs

-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@
2323
*/
2424

2525
using System.Text;
26-
using Microsoft.AspNetCore.Http;
2726

2827
namespace Microsoft.Playwright.Tests;
2928

src/Playwright.Tests/ResourceTimingTests.cs

-2
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,6 @@
2222
* SOFTWARE.
2323
*/
2424

25-
using Microsoft.AspNetCore.Http;
26-
2725
namespace Microsoft.Playwright.Tests;
2826

2927
///<playwright-file>resource-timing.spec.ts</playwright-file>

src/Playwright.Tests.TestServer/SimpleServer.cs src/Playwright.Tests/TestServer/SimpleServer.cs

+1-11
Original file line numberDiff line numberDiff line change
@@ -23,26 +23,16 @@
2323
* SOFTWARE.
2424
*/
2525

26-
using System;
2726
using System.Collections.Concurrent;
28-
using System.Collections.Generic;
29-
using System.IO;
3027
using System.IO.Compression;
3128
using System.Net;
3229
using System.Net.WebSockets;
3330
using System.Reflection;
3431
using System.Security.Cryptography.X509Certificates;
3532
using System.Text;
3633
using System.Text.RegularExpressions;
37-
using System.Threading;
38-
using System.Threading.Tasks;
39-
using Microsoft.AspNetCore.Builder;
40-
using Microsoft.AspNetCore.Hosting;
41-
using Microsoft.AspNetCore.Http;
4234
using Microsoft.AspNetCore.Http.Features;
4335
using Microsoft.AspNetCore.StaticFiles;
44-
using Microsoft.Extensions.DependencyInjection;
45-
using Microsoft.Extensions.Logging;
4636
using NUnit.Framework.Internal;
4737

4838
namespace Microsoft.Playwright.Tests.TestServer;
@@ -155,7 +145,7 @@ public SimpleServer(int port, string contentRoot, bool isHttps)
155145
{
156146
if (isHttps)
157147
{
158-
var cert = new X509Certificate2("key.pfx", "aaaa");
148+
var cert = new X509Certificate2("TestServer/key.pfx", "aaaa");
159149
options.Listen(IPAddress.Loopback, port, listenOptions => listenOptions.UseHttps(cert));
160150
}
161151
else

src/Playwright.Tests.TestServer/WebSocketWithEvents.cs src/Playwright.Tests/TestServer/WebSocketWithEvents.cs

-4
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,8 @@
2222
* SOFTWARE.
2323
*/
2424

25-
using System;
2625
using System.Net.WebSockets;
2726
using System.Text;
28-
using System.Threading;
29-
using System.Threading.Tasks;
30-
using Microsoft.AspNetCore.Http;
3127

3228
namespace Microsoft.Playwright.Tests.TestServer;
3329

src/Playwright.Tests/TestUtils.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ internal static async Task RegisterEngineWithPathAsync(IPlaywright playwright, s
113113
}
114114
}
115115

116-
internal static string GetAsset(string path) => Path.Combine(FindParentDirectory("Playwright.Tests.TestServer"), "assets", path);
116+
internal static string GetAsset(string path) => Path.Combine(FindParentDirectory("Playwright.Tests"), "assets", path);
117117

118118
internal static async Task VerifyViewportAsync(IPage page, int width, int height)
119119
{

0 commit comments

Comments
 (0)