mirror of
https://github.com/wiremock/WireMock.Net.git
synced 2026-01-14 22:33:35 +01:00
* refactor * rename api * -preview-01 * logger * move * RandomDataGenerator.Net * . * ISettings * renames... * refactor CommandlineParser logic * remove standalone * Remove Interfaces * Update tests * WireMock.Net.StandAlone * . * fix * . * _settings * Admin * WireMock.Net.Abstractions * fix build * rename WireMockServer * fix compile errors
267 lines
7.4 KiB
C#
267 lines
7.4 KiB
C#
using FluentAssertions;
|
|
using System.Collections.Generic;
|
|
using WireMock.Types;
|
|
using WireMock.Util;
|
|
using Xunit;
|
|
|
|
namespace WireMock.Net.Tests.Util
|
|
{
|
|
public class QueryStringParserTests
|
|
{
|
|
[Fact]
|
|
public void Parse_WithNullString()
|
|
{
|
|
// Assign
|
|
string query = null;
|
|
|
|
// Act
|
|
var result = QueryStringParser.Parse(query);
|
|
|
|
// Assert
|
|
result.Should().Equal(new Dictionary<string, WireMockList<string>>());
|
|
}
|
|
|
|
[Fact]
|
|
public void Parse_WithEmptyString()
|
|
{
|
|
// Assign
|
|
string query = "";
|
|
|
|
// Act
|
|
var result = QueryStringParser.Parse(query);
|
|
|
|
// Assert
|
|
result.Should().Equal(new Dictionary<string, WireMockList<string>>());
|
|
}
|
|
|
|
[Fact]
|
|
public void Parse_WithQuestionMark()
|
|
{
|
|
// Assign
|
|
string query = "?";
|
|
|
|
// Act
|
|
var result = QueryStringParser.Parse(query);
|
|
|
|
// Assert
|
|
result.Should().Equal(new Dictionary<string, WireMockList<string>>());
|
|
}
|
|
|
|
[Fact]
|
|
public void Parse_With1Param()
|
|
{
|
|
// Assign
|
|
string query = "?key=bla/blub.xml";
|
|
|
|
// Act
|
|
var result = QueryStringParser.Parse(query);
|
|
|
|
// Assert
|
|
result.Count.Should().Be(1);
|
|
result["key"].Should().Equal(new WireMockList<string>("bla/blub.xml"));
|
|
}
|
|
|
|
[Fact]
|
|
public void Parse_With2Params()
|
|
{
|
|
// Assign
|
|
string query = "?x=1&y=2";
|
|
|
|
// Act
|
|
var result = QueryStringParser.Parse(query);
|
|
|
|
// Assert
|
|
result.Count.Should().Be(2);
|
|
result["x"].Should().Equal(new WireMockList<string>("1"));
|
|
result["y"].Should().Equal(new WireMockList<string>("2"));
|
|
}
|
|
|
|
[Fact]
|
|
public void Parse_With1ParamNoValue()
|
|
{
|
|
// Assign
|
|
string query = "?empty";
|
|
|
|
// Act
|
|
var result = QueryStringParser.Parse(query);
|
|
|
|
// Assert
|
|
result.Count.Should().Be(1);
|
|
result["empty"].Should().Equal(new WireMockList<string>());
|
|
}
|
|
|
|
[Fact]
|
|
public void Parse_With1ParamNoValueWithEqualSign()
|
|
{
|
|
// Assign
|
|
string query = "?empty=";
|
|
|
|
// Act
|
|
var result = QueryStringParser.Parse(query);
|
|
|
|
// Assert
|
|
result.Count.Should().Be(1);
|
|
result["empty"].Should().Equal(new WireMockList<string>());
|
|
}
|
|
|
|
[Fact]
|
|
public void Parse_With1ParamAndJustAndSign()
|
|
{
|
|
// Assign
|
|
string query = "?key=1&";
|
|
|
|
// Act
|
|
var result = QueryStringParser.Parse(query);
|
|
|
|
// Assert
|
|
result.Count.Should().Be(1);
|
|
result["key"].Should().Equal(new WireMockList<string>("1"));
|
|
}
|
|
|
|
[Fact]
|
|
public void Parse_With2ParamsAndWhereOneHasAQuestion()
|
|
{
|
|
// Assign
|
|
string query = "?key=value?&b=c";
|
|
|
|
// Act
|
|
var result = QueryStringParser.Parse(query);
|
|
|
|
// Assert
|
|
result.Count.Should().Be(2);
|
|
result["key"].Should().Equal(new WireMockList<string>("value?"));
|
|
result["b"].Should().Equal(new WireMockList<string>("c"));
|
|
}
|
|
|
|
[Fact]
|
|
public void Parse_With1ParamWithEqualSign()
|
|
{
|
|
// Assign
|
|
string query = "?key=value=what";
|
|
|
|
// Act
|
|
var result = QueryStringParser.Parse(query);
|
|
|
|
// Assert
|
|
result.Count.Should().Be(1);
|
|
result["key"].Should().Equal(new WireMockList<string>("value=what"));
|
|
}
|
|
|
|
[Fact]
|
|
public void Parse_With1ParamWithTwoEqualSigns()
|
|
{
|
|
// Assign
|
|
string query = "?key=value==what";
|
|
|
|
// Act
|
|
var result = QueryStringParser.Parse(query);
|
|
|
|
// Assert
|
|
result.Count.Should().Be(1);
|
|
result["key"].Should().Equal(new WireMockList<string>("value==what"));
|
|
}
|
|
|
|
[Fact]
|
|
public void Parse_WithMultipleParamWithSameKeySeparatedBySemiColon()
|
|
{
|
|
// Assign
|
|
string query = "?key=value;key=anotherValue";
|
|
|
|
// Act
|
|
var result = QueryStringParser.Parse(query);
|
|
|
|
// Assert
|
|
result.Count.Should().Be(1);
|
|
result["key"].Should().Equal(new WireMockList<string>(new[] { "value", "anotherValue" }));
|
|
}
|
|
|
|
[Fact]
|
|
public void Parse_With1ParamContainingComma()
|
|
{
|
|
// Assign
|
|
string query = "?key=1,2&key=3";
|
|
|
|
// Act
|
|
var result = QueryStringParser.Parse(query);
|
|
|
|
// Assert
|
|
result.Count.Should().Be(1);
|
|
result["key"].Should().Equal(new WireMockList<string>(new[] { "1", "2", "3" }));
|
|
}
|
|
|
|
[Fact]
|
|
public void Parse_With1ParamContainingEscapedAnd()
|
|
{
|
|
// Assign
|
|
string query = "?winkel=C%26A";
|
|
|
|
// Act
|
|
var result = QueryStringParser.Parse(query);
|
|
|
|
// Assert
|
|
result.Count.Should().Be(1);
|
|
result["winkel"].Should().Equal(new WireMockList<string>(new[] { "C&A" }));
|
|
}
|
|
|
|
[Fact]
|
|
public void Parse_With1ParamContainingParentheses()
|
|
{
|
|
// Assign
|
|
string query = "?Transaction=(123)";
|
|
|
|
// Act
|
|
var result = QueryStringParser.Parse(query);
|
|
|
|
// Assert
|
|
result.Count.Should().Be(1);
|
|
result["Transaction"].Should().Equal(new WireMockList<string>(new[] { "(123)" }));
|
|
}
|
|
|
|
[Fact]
|
|
public void Parse_WithMultipleParamWithSameKey()
|
|
{
|
|
// Assign
|
|
string query = "?key=value&key=anotherValue";
|
|
|
|
// Act
|
|
var result = QueryStringParser.Parse(query);
|
|
|
|
// Assert
|
|
result.Count.Should().Be(1);
|
|
result["key"].Should().Equal(new WireMockList<string>(new[] { "value", "anotherValue" }));
|
|
}
|
|
|
|
[Fact]
|
|
public void Parse_With1ParamContainingSpacesAndEqualSign()
|
|
{
|
|
// Assign
|
|
string query = "?q=SELECT Id from User where username='user@gmail.com'";
|
|
|
|
// Act
|
|
var result = QueryStringParser.Parse(query);
|
|
|
|
// Assert
|
|
result.Count.Should().Be(1);
|
|
result["q"].Should().Equal(new WireMockList<string>("SELECT Id from User where username='user@gmail.com'"));
|
|
}
|
|
|
|
[Fact]
|
|
public void Parse_WithComplex()
|
|
{
|
|
// Assign
|
|
string query = "?q=energy+edge&rls=com.microsoft:en-au&ie=UTF-8&oe=UTF-8&startIndex=&startPage=1%22";
|
|
|
|
// Act
|
|
var result = QueryStringParser.Parse(query);
|
|
|
|
// Assert
|
|
result.Count.Should().Be(6);
|
|
result["q"].Should().Equal(new WireMockList<string>("energy edge"));
|
|
result["rls"].Should().Equal(new WireMockList<string>("com.microsoft:en-au"));
|
|
result["ie"].Should().Equal(new WireMockList<string>("UTF-8"));
|
|
result["oe"].Should().Equal(new WireMockList<string>("UTF-8"));
|
|
result["startIndex"].Should().Equal(new WireMockList<string>());
|
|
result["startPage"].Should().Equal(new WireMockList<string>("1\""));
|
|
}
|
|
}
|
|
} |