5 Commits
1.5.0 ... 1.5.2

Author SHA1 Message Date
Tommy Parnell
819235eedb Merge pull request #17 from TerribleDev/nullchk
null checks
2018-04-14 18:06:28 -04:00
Tommy Parnell
d3a9225930 null checks 2018-04-14 18:00:53 -04:00
Tommy Parnell
638d077c03 Merge pull request #15 from adriangodong/fixed-bad-fragment-char
Fixed bad fragment char
2017-10-20 02:06:47 -04:00
Adrian Godong
b9e6ad6a8b Added more tests to cover WithFragment(). 2017-10-19 23:02:58 -07:00
Adrian Godong
542561d778 Fixed bad fragment marker char. 2017-10-19 23:02:43 -07:00
6 changed files with 93 additions and 4 deletions

View File

@@ -23,6 +23,6 @@ test_script:
deploy:
- provider: NuGet
api_key:
secure: bGn7M6dHOJ3QjwYIv7e34tcY/n9cCUZmL1MnM6jRfmnJOOfwlrS+cdRj2n8Wf31n
secure: //tKHlb2yqAtpxnR6p9IAtXwQNaq8UYYyIFSD0QVF3XnEasIxG2gTWdmWuG87fUX
on:
appveyor_repo_tag: true

View File

@@ -71,6 +71,14 @@ namespace FluentUriBuilder.Tests
Assert.Equal("http://awesome.com/?awesome", url.Uri.ToString());
}
[Fact]
public void TestAddFragmentArray()
{
var url = new UriBuilder("http://awesome.com")
.WithFragment("awesome", "cool", "dawg");
Assert.Equal("http://awesome.com/#awesome=cool,dawg", url.Uri.ToString());
}
[Fact]
public void TestAddFragmentArrayint()
{
@@ -174,6 +182,40 @@ namespace FluentUriBuilder.Tests
Assert.Equal("http://awesome.com/?yo=dawg&troll=toll&hammer", url.Uri.ToString());
}
[Fact]
public void AddFragmentWithNoValue()
{
var url = new UriBuilder("http://awesome.com")
.WithFragment("awesome", "yodawg")
.WithFragment("fun", null)
.WithFragment("cool", string.Empty);
Assert.Equal("http://awesome.com/#awesome=yodawg&fun&cool", url.Uri.ToString());
}
[Fact]
public void TestAddTwoUrlFragments()
{
var url = new UriBuilder("http://awesome.com")
.WithFragment("awesome", "yodawg")
.WithFragment("supg", "no2")
.WithFragment("supgf", "no22");
Assert.Equal("http://awesome.com/#awesome=yodawg&supg=no2&supgf=no22", url.Uri.ToString());
}
[Fact]
public void AddDictOfFragments()
{
var dictionary = new Dictionary<string, string>()
{
["yo"] = "dawg",
["troll"] = "toll",
["hammer"] = string.Empty
};
var url = new UriBuilder("http://awesome.com")
.WithFragment(dictionary);
Assert.Equal("http://awesome.com/#yo=dawg&troll=toll&hammer", url.Uri.ToString());
}
[Fact]
public void TestToEscapedString()
{

View File

@@ -20,6 +20,13 @@ namespace FluentUriBuilder.Tests
Assert.Throws<ArgumentNullException>(() => tstObj.WithParameter(parameterDictionary: null));
Assert.Throws<ArgumentNullException>(() => tstObj.WithFragment(fragmentDictionary: null));
Assert.Throws<ArgumentOutOfRangeException>(() => tstObj.WithPort(-1));
UriBuilder nullPtr = null;
Assert.Throws<ArgumentNullException>(()=>nullPtr.WithFragment("yo", "dawg"));
Assert.Throws<ArgumentNullException>(()=>nullPtr.WithParameter("yo", "dawg"));
Assert.Throws<ArgumentNullException>(()=>nullPtr.WithPathSegment("yo"));
Assert.Throws<ArgumentNullException>(()=>nullPtr.WithScheme("yo"));
Assert.Throws<ArgumentNullException>(()=>nullPtr.WithFragment("yo"));
Assert.Throws<ArgumentNullException>(()=>nullPtr.WithoutDefaultPort());
}
}
}

View File

@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>netcoreapp1.1;net461</TargetFrameworks>
<TargetFrameworks>netcoreapp2.0;net461</TargetFrameworks>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.0.0" />

View File

