mirror of
https://github.com/nsnail/Ocelot.git
synced 2025-04-25 14:32:50 +08:00
158 lines
5.1 KiB
C#
158 lines
5.1 KiB
C#
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Security.Claims;
|
|
using Moq;
|
|
using Ocelot.Configuration;
|
|
using Ocelot.Errors;
|
|
using Ocelot.Infrastructure.Claims.Parser;
|
|
using Ocelot.QueryStrings;
|
|
using Ocelot.Responses;
|
|
using Shouldly;
|
|
using TestStack.BDDfy;
|
|
using Xunit;
|
|
using System.Net.Http;
|
|
using System;
|
|
|
|
namespace Ocelot.UnitTests.QueryStrings
|
|
{
|
|
public class AddQueriesToRequestTests
|
|
{
|
|
private readonly AddQueriesToRequest _addQueriesToRequest;
|
|
private readonly HttpRequestMessage _downstreamRequest;
|
|
private readonly Mock<IClaimsParser> _parser;
|
|
private List<ClaimToThing> _configuration;
|
|
private List<Claim> _claims;
|
|
private Response _result;
|
|
private Response<string> _claimValue;
|
|
|
|
public AddQueriesToRequestTests()
|
|
{
|
|
_parser = new Mock<IClaimsParser>();
|
|
_addQueriesToRequest = new AddQueriesToRequest(_parser.Object);
|
|
_downstreamRequest = new HttpRequestMessage(HttpMethod.Post, "http://my.url/abc?q=123");
|
|
}
|
|
|
|
[Fact]
|
|
public void should_add_new_queries_to_downstream_request()
|
|
{
|
|
var claims = new List<Claim>
|
|
{
|
|
new Claim("test", "data")
|
|
};
|
|
|
|
this.Given(
|
|
x => x.GivenAClaimToThing(new List<ClaimToThing>
|
|
{
|
|
new ClaimToThing("query-key", "", "", 0)
|
|
}))
|
|
.Given(x => x.GivenClaims(claims))
|
|
.And(x => x.GivenTheClaimParserReturns(new OkResponse<string>("value")))
|
|
.When(x => x.WhenIAddQueriesToTheRequest())
|
|
.Then(x => x.ThenTheResultIsSuccess())
|
|
.And(x => x.ThenTheQueryIsAdded())
|
|
.BDDfy();
|
|
}
|
|
|
|
[Fact]
|
|
public void should_replace_existing_queries_on_downstream_request()
|
|
{
|
|
var claims = new List<Claim>
|
|
{
|
|
new Claim("test", "data")
|
|
};
|
|
|
|
this.Given(
|
|
x => x.GivenAClaimToThing(new List<ClaimToThing>
|
|
{
|
|
new ClaimToThing("query-key", "", "", 0)
|
|
}))
|
|
.And(x => x.GivenClaims(claims))
|
|
.And(x => x.GivenTheDownstreamRequestHasQueryString("query-key", "initial"))
|
|
.And(x => x.GivenTheClaimParserReturns(new OkResponse<string>("value")))
|
|
.When(x => x.WhenIAddQueriesToTheRequest())
|
|
.Then(x => x.ThenTheResultIsSuccess())
|
|
.And(x => x.ThenTheQueryIsAdded())
|
|
.BDDfy();
|
|
}
|
|
|
|
[Fact]
|
|
public void should_return_error()
|
|
{
|
|
this.Given(
|
|
x => x.GivenAClaimToThing(new List<ClaimToThing>
|
|
{
|
|
new ClaimToThing("", "", "", 0)
|
|
}))
|
|
.Given(x => x.GivenClaims(new List<Claim>()))
|
|
.And(x => x.GivenTheClaimParserReturns(new ErrorResponse<string>(new List<Error>
|
|
{
|
|
new AnyError()
|
|
})))
|
|
.When(x => x.WhenIAddQueriesToTheRequest())
|
|
.Then(x => x.ThenTheResultIsError())
|
|
.BDDfy();
|
|
}
|
|
|
|
private void ThenTheQueryIsAdded()
|
|
{
|
|
var queries = Microsoft.AspNetCore.WebUtilities.QueryHelpers.ParseQuery(_downstreamRequest.RequestUri.OriginalString);
|
|
var query = queries.First(x => x.Key == "query-key");
|
|
query.Value.First().ShouldBe(_claimValue.Data);
|
|
}
|
|
|
|
private void GivenAClaimToThing(List<ClaimToThing> configuration)
|
|
{
|
|
_configuration = configuration;
|
|
}
|
|
|
|
private void GivenClaims(List<Claim> claims)
|
|
{
|
|
_claims = claims;
|
|
}
|
|
|
|
private void GivenTheDownstreamRequestHasQueryString(string key, string value)
|
|
{
|
|
var newUri = Microsoft.AspNetCore.WebUtilities.QueryHelpers
|
|
.AddQueryString(_downstreamRequest.RequestUri.OriginalString, key, value);
|
|
|
|
_downstreamRequest.RequestUri = new Uri(newUri);
|
|
}
|
|
|
|
private void GivenTheClaimParserReturns(Response<string> claimValue)
|
|
{
|
|
_claimValue = claimValue;
|
|
_parser
|
|
.Setup(
|
|
x =>
|
|
x.GetValue(It.IsAny<IEnumerable<Claim>>(),
|
|
It.IsAny<string>(),
|
|
It.IsAny<string>(),
|
|
It.IsAny<int>()))
|
|
.Returns(_claimValue);
|
|
}
|
|
|
|
private void WhenIAddQueriesToTheRequest()
|
|
{
|
|
_result = _addQueriesToRequest.SetQueriesOnDownstreamRequest(_configuration, _claims, _downstreamRequest);
|
|
}
|
|
|
|
private void ThenTheResultIsSuccess()
|
|
{
|
|
_result.IsError.ShouldBe(false);
|
|
}
|
|
|
|
private void ThenTheResultIsError()
|
|
{
|
|
_result.IsError.ShouldBe(true);
|
|
}
|
|
|
|
class AnyError : Error
|
|
{
|
|
public AnyError()
|
|
: base("blahh", OcelotErrorCode.UnknownError)
|
|
{
|
|
}
|
|
}
|
|
}
|
|
}
|