Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Radarr/commit/bd5ced1540deef0fbb21068ad54d848254ea3fbc?style=split&whitespace=ignore-change
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
18 additions and
0 deletions
@ -52,6 +52,10 @@ namespace NzbDrone.Core.Test.ProviderTests.DecisionEngineTests
Mocker . GetMock < AllowedReleaseGroupSpecification > ( )
Mocker . GetMock < AllowedReleaseGroupSpecification > ( )
. Setup ( c = > c . IsSatisfiedBy ( It . IsAny < EpisodeParseResult > ( ) ) )
. Setup ( c = > c . IsSatisfiedBy ( It . IsAny < EpisodeParseResult > ( ) ) )
. Returns ( true ) ;
. Returns ( true ) ;
Mocker . GetMock < EpisodeAiredAfterCutoffSpecification > ( )
. Setup ( c = > c . IsSatisfiedBy ( It . IsAny < EpisodeParseResult > ( ) ) )
. Returns ( true ) ;
}
}
private void WithProfileNotAllowed ( )
private void WithProfileNotAllowed ( )
@ -89,6 +93,13 @@ namespace NzbDrone.Core.Test.ProviderTests.DecisionEngineTests
. Returns ( false ) ;
. Returns ( false ) ;
}
}
private void WithAiredBeforeCutoff ( )
{
Mocker . GetMock < EpisodeAiredAfterCutoffSpecification > ( )
. Setup ( c = > c . IsSatisfiedBy ( It . IsAny < EpisodeParseResult > ( ) ) )
. Returns ( false ) ;
}
[Test]
[Test]
public void should_be_allowed_if_all_conditions_are_met ( )
public void should_be_allowed_if_all_conditions_are_met ( )
{
{
@ -130,6 +141,13 @@ namespace NzbDrone.Core.Test.ProviderTests.DecisionEngineTests
spec . IsSatisfiedBy ( parseResult ) . Should ( ) . Be ( ReportRejectionType . Retention ) ;
spec . IsSatisfiedBy ( parseResult ) . Should ( ) . Be ( ReportRejectionType . Retention ) ;
}
}
[Test]
public void should_not_be_allowed_if_episode_aired_before_cutoff ( )
{
WithAiredBeforeCutoff ( ) ;
spec . IsSatisfiedBy ( parseResult ) . Should ( ) . Be ( ReportRejectionType . EpisodeAiredBeforeCutoff ) ;
}
[Test]
[Test]
public void should_not_be_allowed_if_none_of_conditions_are_met ( )
public void should_not_be_allowed_if_none_of_conditions_are_met ( )
{
{