// ReSharper disable RedundantUsingDirective using System; using System.IO; using System.Linq; using System.Net; using System.Text; using FizzWare.NBuilder; using FluentAssertions; using Moq; using NUnit.Framework; using NzbDrone.Common; using NzbDrone.Core.Model.Xbmc; using NzbDrone.Core.Providers; using NzbDrone.Core.Providers.Core; using NzbDrone.Core.Providers.Xbmc; using NzbDrone.Core.Repository; using NzbDrone.Core.Test.Framework; using NzbDrone.Test.Common.AutoMoq; namespace NzbDrone.Core.Test.ProviderTests { [TestFixture] // ReSharper disable InconsistentNaming public class PlexProviderTest : CoreTest { private void WithSingleClient() { Mocker.GetMock().SetupGet(s => s.PlexClientHosts) .Returns("localhost:3000"); } private void WithMultipleClients() { Mocker.GetMock().SetupGet(s => s.PlexClientHosts) .Returns("localhost:3000, 192.168.0.10:3000"); } public void WithClientCredentials() { Mocker.GetMock().SetupGet(s => s.PlexUsername) .Returns("plex"); Mocker.GetMock().SetupGet(s => s.PlexPassword) .Returns("plex"); } [Test] public void GetSectionKeys_should_return_single_section_key_when_only_one_show_section() { //Setup var response = ""; Stream stream = new MemoryStream(ASCIIEncoding.Default.GetBytes(response)); Mocker.GetMock().Setup(s => s.DownloadStream("http://localhost:32400/library/sections", null)) .Returns(stream); //Act var result = Mocker.Resolve().GetSectionKeys("localhost:32400"); //Assert result.Should().HaveCount(1); result.First().Should().Be(5); } [Test] public void GetSectionKeys_should_return_single_section_key_when_only_one_show_section_with_other_sections() { //Setup var response = ""; Stream stream = new MemoryStream(ASCIIEncoding.Default.GetBytes(response)); Mocker.GetMock().Setup(s => s.DownloadStream("http://localhost:32400/library/sections", null)) .Returns(stream); //Act var result = Mocker.Resolve().GetSectionKeys("localhost:32400"); //Assert result.Should().HaveCount(1); result.First().Should().Be(5); } [Test] public void GetSectionKeys_should_return_multiple_section_keys_when_there_are_multiple_show_sections() { //Setup var response = ""; Stream stream = new MemoryStream(ASCIIEncoding.Default.GetBytes(response)); Mocker.GetMock().Setup(s => s.DownloadStream("http://localhost:32400/library/sections", null)) .Returns(stream); //Act var result = Mocker.Resolve().GetSectionKeys("localhost:32400"); //Assert result.Should().HaveCount(2); result.First().Should().Be(5); result.Last().Should().Be(6); } [Test] public void UpdateSection_should_update_section() { //Setup var response = ""; Stream stream = new MemoryStream(ASCIIEncoding.Default.GetBytes(response)); Mocker.GetMock().Setup(s => s.DownloadString("http://localhost:32400/library/sections/5/refresh")) .Returns(response); //Act Mocker.Resolve().UpdateSection("localhost:32400", 5); //Assert } [Test] public void Notify_should_send_notification_for_single_client_when_only_one_is_configured() { //Setup WithSingleClient(); const string header = "Test Header"; const string message = "Test Message"; var expectedUrl = String.Format("http://localhost:3000/xbmcCmds/xbmcHttp?command=ExecBuiltIn(Notification({0}, {1}))", header, message); var fakeHttp = Mocker.GetMock(); fakeHttp.Setup(s => s.DownloadString(expectedUrl)) .Returns("ok"); //Act Mocker.Resolve().Notify(header, message); //Assert fakeHttp.Verify(v => v.DownloadString(expectedUrl), Times.Once()); } [Test] public void Notify_should_send_notifcation_to_all_configured_clients() { //Setup WithMultipleClients(); const string header = "Test Header"; const string message = "Test Message"; var fakeHttp = Mocker.GetMock(); fakeHttp.Setup(s => s.DownloadString(It.IsAny())) .Returns("ok"); //Act Mocker.Resolve().Notify(header, message); //Assert fakeHttp.Verify(v => v.DownloadString(It.IsAny()), Times.Exactly(2)); } [Test] public void Notify_should_send_notification_with_credentials_when_configured() { //Setup WithSingleClient(); WithClientCredentials(); const string header = "Test Header"; const string message = "Test Message"; var expectedUrl = String.Format("http://localhost:3000/xbmcCmds/xbmcHttp?command=ExecBuiltIn(Notification({0}, {1}))", header, message); var fakeHttp = Mocker.GetMock(); fakeHttp.Setup(s => s.DownloadString(expectedUrl, "plex", "plex")) .Returns("ok"); //Act Mocker.Resolve().Notify(header, message); //Assert fakeHttp.Verify(v => v.DownloadString(expectedUrl, "plex", "plex"), Times.Once()); } [Test] public void Notify_should_send_notification_with_credentials_when_configured_for_all_clients() { //Setup WithMultipleClients(); WithClientCredentials(); const string header = "Test Header"; const string message = "Test Message"; var fakeHttp = Mocker.GetMock(); fakeHttp.Setup(s => s.DownloadString(It.IsAny(), "plex", "plex")) .Returns("ok"); //Act Mocker.Resolve().Notify(header, message); //Assert fakeHttp.Verify(v => v.DownloadString(It.IsAny(), "plex", "plex"), Times.Exactly(2)); } } }