Skip to content

Commit 8cf15f6

Browse files
committed
- Generate relative contentRoot paths in test manifests
- Fixed the public API declarations - React to changes in the WebApplicationFactory
1 parent 1bc557f commit 8cf15f6

File tree

4 files changed

+53
-2
lines changed

4 files changed

+53
-2
lines changed

src/Identity/test/Identity.FunctionalTests/Infrastructure/ServerFactory.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ protected override IHost CreateHost(IHostBuilder builder)
6363
return result;
6464
}
6565

66-
protected override TestServer CreateServer(IWebHostBuilder builder)
66+
protected override ITestServer CreateServer(IWebHostBuilder builder)
6767
{
6868
var result = base.CreateServer(builder);
6969
EnsureDatabaseCreated(result.Host.Services);

src/Mvc/Mvc.Testing.Tasks/src/GenerateMvcTestManifestTask.cs

+47-1
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,11 @@
11
// Licensed to the .NET Foundation under one or more agreements.
22
// The .NET Foundation licenses this file to you under the MIT license.
33

4+
//using System;
5+
using System;
46
using System.Collections.Generic;
57
using System.IO;
8+
using System.Linq;
69
using System.Runtime.Serialization.Json;
710
using System.Text;
811
using Microsoft.Build.Framework;
@@ -33,11 +36,14 @@ public override bool Execute()
3336
{
3437
using var fileStream = File.Create(ManifestPath);
3538
var output = new Dictionary<string, string>();
39+
var manifestDirectory = Path.GetDirectoryName(ManifestPath);
40+
3641
foreach (var project in Projects)
3742
{
3843
var contentRoot = project.GetMetadata("ContentRoot");
3944
var assemblyName = project.GetMetadata("Identity");
40-
output[assemblyName] = contentRoot;
45+
var relativeContentRoot = GetRelativePath(manifestDirectory, contentRoot);
46+
output[assemblyName] = relativeContentRoot;
4147
}
4248

4349
var serializer = new DataContractJsonSerializer(typeof(Dictionary<string, string>), new DataContractJsonSerializerSettings
@@ -49,4 +55,44 @@ public override bool Execute()
4955

5056
return !Log.HasLoggedErrors;
5157
}
58+
59+
private static string GetRelativePath(string? relativeTo, string path)
60+
{
61+
if (string.IsNullOrEmpty(relativeTo))
62+
{
63+
return path;
64+
}
65+
66+
// Ensure the paths are absolute
67+
string absoluteRelativeTo = Path.GetFullPath(relativeTo);
68+
string absolutePath = Path.GetFullPath(path);
69+
70+
// Split the paths into their components
71+
string[] relativeToParts = absoluteRelativeTo.TrimEnd(Path.DirectorySeparatorChar).Split(Path.DirectorySeparatorChar);
72+
string[] pathParts = absolutePath.TrimEnd(Path.DirectorySeparatorChar).Split(Path.DirectorySeparatorChar);
73+
74+
// Find the common base path length
75+
int commonLength = 0;
76+
while (commonLength < relativeToParts.Length && commonLength < pathParts.Length &&
77+
string.Equals(relativeToParts[commonLength], pathParts[commonLength], StringComparison.OrdinalIgnoreCase))
78+
{
79+
commonLength++;
80+
}
81+
82+
// Calculate the number of directories to go up from the relativeTo path
83+
int upDirectories = relativeToParts.Length - commonLength;
84+
85+
// Build the relative path
86+
string relativePath = string.Join(Path.DirectorySeparatorChar.ToString(), new string[upDirectories].Select(_ => "..").ToArray());
87+
if (commonLength < pathParts.Length)
88+
{
89+
if (relativePath.Length > 0)
90+
{
91+
relativePath += Path.DirectorySeparatorChar;
92+
}
93+
relativePath += string.Join(Path.DirectorySeparatorChar.ToString(), pathParts.Skip(commonLength));
94+
}
95+
96+
return relativePath;
97+
}
5298
}

src/Mvc/Mvc.Testing/src/PublicAPI.Shipped.txt

+2
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ Microsoft.AspNetCore.Mvc.Testing.WebApplicationFactory<TEntryPoint>.CreateDefaul
1616
Microsoft.AspNetCore.Mvc.Testing.WebApplicationFactory<TEntryPoint>.CreateDefaultClient(System.Uri! baseAddress, params System.Net.Http.DelegatingHandler![]! handlers) -> System.Net.Http.HttpClient!
1717
Microsoft.AspNetCore.Mvc.Testing.WebApplicationFactory<TEntryPoint>.Dispose() -> void
1818
Microsoft.AspNetCore.Mvc.Testing.WebApplicationFactory<TEntryPoint>.Factories.get -> System.Collections.Generic.IReadOnlyList<Microsoft.AspNetCore.Mvc.Testing.WebApplicationFactory<TEntryPoint!>!>!
19+
Microsoft.AspNetCore.Mvc.Testing.WebApplicationFactory<TEntryPoint>.Server.get -> Microsoft.AspNetCore.TestHost.TestServer!
1920
Microsoft.AspNetCore.Mvc.Testing.WebApplicationFactory<TEntryPoint>.WebApplicationFactory() -> void
2021
Microsoft.AspNetCore.Mvc.Testing.WebApplicationFactory<TEntryPoint>.WithWebHostBuilder(System.Action<Microsoft.AspNetCore.Hosting.IWebHostBuilder!>! configuration) -> Microsoft.AspNetCore.Mvc.Testing.WebApplicationFactory<TEntryPoint!>!
2122
Microsoft.AspNetCore.Mvc.Testing.WebApplicationFactoryClientOptions
@@ -40,6 +41,7 @@ virtual Microsoft.AspNetCore.Mvc.Testing.WebApplicationFactory<TEntryPoint>.Conf
4041
virtual Microsoft.AspNetCore.Mvc.Testing.WebApplicationFactory<TEntryPoint>.ConfigureWebHost(Microsoft.AspNetCore.Hosting.IWebHostBuilder! builder) -> void
4142
virtual Microsoft.AspNetCore.Mvc.Testing.WebApplicationFactory<TEntryPoint>.CreateHost(Microsoft.Extensions.Hosting.IHostBuilder! builder) -> Microsoft.Extensions.Hosting.IHost!
4243
virtual Microsoft.AspNetCore.Mvc.Testing.WebApplicationFactory<TEntryPoint>.CreateHostBuilder() -> Microsoft.Extensions.Hosting.IHostBuilder?
44+
virtual Microsoft.AspNetCore.Mvc.Testing.WebApplicationFactory<TEntryPoint>.CreateServer(Microsoft.AspNetCore.Hosting.IWebHostBuilder! builder) -> Microsoft.AspNetCore.TestHost.TestServer!
4345
virtual Microsoft.AspNetCore.Mvc.Testing.WebApplicationFactory<TEntryPoint>.CreateWebHostBuilder() -> Microsoft.AspNetCore.Hosting.IWebHostBuilder?
4446
virtual Microsoft.AspNetCore.Mvc.Testing.WebApplicationFactory<TEntryPoint>.Dispose(bool disposing) -> void
4547
virtual Microsoft.AspNetCore.Mvc.Testing.WebApplicationFactory<TEntryPoint>.DisposeAsync() -> System.Threading.Tasks.ValueTask
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
#nullable enable
22
Microsoft.AspNetCore.Mvc.Testing.WebApplicationFactory<TEntryPoint>.Initialize() -> void
3+
*REMOVED*Microsoft.AspNetCore.Mvc.Testing.WebApplicationFactory<TEntryPoint>.Server.get -> Microsoft.AspNetCore.TestHost.TestServer!
34
Microsoft.AspNetCore.Mvc.Testing.WebApplicationFactory<TEntryPoint>.Server.get -> Microsoft.AspNetCore.TestHost.TestServer?
45
Microsoft.AspNetCore.Mvc.Testing.WebApplicationFactory<TEntryPoint>.TestServer.get -> Microsoft.AspNetCore.TestHost.ITestServer?
6+
*REMOVED*virtual Microsoft.AspNetCore.Mvc.Testing.WebApplicationFactory<TEntryPoint>.CreateServer(Microsoft.AspNetCore.Hosting.IWebHostBuilder! builder) -> Microsoft.AspNetCore.TestHost.TestServer!
57
virtual Microsoft.AspNetCore.Mvc.Testing.WebApplicationFactory<TEntryPoint>.CreateServer(Microsoft.AspNetCore.Hosting.IWebHostBuilder! builder) -> Microsoft.AspNetCore.TestHost.ITestServer!
8+

0 commit comments

Comments
 (0)