带SOQL查询的Wiremock.Net查询参数

时间:2019-04-08 19:46:01

标签: c# .net-core wiremock

我正在使用WireMock-Net处理请求。

我要执行以下请求:

请求:

http://localhost:63078/services/query/?q=SELECT Id from User where username='user@gmail.com'

该请求由SOQL查询组成。 这是我尝试做的片段:

stub.Given(Request.Create()
   .WithPath("/services/query/")
   .WithParam("q", "SELECT Id from User where username='user@gmail.com'")
   .UsingGet())
   .RespondWith(Response.Create()
      .WithStatusCode(200)
      .WithHeader("Content-Type", "application/json")
      .WithBodyAsJson(new { Id = "5bdf076c-5654-4b3e-842c-7caf1fabf8c9" }));

问题是:wiremock始终会回复404。我也尝试过使用RegexMatcher,如下所示:

   .WithPath("/services/query/")
   .WithParam("q", new WireMock.Matchers.RegexMatcher("SELECT Id from User where username.*$"))

但是我仍然得到404。

我认为问题出在查询参数中,因为它有两个等于“ =”的值。 有人可以帮我解决这个问题吗?

2 个答案:

答案 0 :(得分:1)

您可以尝试进行url编码。 所以当你做

SELECT Id from User where username='user@gmail.com'

您应该做

SELECT %20Id%20from%20User%20where%20username%3D%27user%40gmail.com%27

希望有帮助。

答案 1 :(得分:0)

此问题已从WireMock.Net的最新版本(1.0.19)中修复。

如果该答案对您来说正确,请重试并将该答案标记为接受。

详细信息:解决方案基于Get url parameters from a string in .NET