1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-12-16 11:37:58 +02:00
Sonarr/NzbDrone.Core.Test/NotificationTests/GrowlProviderTest.cs

63 lines
1.5 KiB
C#
Raw Normal View History

using NUnit.Framework;
2013-05-20 02:17:32 +03:00
using NzbDrone.Core.Notifications.Growl;
using NzbDrone.Core.Test.Framework;
namespace NzbDrone.Core.Test.NotificationTests
{
[Explicit]
[TestFixture]
public class GrowlProviderTest : CoreTest
{
[Test]
public void Register_should_add_new_application_to_local_growl_instance()
{
2013-03-29 01:07:09 +03:00
2013-04-15 08:27:51 +03:00
2013-03-29 01:07:09 +03:00
2011-12-15 07:15:53 +03:00
Mocker.Resolve<GrowlProvider>().Register("localhost", 23053, "");
2013-03-29 01:07:09 +03:00
2011-12-15 07:15:53 +03:00
Mocker.VerifyAllMocks();
}
[Test]
public void TestNotification_should_send_a_message_to_local_growl_instance()
{
2013-03-29 01:07:09 +03:00
2013-04-15 08:27:51 +03:00
2013-03-29 01:07:09 +03:00
2011-12-15 07:15:53 +03:00
Mocker.Resolve<GrowlProvider>().TestNotification("localhost", 23053, "");
2013-03-29 01:07:09 +03:00
2011-12-15 07:15:53 +03:00
Mocker.VerifyAllMocks();
}
[Test]
public void OnGrab_should_send_a_message_to_local_growl_instance()
{
2013-03-29 01:07:09 +03:00
2013-04-15 08:27:51 +03:00
2013-03-29 01:07:09 +03:00
2011-12-15 07:15:53 +03:00
Mocker.Resolve<GrowlProvider>().SendNotification("Episode Grabbed", "Series Title - 1x05 - Episode Title", "GRAB", "localhost", 23053, "");
2013-03-29 01:07:09 +03:00
2011-12-15 07:15:53 +03:00
Mocker.VerifyAllMocks();
}
[Test]
public void OnDownload_should_send_a_message_to_local_growl_instance()
{
2013-03-29 01:07:09 +03:00
2013-04-15 08:27:51 +03:00
2013-03-29 01:07:09 +03:00
2011-12-15 07:15:53 +03:00
Mocker.Resolve<GrowlProvider>().SendNotification("Episode Downloaded", "Series Title - 1x05 - Episode Title", "DOWNLOAD", "localhost", 23053, "");
2013-03-29 01:07:09 +03:00
2011-12-15 07:15:53 +03:00
Mocker.VerifyAllMocks();
}
}
}