|
|
|
@ -35,5 +35,94 @@ namespace Volo.Abp.Http.DynamicProxying
|
|
|
|
|
var exception = await Assert.ThrowsAsync<AbpRemoteCallException>(async () => await _controller.GetException1Async());
|
|
|
|
|
exception.Error.Message.ShouldBe("This is an error message!");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Fact]
|
|
|
|
|
public async Task PostValueWithHeaderAndQueryStringAsync()
|
|
|
|
|
{
|
|
|
|
|
var result = await _controller.PostValueWithHeaderAndQueryStringAsync("myheader", "myqs");
|
|
|
|
|
result.ShouldBe("myheader#myqs");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Fact]
|
|
|
|
|
public async Task PostValueWithBodyAsync()
|
|
|
|
|
{
|
|
|
|
|
var result = await _controller.PostValueWithBodyAsync("mybody");
|
|
|
|
|
result.ShouldBe("mybody");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Fact]
|
|
|
|
|
public async Task PutValueWithBodyAsync()
|
|
|
|
|
{
|
|
|
|
|
var result = await _controller.PutValueWithBodyAsync("mybody");
|
|
|
|
|
result.ShouldBe("mybody");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Fact]
|
|
|
|
|
public async Task PostObjectWithBodyAsync()
|
|
|
|
|
{
|
|
|
|
|
var result = await _controller.PostObjectWithBodyAsync(new Car{Year = 1976, Model = "Ford"});
|
|
|
|
|
result.Year.ShouldBe(1976);
|
|
|
|
|
result.Model.ShouldBe("Ford");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Fact]
|
|
|
|
|
public async Task PostObjectWithQueryAsync()
|
|
|
|
|
{
|
|
|
|
|
var result = await _controller.PostObjectWithQueryAsync(new Car{Year = 1976, Model = "Ford"});
|
|
|
|
|
result.Year.ShouldBe(1976);
|
|
|
|
|
result.Model.ShouldBe("Ford");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Fact]
|
|
|
|
|
public async Task GetObjectWithUrlAsync()
|
|
|
|
|
{
|
|
|
|
|
var result = await _controller.GetObjectWithUrlAsync(new Car{Year = 1976, Model = "Ford"});
|
|
|
|
|
result.Year.ShouldBe(1976);
|
|
|
|
|
result.Model.ShouldBe("Ford");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Fact]
|
|
|
|
|
public async Task GetObjectandIdAsync()
|
|
|
|
|
{
|
|
|
|
|
var result = await _controller.GetObjectandIdAsync(42, new Car{Year = 1976, Model = "Ford"});
|
|
|
|
|
result.Year.ShouldBe(42);
|
|
|
|
|
result.Model.ShouldBe("Ford");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Fact]
|
|
|
|
|
public async Task GetObjectAndIdWithQueryAsync()
|
|
|
|
|
{
|
|
|
|
|
var result = await _controller.GetObjectAndIdWithQueryAsync(42, new Car{Year = 1976, Model = "Ford"});
|
|
|
|
|
result.Year.ShouldBe(42);
|
|
|
|
|
result.Model.ShouldBe("Ford");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Fact]
|
|
|
|
|
public async Task PatchValueWithBodyAsync()
|
|
|
|
|
{
|
|
|
|
|
var result = await _controller.PatchValueWithBodyAsync("mybody");
|
|
|
|
|
result.ShouldBe("mybody");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Fact]
|
|
|
|
|
public async Task PutValueWithHeaderAndQueryStringAsync()
|
|
|
|
|
{
|
|
|
|
|
var result = await _controller.PutValueWithHeaderAndQueryStringAsync("myheader", "myqs");
|
|
|
|
|
result.ShouldBe("myheader#myqs");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Fact]
|
|
|
|
|
public async Task PatchValueWithHeaderAndQueryStringAsync()
|
|
|
|
|
{
|
|
|
|
|
var result = await _controller.PatchValueWithHeaderAndQueryStringAsync("myheader", "myqs");
|
|
|
|
|
result.ShouldBe("myheader#myqs");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Fact]
|
|
|
|
|
public async Task DeleteByIdAsync()
|
|
|
|
|
{
|
|
|
|
|
(await _controller.DeleteByIdAsync(42)).ShouldBe(43);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|