mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-12-16 11:37:58 +02:00
Fixed: Health Checks on mono now shows correct wiki links.
This commit is contained in:
parent
9ac3a1e094
commit
6c22a5ffdb
24
src/NzbDrone.Core.Test/HealthCheck/HealthCheckFixture.cs
Normal file
24
src/NzbDrone.Core.Test/HealthCheck/HealthCheckFixture.cs
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
using System;
|
||||||
|
using FluentAssertions;
|
||||||
|
using NUnit.Framework;
|
||||||
|
using NzbDrone.Core.HealthCheck;
|
||||||
|
using NzbDrone.Core.Test.Framework;
|
||||||
|
|
||||||
|
namespace NzbDrone.Core.Test.HealthCheck
|
||||||
|
{
|
||||||
|
[TestFixture]
|
||||||
|
public class HealthCheckFixture : CoreTest
|
||||||
|
{
|
||||||
|
private const string WikiRoot = "https://github.com/Sonarr/Sonarr/wiki/";
|
||||||
|
|
||||||
|
[TestCase("I blew up because of some weird user mistake", null, WikiRoot + "Health-checks#i-blew-up-because-of-some-weird-user-mistake")]
|
||||||
|
[TestCase("I blew up because of some weird user mistake", "#my-health-check", WikiRoot + "Health-checks#my-health-check")]
|
||||||
|
[TestCase("I blew up because of some weird user mistake", "Custom-Page#my-health-check", WikiRoot + "Custom-Page#my-health-check")]
|
||||||
|
public void should_format_wiki_url(string message, string wikiFragment, string expectedUrl)
|
||||||
|
{
|
||||||
|
var subject = new NzbDrone.Core.HealthCheck.HealthCheck(typeof(HealthCheckBase), HealthCheckResult.Warning, message, wikiFragment);
|
||||||
|
|
||||||
|
subject.WikiUrl.Should().Be(expectedUrl);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -178,6 +178,7 @@
|
|||||||
<Compile Include="HealthCheck\Checks\MonoVersionCheckFixture.cs" />
|
<Compile Include="HealthCheck\Checks\MonoVersionCheckFixture.cs" />
|
||||||
<Compile Include="HealthCheck\Checks\RootFolderCheckFixture.cs" />
|
<Compile Include="HealthCheck\Checks\RootFolderCheckFixture.cs" />
|
||||||
<Compile Include="HealthCheck\Checks\UpdateCheckFixture.cs" />
|
<Compile Include="HealthCheck\Checks\UpdateCheckFixture.cs" />
|
||||||
|
<Compile Include="HealthCheck\HealthCheckFixture.cs" />
|
||||||
<Compile Include="HistoryTests\HistoryRepositoryFixture.cs" />
|
<Compile Include="HistoryTests\HistoryRepositoryFixture.cs" />
|
||||||
<Compile Include="HistoryTests\HistoryServiceFixture.cs" />
|
<Compile Include="HistoryTests\HistoryServiceFixture.cs" />
|
||||||
<Compile Include="Housekeeping\Housekeepers\CleanupAdditionalNamingSpecsFixture.cs" />
|
<Compile Include="Housekeeping\Housekeepers\CleanupAdditionalNamingSpecsFixture.cs" />
|
||||||
|
@ -34,10 +34,17 @@ private static String MakeWikiFragment(String message)
|
|||||||
|
|
||||||
private static Uri MakeWikiUrl(String fragment)
|
private static Uri MakeWikiUrl(String fragment)
|
||||||
{
|
{
|
||||||
var rootUri = new Uri("https://github.com/NzbDrone/NzbDrone/wiki/Health-checks");
|
var rootUri = new Uri("https://github.com/Sonarr/Sonarr/wiki/Health-checks");
|
||||||
var fragmentUri = new Uri(fragment, UriKind.Relative);
|
if (fragment.StartsWith("#"))
|
||||||
|
{ // Mono doesn't understand # and generates a different url than windows.
|
||||||
|
return new Uri(rootUri + fragment);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
var fragmentUri = new Uri(fragment, UriKind.Relative);
|
||||||
|
|
||||||
return new Uri(rootUri, fragmentUri);
|
return new Uri(rootUri, fragmentUri);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user