From 1faaefef306b96df1fcafaaafeadac0322956fa6 Mon Sep 17 00:00:00 2001 From: Stephen Halter Date: Mon, 10 Apr 2017 11:43:12 -0700 Subject: [PATCH] Fix Libuv.Tests directory name (#1646) --- KestrelHttpServer.sln | 2 +- .../ConnectionTests.cs | 0 .../LibuvOutputConsumerTests.cs | 0 .../LibuvTransportFactoryTests.cs | 0 .../LibuvTransportOptionsTests.cs | 0 .../LibuvTransportTests.cs | 0 .../ListenerPrimaryTests.cs | 0 ...osoft.AspNetCore.Server.Kestrel.Transport.Libuv.Tests.csproj | 0 .../MultipleLoopTests.cs | 0 .../NetworkingTests.cs | 0 .../TestHelpers/MockConnection.cs | 0 .../TestHelpers/MockConnectionHandler.cs | 0 .../TestHelpers/MockLibuv.cs | 0 .../TestHelpers/MockSocket.cs | 0 .../TestHelpers/TestConstants.cs | 0 .../TestHelpers/TestLibuvTransportContext.cs | 0 .../UvStreamHandleTests.cs | 0 .../UvTimerHandleTests.cs | 0 .../xunit.runner.json | 0 19 files changed, 1 insertion(+), 1 deletion(-) rename test/{Microsoft.AspNetCore.Server.Transport.Libuv.Tests => Microsoft.AspNetCore.Server.Kestrel.Transport.Libuv.Tests}/ConnectionTests.cs (100%) rename test/{Microsoft.AspNetCore.Server.Transport.Libuv.Tests => Microsoft.AspNetCore.Server.Kestrel.Transport.Libuv.Tests}/LibuvOutputConsumerTests.cs (100%) rename test/{Microsoft.AspNetCore.Server.Transport.Libuv.Tests => Microsoft.AspNetCore.Server.Kestrel.Transport.Libuv.Tests}/LibuvTransportFactoryTests.cs (100%) rename test/{Microsoft.AspNetCore.Server.Transport.Libuv.Tests => Microsoft.AspNetCore.Server.Kestrel.Transport.Libuv.Tests}/LibuvTransportOptionsTests.cs (100%) rename test/{Microsoft.AspNetCore.Server.Transport.Libuv.Tests => Microsoft.AspNetCore.Server.Kestrel.Transport.Libuv.Tests}/LibuvTransportTests.cs (100%) rename test/{Microsoft.AspNetCore.Server.Transport.Libuv.Tests => Microsoft.AspNetCore.Server.Kestrel.Transport.Libuv.Tests}/ListenerPrimaryTests.cs (100%) rename test/{Microsoft.AspNetCore.Server.Transport.Libuv.Tests => Microsoft.AspNetCore.Server.Kestrel.Transport.Libuv.Tests}/Microsoft.AspNetCore.Server.Kestrel.Transport.Libuv.Tests.csproj (100%) rename test/{Microsoft.AspNetCore.Server.Transport.Libuv.Tests => Microsoft.AspNetCore.Server.Kestrel.Transport.Libuv.Tests}/MultipleLoopTests.cs (100%) rename test/{Microsoft.AspNetCore.Server.Transport.Libuv.Tests => Microsoft.AspNetCore.Server.Kestrel.Transport.Libuv.Tests}/NetworkingTests.cs (100%) rename test/{Microsoft.AspNetCore.Server.Transport.Libuv.Tests => Microsoft.AspNetCore.Server.Kestrel.Transport.Libuv.Tests}/TestHelpers/MockConnection.cs (100%) rename test/{Microsoft.AspNetCore.Server.Transport.Libuv.Tests => Microsoft.AspNetCore.Server.Kestrel.Transport.Libuv.Tests}/TestHelpers/MockConnectionHandler.cs (100%) rename test/{Microsoft.AspNetCore.Server.Transport.Libuv.Tests => Microsoft.AspNetCore.Server.Kestrel.Transport.Libuv.Tests}/TestHelpers/MockLibuv.cs (100%) rename test/{Microsoft.AspNetCore.Server.Transport.Libuv.Tests => Microsoft.AspNetCore.Server.Kestrel.Transport.Libuv.Tests}/TestHelpers/MockSocket.cs (100%) rename test/{Microsoft.AspNetCore.Server.Transport.Libuv.Tests => Microsoft.AspNetCore.Server.Kestrel.Transport.Libuv.Tests}/TestHelpers/TestConstants.cs (100%) rename test/{Microsoft.AspNetCore.Server.Transport.Libuv.Tests => Microsoft.AspNetCore.Server.Kestrel.Transport.Libuv.Tests}/TestHelpers/TestLibuvTransportContext.cs (100%) rename test/{Microsoft.AspNetCore.Server.Transport.Libuv.Tests => Microsoft.AspNetCore.Server.Kestrel.Transport.Libuv.Tests}/UvStreamHandleTests.cs (100%) rename test/{Microsoft.AspNetCore.Server.Transport.Libuv.Tests => Microsoft.AspNetCore.Server.Kestrel.Transport.Libuv.Tests}/UvTimerHandleTests.cs (100%) rename test/{Microsoft.AspNetCore.Server.Transport.Libuv.Tests => Microsoft.AspNetCore.Server.Kestrel.Transport.Libuv.Tests}/xunit.runner.json (100%) diff --git a/KestrelHttpServer.sln b/KestrelHttpServer.sln index 5119c68fa0..a2fc4e3108 100644 --- a/KestrelHttpServer.sln +++ b/KestrelHttpServer.sln @@ -64,7 +64,7 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.AspNetCore.Server EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions", "src\Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions\Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions.csproj", "{2E9CB89D-EC8F-4DD9-A72B-08D5BABF752D}" EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.AspNetCore.Server.Kestrel.Transport.Libuv.Tests", "test\Microsoft.AspNetCore.Server.Transport.Libuv.Tests\Microsoft.AspNetCore.Server.Kestrel.Transport.Libuv.Tests.csproj", "{D95A7EC3-48AC-4D03-B2E2-0DA3E13BD3A4}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.AspNetCore.Server.Kestrel.Transport.Libuv.Tests", "test\Microsoft.AspNetCore.Server.Kestrel.Transport.Libuv.Tests\Microsoft.AspNetCore.Server.Kestrel.Transport.Libuv.Tests.csproj", "{D95A7EC3-48AC-4D03-B2E2-0DA3E13BD3A4}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.AspNetCore.Server.Kestrel.Tests", "test\Microsoft.AspNetCore.Server.Kestrel.Tests\Microsoft.AspNetCore.Server.Kestrel.Tests.csproj", "{4F1C30F8-CCAA-48D7-9DF6-2A84021F5BCC}" EndProject diff --git a/test/Microsoft.AspNetCore.Server.Transport.Libuv.Tests/ConnectionTests.cs b/test/Microsoft.AspNetCore.Server.Kestrel.Transport.Libuv.Tests/ConnectionTests.cs similarity index 100% rename from test/Microsoft.AspNetCore.Server.Transport.Libuv.Tests/ConnectionTests.cs rename to test/Microsoft.AspNetCore.Server.Kestrel.Transport.Libuv.Tests/ConnectionTests.cs diff --git a/test/Microsoft.AspNetCore.Server.Transport.Libuv.Tests/LibuvOutputConsumerTests.cs b/test/Microsoft.AspNetCore.Server.Kestrel.Transport.Libuv.Tests/LibuvOutputConsumerTests.cs similarity index 100% rename from test/Microsoft.AspNetCore.Server.Transport.Libuv.Tests/LibuvOutputConsumerTests.cs rename to test/Microsoft.AspNetCore.Server.Kestrel.Transport.Libuv.Tests/LibuvOutputConsumerTests.cs diff --git a/test/Microsoft.AspNetCore.Server.Transport.Libuv.Tests/LibuvTransportFactoryTests.cs b/test/Microsoft.AspNetCore.Server.Kestrel.Transport.Libuv.Tests/LibuvTransportFactoryTests.cs similarity index 100% rename from test/Microsoft.AspNetCore.Server.Transport.Libuv.Tests/LibuvTransportFactoryTests.cs rename to test/Microsoft.AspNetCore.Server.Kestrel.Transport.Libuv.Tests/LibuvTransportFactoryTests.cs diff --git a/test/Microsoft.AspNetCore.Server.Transport.Libuv.Tests/LibuvTransportOptionsTests.cs b/test/Microsoft.AspNetCore.Server.Kestrel.Transport.Libuv.Tests/LibuvTransportOptionsTests.cs similarity index 100% rename from test/Microsoft.AspNetCore.Server.Transport.Libuv.Tests/LibuvTransportOptionsTests.cs rename to test/Microsoft.AspNetCore.Server.Kestrel.Transport.Libuv.Tests/LibuvTransportOptionsTests.cs diff --git a/test/Microsoft.AspNetCore.Server.Transport.Libuv.Tests/LibuvTransportTests.cs b/test/Microsoft.AspNetCore.Server.Kestrel.Transport.Libuv.Tests/LibuvTransportTests.cs similarity index 100% rename from test/Microsoft.AspNetCore.Server.Transport.Libuv.Tests/LibuvTransportTests.cs rename to test/Microsoft.AspNetCore.Server.Kestrel.Transport.Libuv.Tests/LibuvTransportTests.cs diff --git a/test/Microsoft.AspNetCore.Server.Transport.Libuv.Tests/ListenerPrimaryTests.cs b/test/Microsoft.AspNetCore.Server.Kestrel.Transport.Libuv.Tests/ListenerPrimaryTests.cs similarity index 100% rename from test/Microsoft.AspNetCore.Server.Transport.Libuv.Tests/ListenerPrimaryTests.cs rename to test/Microsoft.AspNetCore.Server.Kestrel.Transport.Libuv.Tests/ListenerPrimaryTests.cs diff --git a/test/Microsoft.AspNetCore.Server.Transport.Libuv.Tests/Microsoft.AspNetCore.Server.Kestrel.Transport.Libuv.Tests.csproj b/test/Microsoft.AspNetCore.Server.Kestrel.Transport.Libuv.Tests/Microsoft.AspNetCore.Server.Kestrel.Transport.Libuv.Tests.csproj similarity index 100% rename from test/Microsoft.AspNetCore.Server.Transport.Libuv.Tests/Microsoft.AspNetCore.Server.Kestrel.Transport.Libuv.Tests.csproj rename to test/Microsoft.AspNetCore.Server.Kestrel.Transport.Libuv.Tests/Microsoft.AspNetCore.Server.Kestrel.Transport.Libuv.Tests.csproj diff --git a/test/Microsoft.AspNetCore.Server.Transport.Libuv.Tests/MultipleLoopTests.cs b/test/Microsoft.AspNetCore.Server.Kestrel.Transport.Libuv.Tests/MultipleLoopTests.cs similarity index 100% rename from test/Microsoft.AspNetCore.Server.Transport.Libuv.Tests/MultipleLoopTests.cs rename to test/Microsoft.AspNetCore.Server.Kestrel.Transport.Libuv.Tests/MultipleLoopTests.cs diff --git a/test/Microsoft.AspNetCore.Server.Transport.Libuv.Tests/NetworkingTests.cs b/test/Microsoft.AspNetCore.Server.Kestrel.Transport.Libuv.Tests/NetworkingTests.cs similarity index 100% rename from test/Microsoft.AspNetCore.Server.Transport.Libuv.Tests/NetworkingTests.cs rename to test/Microsoft.AspNetCore.Server.Kestrel.Transport.Libuv.Tests/NetworkingTests.cs diff --git a/test/Microsoft.AspNetCore.Server.Transport.Libuv.Tests/TestHelpers/MockConnection.cs b/test/Microsoft.AspNetCore.Server.Kestrel.Transport.Libuv.Tests/TestHelpers/MockConnection.cs similarity index 100% rename from test/Microsoft.AspNetCore.Server.Transport.Libuv.Tests/TestHelpers/MockConnection.cs rename to test/Microsoft.AspNetCore.Server.Kestrel.Transport.Libuv.Tests/TestHelpers/MockConnection.cs diff --git a/test/Microsoft.AspNetCore.Server.Transport.Libuv.Tests/TestHelpers/MockConnectionHandler.cs b/test/Microsoft.AspNetCore.Server.Kestrel.Transport.Libuv.Tests/TestHelpers/MockConnectionHandler.cs similarity index 100% rename from test/Microsoft.AspNetCore.Server.Transport.Libuv.Tests/TestHelpers/MockConnectionHandler.cs rename to test/Microsoft.AspNetCore.Server.Kestrel.Transport.Libuv.Tests/TestHelpers/MockConnectionHandler.cs diff --git a/test/Microsoft.AspNetCore.Server.Transport.Libuv.Tests/TestHelpers/MockLibuv.cs b/test/Microsoft.AspNetCore.Server.Kestrel.Transport.Libuv.Tests/TestHelpers/MockLibuv.cs similarity index 100% rename from test/Microsoft.AspNetCore.Server.Transport.Libuv.Tests/TestHelpers/MockLibuv.cs rename to test/Microsoft.AspNetCore.Server.Kestrel.Transport.Libuv.Tests/TestHelpers/MockLibuv.cs diff --git a/test/Microsoft.AspNetCore.Server.Transport.Libuv.Tests/TestHelpers/MockSocket.cs b/test/Microsoft.AspNetCore.Server.Kestrel.Transport.Libuv.Tests/TestHelpers/MockSocket.cs similarity index 100% rename from test/Microsoft.AspNetCore.Server.Transport.Libuv.Tests/TestHelpers/MockSocket.cs rename to test/Microsoft.AspNetCore.Server.Kestrel.Transport.Libuv.Tests/TestHelpers/MockSocket.cs diff --git a/test/Microsoft.AspNetCore.Server.Transport.Libuv.Tests/TestHelpers/TestConstants.cs b/test/Microsoft.AspNetCore.Server.Kestrel.Transport.Libuv.Tests/TestHelpers/TestConstants.cs similarity index 100% rename from test/Microsoft.AspNetCore.Server.Transport.Libuv.Tests/TestHelpers/TestConstants.cs rename to test/Microsoft.AspNetCore.Server.Kestrel.Transport.Libuv.Tests/TestHelpers/TestConstants.cs diff --git a/test/Microsoft.AspNetCore.Server.Transport.Libuv.Tests/TestHelpers/TestLibuvTransportContext.cs b/test/Microsoft.AspNetCore.Server.Kestrel.Transport.Libuv.Tests/TestHelpers/TestLibuvTransportContext.cs similarity index 100% rename from test/Microsoft.AspNetCore.Server.Transport.Libuv.Tests/TestHelpers/TestLibuvTransportContext.cs rename to test/Microsoft.AspNetCore.Server.Kestrel.Transport.Libuv.Tests/TestHelpers/TestLibuvTransportContext.cs diff --git a/test/Microsoft.AspNetCore.Server.Transport.Libuv.Tests/UvStreamHandleTests.cs b/test/Microsoft.AspNetCore.Server.Kestrel.Transport.Libuv.Tests/UvStreamHandleTests.cs similarity index 100% rename from test/Microsoft.AspNetCore.Server.Transport.Libuv.Tests/UvStreamHandleTests.cs rename to test/Microsoft.AspNetCore.Server.Kestrel.Transport.Libuv.Tests/UvStreamHandleTests.cs diff --git a/test/Microsoft.AspNetCore.Server.Transport.Libuv.Tests/UvTimerHandleTests.cs b/test/Microsoft.AspNetCore.Server.Kestrel.Transport.Libuv.Tests/UvTimerHandleTests.cs similarity index 100% rename from test/Microsoft.AspNetCore.Server.Transport.Libuv.Tests/UvTimerHandleTests.cs rename to test/Microsoft.AspNetCore.Server.Kestrel.Transport.Libuv.Tests/UvTimerHandleTests.cs diff --git a/test/Microsoft.AspNetCore.Server.Transport.Libuv.Tests/xunit.runner.json b/test/Microsoft.AspNetCore.Server.Kestrel.Transport.Libuv.Tests/xunit.runner.json similarity index 100% rename from test/Microsoft.AspNetCore.Server.Transport.Libuv.Tests/xunit.runner.json rename to test/Microsoft.AspNetCore.Server.Kestrel.Transport.Libuv.Tests/xunit.runner.json