Skip to content

Commit

Permalink
Fix tests in CleanFilenameFixture
Browse files Browse the repository at this point in the history
  • Loading branch information
markus101 authored and mynameisbogdan committed May 21, 2023
1 parent 1ab34a1 commit c0e8a3e
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 21 deletions.
30 changes: 30 additions & 0 deletions src/NzbDrone.Core.Test/OrganizerTests/CleanFilenameFixture.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
using FluentAssertions;
using NUnit.Framework;
using NzbDrone.Core.Organizer;
using NzbDrone.Core.Test.Framework;

namespace NzbDrone.Core.Test.OrganizerTests
{
[TestFixture]
public class CleanFilenameFixture : CoreTest
{
[TestCase("Law & Order: Criminal Intent - S10E07 - Icarus [HDTV-720p]", "Law & Order - Criminal Intent - S10E07 - Icarus [HDTV-720p]")]
public void should_replaace_invalid_characters(string name, string expectedName)
{
FileNameBuilder.CleanFileName(name).Should().Be(expectedName);
}

[TestCase(".hack s01e01", "hack s01e01")]
public void should_remove_periods_from_start(string name, string expectedName)
{
FileNameBuilder.CleanFileName(name).Should().Be(expectedName);
}

[TestCase(" Series Title - S01E01 - Episode Title", "Series Title - S01E01 - Episode Title")]
[TestCase("Series Title - S01E01 - Episode Title ", "Series Title - S01E01 - Episode Title")]
public void should_remove_spaces_from_start_and_end(string name, string expectedName)
{
FileNameBuilder.CleanFileName(name).Should().Be(expectedName);
}
}
}
18 changes: 0 additions & 18 deletions src/NzbDrone.Core.Test/OrganizerTests/CleanFixture.cs

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -80,9 +80,7 @@ public void Setup()
[TestCase("The Sixth Sense 2 (Thai)", "Sixth Sense 2, The (Thai)")]
[TestCase("The Amazing Race (Latin America)", "Amazing Race, The (Latin America)")]
[TestCase("The Rat Pack (A&E)", "Rat Pack, The (A&E)")]
[TestCase("The Climax: I (Almost) Got Away With It (2016)", "Climax- I (Almost) Got Away With It, The (2016)")]

//[TestCase("", "")]
[TestCase("The Climax: I (Almost) Got Away With It (2016)", "Climax - I (Almost) Got Away With It, The (2016)")]
public void should_get_expected_title_back(string name, string expected)
{
_author.Name = name;
Expand Down

0 comments on commit c0e8a3e

Please sign in to comment.