Track Parsing Code (#10)

* We now have the ability to import local tracks into Lidarr. Switching to IDv3 tag reading over custom parsing for local tracks.

* Stable code for track refresh.

* RefreshArtist and RescanArtist events are working correctly. Need to add potential rejection decisions in future.

* Implemented code comments

* PR comments and fixing some odd db bugs.

* Fix some conflicts after Unit Test PR Merge

Fix some conflicts after Unit Test PR Merge

* Track/Album Add and Update Fixes

Track/Album Add and Update Fixes

* Fixed an issue with trackimport looking up trackId instead of artistId

* Add Handle to TrackService for TrackAddedEvent

Add Handle to TrackService for TrackAddedEvent

* Update Quality Regex, Store BitRateMode in TrackFile

Update Quality Regex, Store BitRateMode in TrackFile
This commit is contained in:
Joseph Milazzo 2017-07-03 13:39:06 -05:00 committed by GitHub
commit ef4da4ac9f
99 changed files with 838 additions and 1023 deletions

View file

@ -17,11 +17,11 @@ namespace NzbDrone.Automation.Test
}
[Test]
public void series_page()
public void artist_page()
{
page.SeriesNavIcon.Click();
page.ArtistNavIcon.Click();
page.WaitForNoSpinner();
page.FindByClass("iv-series-index-seriesindexlayout").Should().NotBeNull();
page.FindByClass("iv-artist-index-artistindexlayout").Should().NotBeNull();
}
[Test]
@ -63,14 +63,14 @@ namespace NzbDrone.Automation.Test
[Test]
public void add_series_page()
{
page.SeriesNavIcon.Click();
page.ArtistNavIcon.Click();
page.WaitForNoSpinner();
page.Find(By.LinkText("Add Series")).Click();
page.Find(By.LinkText("Add Artist")).Click();
page.WaitForNoSpinner();
page.FindByClass("iv-addseries-addserieslayout").Should().NotBeNull();
page.FindByClass("iv-addartist-addartistlayout").Should().NotBeNull();
}
}
}

View file

@ -47,7 +47,7 @@ namespace NzbDrone.Automation.Test.PageModel
});
}
public IWebElement SeriesNavIcon => FindByClass("x-series-nav");
public IWebElement ArtistNavIcon => FindByClass("x-artist-nav");
public IWebElement CalendarNavIcon => FindByClass("x-calendar-nav");