109 lines
4.2 KiB
C#
109 lines
4.2 KiB
C#
// Copyright (c) .NET Foundation. All rights reserved.
|
|
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
|
|
|
|
using System;
|
|
using System.IO;
|
|
using System.Net;
|
|
using System.Net.Http;
|
|
using System.Threading.Tasks;
|
|
using Microsoft.AspNetCore.Server.IntegrationTesting;
|
|
using Microsoft.Extensions.Logging;
|
|
using Xunit;
|
|
|
|
namespace Microsoft.AspNetCore.Localization.FunctionalTests
|
|
{
|
|
public class TestRunner
|
|
{
|
|
private const string ApplicationBasePath = "http://localhost:0";
|
|
|
|
private string _applicationPath;
|
|
|
|
public TestRunner(string applicationPath)
|
|
{
|
|
_applicationPath = Path.Combine(ResolveRootFolder(AppContext.BaseDirectory), applicationPath);
|
|
}
|
|
|
|
private static string ResolveRootFolder(string projectFolder)
|
|
{
|
|
var di = new DirectoryInfo(projectFolder);
|
|
|
|
while (di.Parent != null)
|
|
{
|
|
var globalJsonPath = Path.Combine(di.FullName, "version.props");
|
|
|
|
if (File.Exists(globalJsonPath))
|
|
{
|
|
return di.FullName;
|
|
}
|
|
|
|
di = di.Parent;
|
|
}
|
|
|
|
// If we don't find any files then make the project folder the root
|
|
return projectFolder;
|
|
}
|
|
|
|
private async Task<string> RunTestAndGetResponse(
|
|
RuntimeArchitecture runtimeArchitecture,
|
|
string environmentName,
|
|
string locale)
|
|
{
|
|
var loggerFactory = new LoggerFactory();
|
|
|
|
var deploymentParameters = new DeploymentParameters(_applicationPath, ServerType.Kestrel, RuntimeFlavor.CoreClr, runtimeArchitecture)
|
|
{
|
|
ApplicationBaseUriHint = ApplicationBasePath,
|
|
EnvironmentName = environmentName,
|
|
TargetFramework = "netcoreapp2.0"
|
|
};
|
|
|
|
using (var deployer = ApplicationDeployerFactory.Create(deploymentParameters, loggerFactory))
|
|
{
|
|
var deploymentResult = await deployer.DeployAsync();
|
|
|
|
var cookie = new Cookie(CookieRequestCultureProvider.DefaultCookieName, "c=" + locale + "|uic=" + locale);
|
|
var cookieContainer = new CookieContainer();
|
|
cookieContainer.Add(new Uri(deploymentResult.ApplicationBaseUri), cookie);
|
|
|
|
var httpClientHandler = new HttpClientHandler();
|
|
httpClientHandler.CookieContainer = cookieContainer;
|
|
|
|
using (var httpClient = new HttpClient(httpClientHandler) { BaseAddress = new Uri(deploymentResult.ApplicationBaseUri) })
|
|
{
|
|
var logger = loggerFactory.CreateLogger(string.Format("Localization Test Site:{0}:{1}", ServerType.Kestrel, runtimeArchitecture));
|
|
|
|
// Request to base address and check if various parts of the body are rendered & measure the cold startup time.
|
|
var response = await RetryHelper.RetryRequest(() =>
|
|
{
|
|
return httpClient.GetAsync(string.Empty);
|
|
}, logger, deploymentResult.HostShutdownToken);
|
|
|
|
return await response.Content.ReadAsStringAsync();
|
|
}
|
|
}
|
|
}
|
|
|
|
public async Task RunTestAndVerifyResponse(
|
|
RuntimeArchitecture runtimeArchitecture,
|
|
string environmentName,
|
|
string locale,
|
|
string expectedText)
|
|
{
|
|
var responseText = await RunTestAndGetResponse(runtimeArchitecture, environmentName, locale);
|
|
Console.WriteLine("Response Text " + responseText);
|
|
Assert.Equal(expectedText, responseText);
|
|
}
|
|
|
|
public async Task RunTestAndVerifyResponseHeading(
|
|
RuntimeArchitecture runtimeArchitecture,
|
|
string environmentName,
|
|
string locale,
|
|
string expectedHeadingText)
|
|
{
|
|
var responseText = await RunTestAndGetResponse(runtimeArchitecture, environmentName, locale);
|
|
var headingIndex = responseText.IndexOf(expectedHeadingText);
|
|
Console.WriteLine("Response Header " + responseText);
|
|
Assert.True(headingIndex >= 0);
|
|
}
|
|
}
|
|
} |