@@ -26,6 +26,10 @@ namespace System
/// <returns></returns>
public static UriBuilder WithParameter(this UriBuilder bld, IDictionary<string, string> parameterDictionary)
{
if(bld == null)
{
throw new ArgumentNullException(nameof(bld));
}
if(parameterDictionary == null) throw new ArgumentNullException(nameof(parameterDictionary));
foreach(var item in parameterDictionary)
{
@@ -43,6 +47,10 @@ namespace System
/// <returns></returns>
public static UriBuilder WithParameter(this UriBuilder bld, string key, IEnumerable<object> valuesEnum)
{
if(bld == null)
{
throw new ArgumentNullException(nameof(bld));
}
if(string.IsNullOrWhiteSpace(key))
{
throw new ArgumentNullException(nameof(key));
@@ -74,6 +82,10 @@ namespace System
/// <returns></returns>
public static UriBuilder WithFragment(this UriBuilder bld, IDictionary<string, string> fragmentDictionary)
{
if(bld == null)
{
throw new ArgumentNullException(nameof(bld));
}
if(fragmentDictionary == null) throw new ArgumentNullException(nameof(fragmentDictionary));
foreach(var item in fragmentDictionary)
{
@@ -91,6 +103,10 @@ namespace System
/// <returns></returns>
public static UriBuilder WithFragment(this UriBuilder bld, string key, IEnumerable<object> valuesEnum)
{
if(bld == null)
{
throw new ArgumentNullException(nameof(bld));
}
if(string.IsNullOrWhiteSpace(key))
{
throw new ArgumentNullException(nameof(key));
@@ -99,7 +115,7 @@ namespace System
{
valuesEnum = new string[0];
}
var intitialValue = string.IsNullOrWhiteSpace(bld.Fragment) ? "" : $"{bld.Fragment.TrimStart('?')}&";
var intitialValue = string.IsNullOrWhiteSpace(bld.Fragment) ? "" : $"{bld.Fragment.TrimStart('#')}&";
bld.Fragment = intitialValue.AppendKeyValue(key, valuesEnum);
return bld;
}
@@ -113,6 +129,10 @@ namespace System
/// <returns></returns>
public static UriBuilder WithPort(this UriBuilder bld, int port)
{
if(bld == null)
{
throw new ArgumentNullException(nameof(bld));
}
if(port < 1) throw new ArgumentOutOfRangeException(nameof(port));
bld.Port = port;
return bld;
@@ -125,6 +145,10 @@ namespace System
/// <returns></returns>
public static UriBuilder WithoutDefaultPort(this UriBuilder bld)
{
if(bld == null)
{
throw new ArgumentNullException(nameof(bld));
}
if (bld.Uri.IsDefaultPort) bld.Port = -1;
return bld;
}
@@ -138,6 +162,10 @@ namespace System
/// <returns></returns>
public static UriBuilder WithPathSegment(this UriBuilder bld, string pathSegment)
{
if(bld == null)
{
throw new ArgumentNullException(nameof(bld));
}
if(string.IsNullOrWhiteSpace(pathSegment))
{
throw new ArgumentNullException(nameof(pathSegment));
@@ -156,6 +184,10 @@ namespace System
/// <returns></returns>
public static UriBuilder WithScheme(this UriBuilder bld, string scheme)
{
if(bld == null)
{
throw new ArgumentNullException(nameof(bld));
}
if(string.IsNullOrWhiteSpace(scheme)) throw new ArgumentNullException(nameof(scheme));
bld.Scheme = scheme;
return bld;
@@ -170,6 +202,10 @@ namespace System
/// <returns></returns>
public static UriBuilder WithHost(this UriBuilder bld, string host)
{
if(bld == null)
{
throw new ArgumentNullException(nameof(bld));
}
if(string.IsNullOrWhiteSpace(host)) throw new ArgumentNullException(nameof(host));
bld.Host = host;
return bld;
@@ -185,6 +221,10 @@ namespace System
/// <returns></returns>
public static UriBuilder UseHttps(this UriBuilder bld, bool predicate = true)
{
if(bld == null)
{
throw new ArgumentNullException(nameof(bld));
}
bld.Scheme = predicate ? "https" : "http";
return bld;
}

View File

@@ -2,7 +2,7 @@
<PropertyGroup>
<Authors>Tommy Parnell</Authors>
<TargetFrameworks>netstandard1.1;net40;net45</TargetFrameworks>
<TargetFrameworks>netstandard1.1;net40;net45;netstandard2.0</TargetFrameworks>
<AssemblyName>UriBuilder.Fluent</AssemblyName>
<PackageId>UriBuilder.Fluent</PackageId>
<PackageTags>Url building;Uri;Uri building;fluent;extension</PackageTags>