2013-06-13 04:37:05 +03:00
|
|
|
using NUnit.Framework;
|
2013-05-20 02:17:32 +03:00
|
|
|
using NzbDrone.Core.Notifications.Growl;
|
2011-11-02 06:08:53 +03:00
|
|
|
using NzbDrone.Core.Test.Framework;
|
|
|
|
|
2013-06-13 04:37:05 +03:00
|
|
|
namespace NzbDrone.Core.Test.NotificationTests
|
2011-11-02 06:08:53 +03:00
|
|
|
{
|
|
|
|
[Explicit]
|
|
|
|
[TestFixture]
|
2013-02-17 08:44:06 +03:00
|
|
|
public class GrowlProviderTest : CoreTest
|
2011-11-02 06:08:53 +03:00
|
|
|
{
|
|
|
|
[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
|
|
|
|
2011-11-02 06:08:53 +03:00
|
|
|
|
2013-03-29 01:07:09 +03:00
|
|
|
|
2011-12-15 07:15:53 +03:00
|
|
|
Mocker.Resolve<GrowlProvider>().Register("localhost", 23053, "");
|
2011-11-02 06:08:53 +03:00
|
|
|
|
2013-03-29 01:07:09 +03:00
|
|
|
|
2011-12-15 07:15:53 +03:00
|
|
|
Mocker.VerifyAllMocks();
|
2011-11-02 06:08:53 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
[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
|
|
|
|
2011-11-02 06:08:53 +03:00
|
|
|
|
2013-03-29 01:07:09 +03:00
|
|
|
|
2011-12-15 07:15:53 +03:00
|
|
|
Mocker.Resolve<GrowlProvider>().TestNotification("localhost", 23053, "");
|
2011-11-02 06:08:53 +03:00
|
|
|
|
2013-03-29 01:07:09 +03:00
|
|
|
|
2011-12-15 07:15:53 +03:00
|
|
|
Mocker.VerifyAllMocks();
|
2011-11-02 06:08:53 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
[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
|
|
|
|
2011-11-02 06:08:53 +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, "");
|
2011-11-02 06:08:53 +03:00
|
|
|
|
2013-03-29 01:07:09 +03:00
|
|
|
|
2011-12-15 07:15:53 +03:00
|
|
|
Mocker.VerifyAllMocks();
|
2011-11-02 06:08:53 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
[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
|
|
|
|
2011-11-02 06:08:53 +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, "");
|
2011-11-02 06:08:53 +03:00
|
|
|
|
2013-03-29 01:07:09 +03:00
|
|
|
|
2011-12-15 07:15:53 +03:00
|
|
|
Mocker.VerifyAllMocks();
|
2011-11-02 06:08:53 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|