mirror of
https://github.com/nsnail/Ocelot.git
synced 2025-04-25 14:32:50 +08:00

* hacked together load balancing reroutes in fileconfig * some renaming and refactoring * more renames * hacked away the old config json * test for issue 213 * renamed key * dont share ports * oops * updated docs * mvoed docs around * port being used
65 lines
1.7 KiB
C#
65 lines
1.7 KiB
C#
using System.Collections.Generic;
|
|
using Ocelot.Cache;
|
|
using Ocelot.Configuration;
|
|
using Ocelot.Configuration.Builder;
|
|
using Ocelot.Configuration.File;
|
|
using Shouldly;
|
|
using TestStack.BDDfy;
|
|
using Xunit;
|
|
|
|
namespace Ocelot.UnitTests.Cache
|
|
{
|
|
public class RegionCreatorTests
|
|
{
|
|
private string _result;
|
|
private FileReRoute _reRoute;
|
|
|
|
[Fact]
|
|
public void should_create_region()
|
|
{
|
|
var reRoute = new FileReRoute
|
|
{
|
|
UpstreamHttpMethod = new List<string> { "Get" },
|
|
UpstreamPathTemplate = "/testdummy"
|
|
};
|
|
|
|
this.Given(_ => GivenTheReRoute(reRoute))
|
|
.When(_ => WhenICreateTheRegion())
|
|
.Then(_ => ThenTheRegionIs("Gettestdummy"))
|
|
.BDDfy();
|
|
}
|
|
|
|
[Fact]
|
|
public void should_use_region()
|
|
{
|
|
var reRoute = new FileReRoute
|
|
{
|
|
FileCacheOptions = new FileCacheOptions
|
|
{
|
|
Region = "region"
|
|
}
|
|
};
|
|
|
|
this.Given(_ => GivenTheReRoute(reRoute))
|
|
.When(_ => WhenICreateTheRegion())
|
|
.Then(_ => ThenTheRegionIs("region"))
|
|
.BDDfy();
|
|
}
|
|
|
|
private void GivenTheReRoute(FileReRoute reRoute)
|
|
{
|
|
_reRoute = reRoute;
|
|
}
|
|
|
|
private void WhenICreateTheRegion()
|
|
{
|
|
RegionCreator regionCreator = new RegionCreator();
|
|
_result = regionCreator.Create(_reRoute);
|
|
}
|
|
|
|
private void ThenTheRegionIs(string expected)
|
|
{
|
|
_result.ShouldBe(expected);
|
|
}
|
|
}
|
|
} |