mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-11-01 00:12:30 +01:00
74 lines
1.9 KiB
C#
74 lines
1.9 KiB
C#
using System;
|
|
|
|
using FizzWare.NBuilder;
|
|
using FluentAssertions;
|
|
using Moq;
|
|
using NUnit.Framework;
|
|
using NzbDrone.Core.Model;
|
|
using NzbDrone.Core.Providers;
|
|
using NzbDrone.Core.Repository;
|
|
using NzbDrone.Core.Repository.Quality;
|
|
using NzbDrone.Core.Test.Framework;
|
|
using NzbDrone.Test.Common.AutoMoq;
|
|
|
|
// ReSharper disable InconsistentNaming
|
|
|
|
namespace NzbDrone.Core.Test.ProviderTests
|
|
{
|
|
[Explicit]
|
|
[TestFixture]
|
|
public class GrowlProviderTest : CoreTest
|
|
{
|
|
[Test]
|
|
public void Register_should_add_new_application_to_local_growl_instance()
|
|
{
|
|
//Setup
|
|
WithStrictMocker();
|
|
|
|
//Act
|
|
Mocker.Resolve<GrowlProvider>().Register("localhost", 23053, "");
|
|
|
|
//Assert
|
|
Mocker.VerifyAllMocks();
|
|
}
|
|
|
|
[Test]
|
|
public void TestNotification_should_send_a_message_to_local_growl_instance()
|
|
{
|
|
//Setup
|
|
WithStrictMocker();
|
|
|
|
//Act
|
|
Mocker.Resolve<GrowlProvider>().TestNotification("localhost", 23053, "");
|
|
|
|
//Assert
|
|
Mocker.VerifyAllMocks();
|
|
}
|
|
|
|
[Test]
|
|
public void OnGrab_should_send_a_message_to_local_growl_instance()
|
|
{
|
|
//Setup
|
|
WithStrictMocker();
|
|
|
|
//Act
|
|
Mocker.Resolve<GrowlProvider>().SendNotification("Episode Grabbed", "Series Title - 1x05 - Episode Title", "GRAB", "localhost", 23053, "");
|
|
|
|
//Assert
|
|
Mocker.VerifyAllMocks();
|
|
}
|
|
|
|
[Test]
|
|
public void OnDownload_should_send_a_message_to_local_growl_instance()
|
|
{
|
|
//Setup
|
|
WithStrictMocker();
|
|
|
|
//Act
|
|
Mocker.Resolve<GrowlProvider>().SendNotification("Episode Downloaded", "Series Title - 1x05 - Episode Title", "DOWNLOAD", "localhost", 23053, "");
|
|
|
|
//Assert
|
|
Mocker.VerifyAllMocks();
|
|
}
|
|
}
|
|
} |