2016-02-25 00:05:55 +00:00
|
|
|
// Copyright (c) .NET Foundation and contributors. All rights reserved.
|
|
|
|
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
|
|
|
|
|
|
|
|
using System.Linq;
|
|
|
|
using FluentAssertions;
|
2016-04-28 23:30:32 +00:00
|
|
|
using Microsoft.DotNet.Tools.Test.Utilities;
|
|
|
|
using Xunit;
|
2016-02-25 00:05:55 +00:00
|
|
|
|
|
|
|
namespace Microsoft.DotNet.Cli.Utils.Tests
|
|
|
|
{
|
|
|
|
public class GivenAScriptCommandResolver
|
|
|
|
{
|
|
|
|
[Fact]
|
|
|
|
public void It_contains_resolvers_in_the_right_order()
|
|
|
|
{
|
2016-03-07 19:50:52 +00:00
|
|
|
var scriptCommandResolver = ScriptCommandResolverPolicy.Create();
|
2016-02-25 00:05:55 +00:00
|
|
|
|
|
|
|
var resolvers = scriptCommandResolver.OrderedCommandResolvers;
|
|
|
|
|
2016-03-24 16:36:05 +00:00
|
|
|
resolvers.Should().HaveCount(5);
|
2016-02-25 00:05:55 +00:00
|
|
|
|
|
|
|
resolvers.Select(r => r.GetType())
|
|
|
|
.Should()
|
|
|
|
.ContainInOrder(
|
2016-04-28 23:30:32 +00:00
|
|
|
new[]{
|
2016-02-25 00:05:55 +00:00
|
|
|
typeof(RootedCommandResolver),
|
2016-03-24 16:36:05 +00:00
|
|
|
typeof(MuxerCommandResolver),
|
2016-02-25 00:05:55 +00:00
|
|
|
typeof(ProjectPathCommandResolver),
|
|
|
|
typeof(AppBaseCommandResolver),
|
|
|
|
typeof(PathCommandResolver)
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|