├── .travis.yml ├── UrlCombineLib.Tests ├── UrlCombineLib.Tests.csproj └── Tests.cs ├── UrlCombineLib ├── UrlCombineLib.csproj ├── StringExtension.cs ├── UriExtension.cs └── UrlCombine.cs ├── LICENSE ├── UrlCombine.sln ├── README.md ├── .gitattributes └── .gitignore /.travis.yml: -------------------------------------------------------------------------------- 1 | language: csharp 2 | mono: none 3 | dotnet: 2.1 4 | 5 | install: 6 | - dotnet restore 7 | 8 | script: 9 | - dotnet build 10 | - dotnet test UrlCombineLib.Tests/UrlCombineLib.Tests.csproj -------------------------------------------------------------------------------- /UrlCombineLib.Tests/UrlCombineLib.Tests.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | netcoreapp2.1 5 | 6 | false 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /UrlCombineLib/UrlCombineLib.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | netstandard1.0 5 | UrlCombine 6 | 2.0.0 7 | Jean Lourenço 8 | UrlCombine 9 | C# util for combining Url paths. Works similarly to Path.Combine. 10 | Copyright 2017 11 | https://opensource.org/licenses/MIT 12 | https://github.com/jean-lourenco/UrlCombine 13 | url combine merge util uri 14 | Package namespace chaged to UrlCombineLib due to naming conflicts. The package now targets netstandard1.0 instead of 1.6. 15 | UrlCombineLib 16 | 17 | 18 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2017 Jean Lourenço 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /UrlCombineLib/StringExtension.cs: -------------------------------------------------------------------------------- 1 | namespace UrlCombineLib 2 | { 3 | public static class StringExtension 4 | { 5 | /// 6 | /// Combines the url base and the relative url into one, consolidating the '/' between them 7 | /// 8 | /// Base url that will be combined 9 | /// The relative path to combine 10 | /// The merged url 11 | public static string CombineUrl( 12 | this string urlBase, 13 | string relativeUrl) => 14 | UrlCombine.Combine(urlBase, relativeUrl); 15 | 16 | /// 17 | /// Combines the url base and the array of relative urls into one, consolidating the '/' between them 18 | /// 19 | /// Base url that will be combined 20 | /// The array of relative paths to combine 21 | /// The merged url 22 | public static string CombineUrl( 23 | this string urlBase, 24 | params string[] relativeUrls) => 25 | UrlCombine.Combine(urlBase, relativeUrls); 26 | } 27 | } -------------------------------------------------------------------------------- /UrlCombineLib/UriExtension.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace UrlCombineLib 4 | { 5 | public static class UriExtension 6 | { 7 | /// 8 | /// Combines the Uri with a base path and the relative url into one, consolidating the '/' between them 9 | /// 10 | /// Base Uri that will be combined 11 | /// The relative path to combine 12 | /// The merged Uri 13 | public static Uri Combine(this Uri baseUri, string relativeUrl) 14 | { 15 | if (baseUri == null) 16 | throw new ArgumentNullException(nameof(baseUri)); 17 | 18 | return new Uri(UrlCombine.Combine(baseUri.AbsoluteUri, relativeUrl)); 19 | } 20 | 21 | /// 22 | /// Combines the Uri with base path and the array of relative urls into one, consolidating the '/' between them 23 | /// 24 | /// Base Uri that will be combined 25 | /// The array of relative paths to combine 26 | /// The merged Uri 27 | public static Uri Combine(this Uri baseUri, params string[] relativePaths) 28 | { 29 | if (baseUri == null) 30 | throw new ArgumentNullException(nameof(baseUri)); 31 | 32 | return new Uri(UrlCombine.Combine(baseUri.AbsoluteUri, relativePaths)); 33 | } 34 | } 35 | } -------------------------------------------------------------------------------- /UrlCombine.sln: -------------------------------------------------------------------------------- 1 | 2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio 15 4 | VisualStudioVersion = 15.0.26228.9 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "UrlCombineLib", "UrlCombineLib\UrlCombineLib.csproj", "{95EA1671-32ED-4BDD-AC7E-FCCF0AD2C93F}" 7 | EndProject 8 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "UrlCombineLib.Tests", "UrlCombineLib.Tests\UrlCombineLib.Tests.csproj", "{7B325C02-A5E5-4765-BC70-4BAE320F4930}" 9 | EndProject 10 | Global 11 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 12 | Debug|Any CPU = Debug|Any CPU 13 | Release|Any CPU = Release|Any CPU 14 | EndGlobalSection 15 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 16 | {95EA1671-32ED-4BDD-AC7E-FCCF0AD2C93F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 17 | {95EA1671-32ED-4BDD-AC7E-FCCF0AD2C93F}.Debug|Any CPU.Build.0 = Debug|Any CPU 18 | {95EA1671-32ED-4BDD-AC7E-FCCF0AD2C93F}.Release|Any CPU.ActiveCfg = Release|Any CPU 19 | {95EA1671-32ED-4BDD-AC7E-FCCF0AD2C93F}.Release|Any CPU.Build.0 = Release|Any CPU 20 | {7B325C02-A5E5-4765-BC70-4BAE320F4930}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 21 | {7B325C02-A5E5-4765-BC70-4BAE320F4930}.Debug|Any CPU.Build.0 = Debug|Any CPU 22 | {7B325C02-A5E5-4765-BC70-4BAE320F4930}.Release|Any CPU.ActiveCfg = Release|Any CPU 23 | {7B325C02-A5E5-4765-BC70-4BAE320F4930}.Release|Any CPU.Build.0 = Release|Any CPU 24 | EndGlobalSection 25 | GlobalSection(SolutionProperties) = preSolution 26 | HideSolutionNode = FALSE 27 | EndGlobalSection 28 | GlobalSection(ExtensibilityGlobals) = postSolution 29 | SolutionGuid = {C7B897E0-E207-4909-82F4-9B1C081307B8} 30 | EndGlobalSection 31 | EndGlobal 32 | -------------------------------------------------------------------------------- /UrlCombineLib/UrlCombine.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Linq; 3 | 4 | namespace UrlCombineLib 5 | { 6 | public static class UrlCombine 7 | { 8 | /// 9 | /// Combines the url base and the relative url into one, consolidating the '/' between them 10 | /// 11 | /// Base url that will be combined 12 | /// The relative path to combine 13 | /// The merged url 14 | public static string Combine(string baseUrl, string relativeUrl) 15 | { 16 | if (string.IsNullOrWhiteSpace(baseUrl)) 17 | throw new ArgumentNullException(nameof(baseUrl)); 18 | 19 | if (string.IsNullOrWhiteSpace(relativeUrl)) 20 | return baseUrl; 21 | 22 | baseUrl = baseUrl.TrimEnd('/'); 23 | relativeUrl = relativeUrl.TrimStart('/'); 24 | 25 | return $"{baseUrl}/{relativeUrl}"; 26 | } 27 | 28 | /// 29 | /// Combines the url base and the array of relatives urls into one, consolidating the '/' between them 30 | /// 31 | /// Base url that will be combined 32 | /// The array of relative paths to combine 33 | /// The merged url 34 | public static string Combine(string baseUrl, params string[] relativePaths) 35 | { 36 | if (string.IsNullOrWhiteSpace(baseUrl)) 37 | throw new ArgumentNullException(nameof(baseUrl)); 38 | 39 | if (relativePaths.Length == 0) 40 | return baseUrl; 41 | 42 | var currentUrl = Combine(baseUrl, relativePaths[0]); 43 | 44 | return Combine(currentUrl, relativePaths.Skip(1).ToArray()); 45 | } 46 | } 47 | } -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # UrlCombine [![Build Status](https://travis-ci.org/jean-lourenco/UrlCombine.svg?branch=master)](https://travis-ci.org/jean-lourenco/UrlCombine) 2 | The UrlCombine is a [Nuget Package](https://www.nuget.org/packages/UrlCombine) to conveniently combine your base Url and relative url. 3 | This library treats the slashes between the base and relative paths to ensure a valid url. 4 | 5 | ``` csharp 6 | using UrlCombineLib; 7 | ``` 8 | 9 | **There are 3 ways to use the library:** 10 | 11 | ## Static Method 12 | The static method is used with UrlCombine helper class. 13 | It doesn't matter if the baseUrl and relativePath end/start with a slash or not, The Combine() method takes care of that: 14 | 15 | ``` csharp 16 | var fullUrl = UrlCombine.Combine("www.foo.com.br/", "/bar/zeta"); 17 | // fullUrl = "www.foo.com.br/bar/zeta" 18 | ``` 19 | 20 | ## String Extension 21 | The string extesion is used with the CombineUrl method: 22 | 23 | ``` csharp 24 | var fullUrl = "www.foo.com.br/".CombineUrl("/bar/zeta"); 25 | // fullUrl = "www.foo.com.br/bar/zeta" 26 | ``` 27 | 28 | ## Uri Extension 29 | The Uri extension is used with the Combine method: 30 | 31 | ``` csharp 32 | var fullUrl = new Uri("www.foo.com.br/").Combine("/bar/zeta"); 33 | // fullUrl = new Uri("www.foo.com.br/bar/zeta") 34 | ``` 35 | 36 | ## Multiple relative paths in runtime 37 | There's also a UrlCombine.Combine overload (alongside Uri and String extension methods) that takes a param string[] as input: 38 | 39 | ``` csharp 40 | var fullUrl = new Uri("www.foo.com.br/").Combine("bar", "zeta"); 41 | // fullUrl = new Uri("www.foo.com.br/bar/zeta") 42 | ``` 43 | 44 | ## Why not Uri(Uri base, string relative)? 45 | Well, It does more than just validate the slashes. It strips the relative path of the base Uri if it doesn't end with a slash and if the relative path doesn't start with one: 46 | ``` csharp 47 | var uriBase = new Uri("http://www.foo.com/relative"); 48 | var relative = "/other/url"; 49 | 50 | var uri = new Uri(uriBase, relative); 51 | // uri.ToString() = "http://www.foo.com/other/url" 52 | ``` 53 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | ############################################################################### 2 | # Set default behavior to automatically normalize line endings. 3 | ############################################################################### 4 | * text=auto 5 | 6 | ############################################################################### 7 | # Set default behavior for command prompt diff. 8 | # 9 | # This is need for earlier builds of msysgit that does not have it on by 10 | # default for csharp files. 11 | # Note: This is only used by command line 12 | ############################################################################### 13 | #*.cs diff=csharp 14 | 15 | ############################################################################### 16 | # Set the merge driver for project and solution files 17 | # 18 | # Merging from the command prompt will add diff markers to the files if there 19 | # are conflicts (Merging from VS is not affected by the settings below, in VS 20 | # the diff markers are never inserted). Diff markers may cause the following 21 | # file extensions to fail to load in VS. An alternative would be to treat 22 | # these files as binary and thus will always conflict and require user 23 | # intervention with every merge. To do so, just uncomment the entries below 24 | ############################################################################### 25 | #*.sln merge=binary 26 | #*.csproj merge=binary 27 | #*.vbproj merge=binary 28 | #*.vcxproj merge=binary 29 | #*.vcproj merge=binary 30 | #*.dbproj merge=binary 31 | #*.fsproj merge=binary 32 | #*.lsproj merge=binary 33 | #*.wixproj merge=binary 34 | #*.modelproj merge=binary 35 | #*.sqlproj merge=binary 36 | #*.wwaproj merge=binary 37 | 38 | ############################################################################### 39 | # behavior for image files 40 | # 41 | # image files are treated as binary by default. 42 | ############################################################################### 43 | #*.jpg binary 44 | #*.png binary 45 | #*.gif binary 46 | 47 | ############################################################################### 48 | # diff behavior for common document formats 49 | # 50 | # Convert binary document formats to text before diffing them. This feature 51 | # is only available from the command line. Turn it on by uncommenting the 52 | # entries below. 53 | ############################################################################### 54 | #*.doc diff=astextplain 55 | #*.DOC diff=astextplain 56 | #*.docx diff=astextplain 57 | #*.DOCX diff=astextplain 58 | #*.dot diff=astextplain 59 | #*.DOT diff=astextplain 60 | #*.pdf diff=astextplain 61 | #*.PDF diff=astextplain 62 | #*.rtf diff=astextplain 63 | #*.RTF diff=astextplain 64 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | ## Ignore Visual Studio temporary files, build results, and 2 | ## files generated by popular Visual Studio add-ons. 3 | 4 | # User-specific files 5 | *.suo 6 | *.user 7 | *.userosscache 8 | *.sln.docstates 9 | 10 | # User-specific files (MonoDevelop/Xamarin Studio) 11 | *.userprefs 12 | 13 | # Build results 14 | [Dd]ebug/ 15 | [Dd]ebugPublic/ 16 | [Rr]elease/ 17 | [Rr]eleases/ 18 | [Xx]64/ 19 | [Xx]86/ 20 | [Bb]uild/ 21 | bld/ 22 | [Bb]in/ 23 | [Oo]bj/ 24 | 25 | # Visual Studio 2015 cache/options directory 26 | .vs/ 27 | # Uncomment if you have tasks that create the project's static files in wwwroot 28 | #wwwroot/ 29 | 30 | # MSTest test Results 31 | [Tt]est[Rr]esult*/ 32 | [Bb]uild[Ll]og.* 33 | 34 | # NUNIT 35 | *.VisualState.xml 36 | TestResult.xml 37 | 38 | # Build Results of an ATL Project 39 | [Dd]ebugPS/ 40 | [Rr]eleasePS/ 41 | dlldata.c 42 | 43 | # DNX 44 | project.lock.json 45 | artifacts/ 46 | 47 | *_i.c 48 | *_p.c 49 | *_i.h 50 | *.ilk 51 | *.meta 52 | *.obj 53 | *.pch 54 | *.pdb 55 | *.pgc 56 | *.pgd 57 | *.rsp 58 | *.sbr 59 | *.tlb 60 | *.tli 61 | *.tlh 62 | *.tmp 63 | *.tmp_proj 64 | *.log 65 | *.vspscc 66 | *.vssscc 67 | .builds 68 | *.pidb 69 | *.svclog 70 | *.scc 71 | 72 | # Chutzpah Test files 73 | _Chutzpah* 74 | 75 | # Visual C++ cache files 76 | ipch/ 77 | *.aps 78 | *.ncb 79 | *.opendb 80 | *.opensdf 81 | *.sdf 82 | *.cachefile 83 | *.VC.db 84 | 85 | # Visual Studio profiler 86 | *.psess 87 | *.vsp 88 | *.vspx 89 | *.sap 90 | 91 | # TFS 2012 Local Workspace 92 | $tf/ 93 | 94 | # Guidance Automation Toolkit 95 | *.gpState 96 | 97 | # ReSharper is a .NET coding add-in 98 | _ReSharper*/ 99 | *.[Rr]e[Ss]harper 100 | *.DotSettings.user 101 | 102 | # JustCode is a .NET coding add-in 103 | .JustCode 104 | 105 | # TeamCity is a build add-in 106 | _TeamCity* 107 | 108 | # DotCover is a Code Coverage Tool 109 | *.dotCover 110 | 111 | # NCrunch 112 | _NCrunch_* 113 | .*crunch*.local.xml 114 | nCrunchTemp_* 115 | 116 | # MightyMoose 117 | *.mm.* 118 | AutoTest.Net/ 119 | 120 | # Web workbench (sass) 121 | .sass-cache/ 122 | 123 | # Installshield output folder 124 | [Ee]xpress/ 125 | 126 | # DocProject is a documentation generator add-in 127 | DocProject/buildhelp/ 128 | DocProject/Help/*.HxT 129 | DocProject/Help/*.HxC 130 | DocProject/Help/*.hhc 131 | DocProject/Help/*.hhk 132 | DocProject/Help/*.hhp 133 | DocProject/Help/Html2 134 | DocProject/Help/html 135 | 136 | # Click-Once directory 137 | publish/ 138 | 139 | # Publish Web Output 140 | *.[Pp]ublish.xml 141 | *.azurePubxml 142 | 143 | # TODO: Un-comment the next line if you do not want to checkin 144 | # your web deploy settings because they may include unencrypted 145 | # passwords 146 | #*.pubxml 147 | *.publishproj 148 | 149 | # NuGet Packages 150 | *.nupkg 151 | # The packages folder can be ignored because of Package Restore 152 | **/packages/* 153 | # except build/, which is used as an MSBuild target. 154 | !**/packages/build/ 155 | # Uncomment if necessary however generally it will be regenerated when needed 156 | #!**/packages/repositories.config 157 | # NuGet v3's project.json files produces more ignoreable files 158 | *.nuget.props 159 | *.nuget.targets 160 | 161 | # Microsoft Azure Build Output 162 | csx/ 163 | *.build.csdef 164 | 165 | # Microsoft Azure Emulator 166 | ecf/ 167 | rcf/ 168 | 169 | # Microsoft Azure ApplicationInsights config file 170 | ApplicationInsights.config 171 | 172 | # Windows Store app package directory 173 | AppPackages/ 174 | BundleArtifacts/ 175 | 176 | # Visual Studio cache files 177 | # files ending in .cache can be ignored 178 | *.[Cc]ache 179 | # but keep track of directories ending in .cache 180 | !*.[Cc]ache/ 181 | 182 | # Others 183 | ClientBin/ 184 | [Ss]tyle[Cc]op.* 185 | ~$* 186 | *~ 187 | *.dbmdl 188 | *.dbproj.schemaview 189 | *.pfx 190 | *.publishsettings 191 | node_modules/ 192 | orleans.codegen.cs 193 | 194 | # RIA/Silverlight projects 195 | Generated_Code/ 196 | 197 | # Backup & report files from converting an old project file 198 | # to a newer Visual Studio version. Backup files are not needed, 199 | # because we have git ;-) 200 | _UpgradeReport_Files/ 201 | Backup*/ 202 | UpgradeLog*.XML 203 | UpgradeLog*.htm 204 | 205 | # SQL Server files 206 | *.mdf 207 | *.ldf 208 | 209 | # Business Intelligence projects 210 | *.rdl.data 211 | *.bim.layout 212 | *.bim_*.settings 213 | 214 | # Microsoft Fakes 215 | FakesAssemblies/ 216 | 217 | # GhostDoc plugin setting file 218 | *.GhostDoc.xml 219 | 220 | # Node.js Tools for Visual Studio 221 | .ntvs_analysis.dat 222 | 223 | # Visual Studio 6 build log 224 | *.plg 225 | 226 | # Visual Studio 6 workspace options file 227 | *.opt 228 | 229 | # Visual Studio LightSwitch build output 230 | **/*.HTMLClient/GeneratedArtifacts 231 | **/*.DesktopClient/GeneratedArtifacts 232 | **/*.DesktopClient/ModelManifest.xml 233 | **/*.Server/GeneratedArtifacts 234 | **/*.Server/ModelManifest.xml 235 | _Pvt_Extensions 236 | 237 | # LightSwitch generated files 238 | GeneratedArtifacts/ 239 | ModelManifest.xml 240 | 241 | # Paket dependency manager 242 | .paket/paket.exe 243 | 244 | # FAKE - F# Make 245 | .fake/ -------------------------------------------------------------------------------- /UrlCombineLib.Tests/Tests.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using Xunit; 3 | 4 | namespace UrlCombineLib.Tests 5 | { 6 | public class Tests 7 | { 8 | [Theory] 9 | [InlineData("http://www.salem.com.br", "/john/hathorne", "http://www.salem.com.br/john/hathorne")] 10 | [InlineData("http://www.salem.com.br", "john/hathorne", "http://www.salem.com.br/john/hathorne")] 11 | [InlineData("http://www.salem.com.br/", "/john/hathorne", "http://www.salem.com.br/john/hathorne")] 12 | [InlineData("http://www.salem.com.br/", "john/hathorne", "http://www.salem.com.br/john/hathorne")] 13 | [InlineData("http://www.salem.com.br/john", "/hathorne", "http://www.salem.com.br/john/hathorne")] 14 | [InlineData("http://www.salem.com.br/john", "hathorne", "http://www.salem.com.br/john/hathorne")] 15 | [InlineData("http://www.salem.com.br/john/", "/hathorne", "http://www.salem.com.br/john/hathorne")] 16 | [InlineData("http://www.salem.com.br/john/", "hathorne", "http://www.salem.com.br/john/hathorne")] 17 | public void One_Base_Path_Should_Be_Combined_With_Relative_Path(string url1, string url2, string expected) 18 | { 19 | var actualStatic = UrlCombine.Combine(url1, url2); 20 | var actualUriExtension = new Uri(url1).Combine(url2).ToString(); 21 | var actualStringExtension = url1.CombineUrl(url2); 22 | 23 | Assert.Equal(expected, actualStatic); 24 | Assert.Equal(expected, actualUriExtension); 25 | Assert.Equal(expected, actualStringExtension); 26 | } 27 | 28 | [Fact] 29 | public void Base_Path_With_No_Relative_Should_Return_Base_Path() 30 | { 31 | string nullString = null; 32 | var expected = "http://www.google.com.br/"; 33 | 34 | var actualStatic = UrlCombine.Combine(expected, nullString); 35 | var actualUriExtension = new Uri(expected).Combine(nullString).ToString(); 36 | var actualStringExtension = expected.CombineUrl(nullString); 37 | 38 | Assert.Equal(expected, actualStatic); 39 | Assert.Equal(expected, actualUriExtension); 40 | Assert.Equal(expected, actualStringExtension); 41 | } 42 | 43 | [Fact] 44 | public void Base_Path_Null_Should_Throw_Exception() 45 | { 46 | string basePath = null; 47 | Uri baseUri = null; 48 | 49 | Assert.Throws(() => UrlCombine.Combine(basePath, "relative/path")); 50 | Assert.Throws(() => basePath.CombineUrl("relative/path")); 51 | Assert.Throws(() => baseUri.Combine("relative/path")); 52 | } 53 | 54 | [Fact] 55 | public void Base_Path_Null_Should_Throw_Exception_At_Combine_With_Params() 56 | { 57 | var relativePaths = new string[] { "john", "hathorne" }; 58 | string basePath = null; 59 | Uri baseUri = null; 60 | 61 | Assert.Throws(() => UrlCombine.Combine(basePath, relativePaths)); 62 | Assert.Throws(() => basePath.CombineUrl(relativePaths)); 63 | Assert.Throws(() => baseUri.Combine(relativePaths)); 64 | } 65 | 66 | [Theory] 67 | [InlineData("http://www.salem.com.br", "john#hathorne#magistrate", "http://www.salem.com.br/john/hathorne/magistrate")] 68 | [InlineData("http://www.salem.com.br", "/john/#/hathorne/#/magistrate", "http://www.salem.com.br/john/hathorne/magistrate")] 69 | [InlineData("http://www.salem.com.br", "/john#/hathorne#magistrate", "http://www.salem.com.br/john/hathorne/magistrate")] 70 | [InlineData("http://www.salem.com.br", "john#/hathorne#/magistrate", "http://www.salem.com.br/john/hathorne/magistrate")] 71 | [InlineData("http://www.salem.com.br/", "/john#/hathorne/#magistrate", "http://www.salem.com.br/john/hathorne/magistrate")] 72 | [InlineData("http://www.salem.com.br/", "john#/hathorne/#/magistrate", "http://www.salem.com.br/john/hathorne/magistrate")] 73 | [InlineData("http://www.salem.com.br", "/john#/hathorne", "http://www.salem.com.br/john/hathorne")] 74 | [InlineData("http://www.salem.com.br", "john#/hathorne", "http://www.salem.com.br/john/hathorne")] 75 | [InlineData("http://www.salem.com.br/", "/john#/hathorne", "http://www.salem.com.br/john/hathorne")] 76 | [InlineData("http://www.salem.com.br/", "john#/hathorne", "http://www.salem.com.br/john/hathorne")] 77 | [InlineData("http://www.salem.com.br/john", "/hathorne", "http://www.salem.com.br/john/hathorne")] 78 | [InlineData("http://www.salem.com.br/john", "hathorne", "http://www.salem.com.br/john/hathorne")] 79 | [InlineData("http://www.salem.com.br/john/", "/hathorne", "http://www.salem.com.br/john/hathorne")] 80 | [InlineData("http://www.salem.com.br/john/", "hathorne", "http://www.salem.com.br/john/hathorne")] 81 | public void Combine_With_Params_Should_Merge_Urls_Correctly(string baseUrl, string relativePathsRaw, string expected) 82 | { 83 | var relativePaths = relativePathsRaw.Split('#'); 84 | 85 | var urlStatic = UrlCombine.Combine(baseUrl, relativePaths); 86 | var urlUriExtension = new Uri(baseUrl).Combine(relativePaths).ToString(); 87 | var urlStringExtesion = baseUrl.CombineUrl(relativePaths); 88 | 89 | Assert.Equal(urlStatic, expected); 90 | Assert.Equal(urlUriExtension, expected); 91 | Assert.Equal(urlStringExtesion, expected); 92 | } 93 | 94 | [Theory] 95 | [InlineData("http://www.salem.com.br", "john#/#hathorne/#/#/magistrate", "http://www.salem.com.br/john/hathorne/magistrate")] 96 | [InlineData("http://www.salem.com.br", "/john/##/hathorne/##/magistrate", "http://www.salem.com.br/john/hathorne/magistrate")] 97 | [InlineData("http://www.salem.com.br", "/john##/hathorne/#/#/magistrate", "http://www.salem.com.br/john/hathorne/magistrate")] 98 | public void Combine_Should_Ignore_Empty_Spaces_And_Empty_Slashes(string baseUrl, string relativePathsRaw, string expected) 99 | { 100 | var relativePaths = relativePathsRaw.Split('#'); 101 | 102 | var urlStatic = UrlCombine.Combine(baseUrl, relativePaths); 103 | var urlUriExtension = new Uri(baseUrl).Combine(relativePaths).ToString(); 104 | var urlStringExtesion = baseUrl.CombineUrl(relativePaths); 105 | 106 | Assert.Equal(urlStatic, expected); 107 | Assert.Equal(urlUriExtension, expected); 108 | Assert.Equal(urlStringExtesion, expected); 109 | } 110 | } 111 | } 112 | --------------------------------------------------------------------------------