using System; using System.Collections.Generic; using NzbDrone.Core.Model.Notification; namespace NzbDrone.Core.Providers.Fakes { class FakeNotificationProvider : INotificationProvider { private readonly Dictionary _basicNotifications = new Dictionary(); private readonly Dictionary _progressNotification = new Dictionary(); private readonly Object _lock = new object(); ProgressNotification fakeNotification = new ProgressNotification("Updating Series"); ProgressNotification fakeNotification2 = new ProgressNotification("Updating Series2"); public void Register(ProgressNotification notification) { _progressNotification.Add(notification.Id, notification); } public void Register(BasicNotification notification) { _basicNotifications.Add(notification.Id, notification); } public List BasicNotifications { get { return new List(_basicNotifications.Values); } } public List GetProgressNotifications { get { fakeNotification.Status = ProgressNotificationStatus.InProgress; fakeNotification.Status = ProgressNotificationStatus.InProgress; fakeNotification2.CurrentStatus = DateTime.UtcNow.ToString(); fakeNotification.CurrentStatus = DateTime.Now.ToString(); return new List { fakeNotification }; } } public void Dismiss(Guid notificationId) { lock (_lock) { if (_basicNotifications.ContainsKey(notificationId)) { _basicNotifications.Remove(notificationId); } else if (_progressNotification.ContainsKey(notificationId)) { _progressNotification.Remove(notificationId); } } } } }