87 lines
3.4 KiB
C#
87 lines
3.4 KiB
C#
// Copyright (c) Microsoft Open Technologies, Inc. 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.Reflection;
|
|
using System.Threading.Tasks;
|
|
using InlineConstraints;
|
|
using Microsoft.AspNet.Builder;
|
|
using Microsoft.AspNet.Routing;
|
|
using Microsoft.AspNet.TestHost;
|
|
using Microsoft.Framework.ConfigurationModel;
|
|
using Microsoft.Framework.DependencyInjection;
|
|
using Microsoft.Framework.DependencyInjection.Fallback;
|
|
using Microsoft.Framework.Runtime;
|
|
using Microsoft.Framework.Runtime.Infrastructure;
|
|
using Xunit;
|
|
|
|
namespace Microsoft.AspNet.Mvc.FunctionalTests
|
|
{
|
|
public class InlineConstraintTests
|
|
{
|
|
private readonly IServiceProvider _provider;
|
|
private readonly Action<IBuilder> _app = new Startup().Configure;
|
|
private readonly string _jsonConfigFilePath;
|
|
private readonly Configuration _config = new Configuration();
|
|
public InlineConstraintTests()
|
|
{
|
|
_provider = TestHelper.CreateServices("InlineConstraintsWebSite");
|
|
|
|
// TODO: Hardcoding the config file path for now. Update it to read it from args.
|
|
_jsonConfigFilePath = @"config\InlineConstraintTestsConfig.json";
|
|
_config.AddJsonFile(_jsonConfigFilePath);
|
|
|
|
Environment.SetEnvironmentVariable("AppConfigPath", _jsonConfigFilePath);
|
|
}
|
|
|
|
[Fact]
|
|
public async Task RoutingToANonExistantArea_WithExistConstraint_RoutesToCorrectAction()
|
|
{
|
|
// Arrange
|
|
var source = new JsonConfigurationSource(_jsonConfigFilePath);
|
|
|
|
// Add the exists inline constraint.
|
|
_config.Set("TemplateCollection:areaRoute:TemplateValue",
|
|
@"{area:exists}/{controller=Home}/{action=Index}");
|
|
_config.Set("TemplateCollection:actionAsMethod:TemplateValue",
|
|
@"{controller=Home}/{action=Index}");
|
|
_config.Commit();
|
|
|
|
var server = TestServer.Create(_provider, _app);
|
|
var client = server.Handler;
|
|
|
|
// Act
|
|
var result = await client.GetAsync("http://localhost/Users");
|
|
Assert.Equal(200, result.StatusCode);
|
|
|
|
// Assert
|
|
var returnValue = await result.ReadBodyAsStringAsync();
|
|
Assert.Equal("Users.Index", returnValue);
|
|
}
|
|
|
|
[Fact]
|
|
public async Task RoutingToANonExistantArea_WithoutExistConstraint_RoutesToIncorrectAction()
|
|
{
|
|
// Arrange
|
|
_config.Set("TemplateCollection:areaRoute:TemplateValue",
|
|
@"{area}/{controller=Home}/{action=Index}");
|
|
_config.Set("TemplateCollection:actionAsMethod:TemplateValue",
|
|
@"{controller=Home}/{action=Index}");
|
|
|
|
_config.Commit();
|
|
|
|
var server = TestServer.Create(_provider, _app);
|
|
var client = server.Handler;
|
|
|
|
// Act & Assert
|
|
var ex = await Assert.ThrowsAsync<InvalidOperationException>
|
|
(async () => await client.GetAsync("http://localhost/Users"));
|
|
|
|
Assert.Equal("The view 'Index' was not found." +
|
|
" The following locations were searched:\r\n/Areas/Users/Views/Home/Index.cshtml\r\n" +
|
|
"/Areas/Users/Views/Shared/Index.cshtml\r\n/Views/Shared/Index.cshtml.",
|
|
ex.Message);
|
|
}
|
|
}
|
|
} |