Based on Qstick's Radarr commit of the same name closes #4369 Signed-off-by: Taloth Saldono <Taloth@users.noreply.github.com>pull/4387/head
parent
32058f1705
commit
01995e686d
@ -0,0 +1,100 @@
|
|||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using FluentAssertions;
|
||||||
|
using Newtonsoft.Json.Linq;
|
||||||
|
using NUnit.Framework;
|
||||||
|
using NzbDrone.Common.Serializer;
|
||||||
|
using NzbDrone.Core.Datastore.Migration;
|
||||||
|
using NzbDrone.Core.Test.Framework;
|
||||||
|
|
||||||
|
namespace NzbDrone.Core.Test.Datastore.Migration
|
||||||
|
{
|
||||||
|
[TestFixture]
|
||||||
|
public class email_multiple_addressesFixture : MigrationTest<email_multiple_addresses>
|
||||||
|
{
|
||||||
|
[Test]
|
||||||
|
public void should_convert_to_list_on_email_lists()
|
||||||
|
{
|
||||||
|
var db = WithMigrationTestDb(c =>
|
||||||
|
{
|
||||||
|
c.Insert.IntoTable("Notifications").Row(new
|
||||||
|
{
|
||||||
|
OnGrab = true,
|
||||||
|
OnDownload = true,
|
||||||
|
OnUpgrade = true,
|
||||||
|
OnHealthIssue = true,
|
||||||
|
IncludeHealthWarnings = true,
|
||||||
|
OnRename = true,
|
||||||
|
Name = "Mail Sonarr",
|
||||||
|
Implementation = "Email",
|
||||||
|
Tags = "[]",
|
||||||
|
Settings = new EmailSettings173
|
||||||
|
{
|
||||||
|
Server = "smtp.gmail.com",
|
||||||
|
Port = 563,
|
||||||
|
To = "dont@email.me"
|
||||||
|
}.ToJson(),
|
||||||
|
ConfigContract = "EmailSettings"
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
var items = db.Query<NotificationDefinition173>("SELECT * FROM Notifications");
|
||||||
|
|
||||||
|
items.Should().HaveCount(1);
|
||||||
|
items.First().Implementation.Should().Be("Email");
|
||||||
|
items.First().ConfigContract.Should().Be("EmailSettings");
|
||||||
|
items.First().Settings.To.Count().Should().Be(1);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public class NotificationDefinition173
|
||||||
|
{
|
||||||
|
public int Id { get; set; }
|
||||||
|
public string Implementation { get; set; }
|
||||||
|
public string ConfigContract { get; set; }
|
||||||
|
public EmailSettings174 Settings { get; set; }
|
||||||
|
public string Name { get; set; }
|
||||||
|
public bool OnGrab { get; set; }
|
||||||
|
public bool OnDownload { get; set; }
|
||||||
|
public bool OnUpgrade { get; set; }
|
||||||
|
public bool OnRename { get; set; }
|
||||||
|
public bool OnSeriesDelete { get; set; }
|
||||||
|
public bool OnEpisodeFileDelete { get; set; }
|
||||||
|
public bool OnEpisodeFileDeleteForUpgrade { get; set; }
|
||||||
|
public bool OnHealthIssue { get; set; }
|
||||||
|
public bool SupportsOnGrab { get; set; }
|
||||||
|
public bool SupportsOnDownload { get; set; }
|
||||||
|
public bool SupportsOnUpgrade { get; set; }
|
||||||
|
public bool SupportsOnRename { get; set; }
|
||||||
|
public bool SupportsOnSeriesDelete { get; set; }
|
||||||
|
public bool SupportsOnEpisodeFileDelete { get; set; }
|
||||||
|
public bool SupportsOnEpisodeFileDeleteForUpgrade { get; set; }
|
||||||
|
public bool SupportsOnHealthIssue { get; set; }
|
||||||
|
public bool IncludeHealthWarnings { get; set; }
|
||||||
|
public List<int> Tags { get; set; }
|
||||||
|
}
|
||||||
|
|
||||||
|
public class EmailSettings173
|
||||||
|
{
|
||||||
|
public string Server { get; set; }
|
||||||
|
public int Port { get; set; }
|
||||||
|
public bool RequireEncryption { get; set; }
|
||||||
|
public string Username { get; set; }
|
||||||
|
public string Password { get; set; }
|
||||||
|
public string From { get; set; }
|
||||||
|
public string To { get; set; }
|
||||||
|
}
|
||||||
|
|
||||||
|
public class EmailSettings174
|
||||||
|
{
|
||||||
|
public string Server { get; set; }
|
||||||
|
public int Port { get; set; }
|
||||||
|
public bool RequireEncryption { get; set; }
|
||||||
|
public string Username { get; set; }
|
||||||
|
public string Password { get; set; }
|
||||||
|
public string From { get; set; }
|
||||||
|
public IEnumerable<string> To { get; set; }
|
||||||
|
public IEnumerable<string> Cc { get; set; }
|
||||||
|
public IEnumerable<string> Bcc { get; set; }
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,113 @@
|
|||||||
|
using FizzWare.NBuilder;
|
||||||
|
using FluentAssertions;
|
||||||
|
using NUnit.Framework;
|
||||||
|
using NzbDrone.Core.Notifications.Email;
|
||||||
|
using NzbDrone.Core.Test.Framework;
|
||||||
|
using NzbDrone.Test.Common;
|
||||||
|
|
||||||
|
namespace NzbDrone.Core.Test.NotificationTests.EmailTests
|
||||||
|
{
|
||||||
|
[TestFixture]
|
||||||
|
public class EmailSettingsValidatorFixture : CoreTest<EmailSettingsValidator>
|
||||||
|
{
|
||||||
|
private EmailSettings _emailSettings;
|
||||||
|
private TestValidator<EmailSettings> _validator;
|
||||||
|
|
||||||
|
[SetUp]
|
||||||
|
public void Setup()
|
||||||
|
{
|
||||||
|
_validator = new TestValidator<EmailSettings>
|
||||||
|
{
|
||||||
|
v => v.RuleFor(s => s).SetValidator(Subject)
|
||||||
|
};
|
||||||
|
|
||||||
|
_emailSettings = Builder<EmailSettings>.CreateNew()
|
||||||
|
.With(s => s.Server = "someserver")
|
||||||
|
.With(s => s.Port = 567)
|
||||||
|
.With(s => s.RequireEncryption = true)
|
||||||
|
.With(s => s.From = "dont@email.me")
|
||||||
|
.With(s => s.To = new string[] { "dont@email.me" })
|
||||||
|
.Build();
|
||||||
|
}
|
||||||
|
|
||||||
|
[Test]
|
||||||
|
public void should_be_valid_if_all_settings_valid()
|
||||||
|
{
|
||||||
|
_validator.Validate(_emailSettings).IsValid.Should().BeTrue();
|
||||||
|
}
|
||||||
|
|
||||||
|
[Test]
|
||||||
|
public void should_not_be_valid_if_port_is_out_of_range()
|
||||||
|
{
|
||||||
|
_emailSettings.Port = 900000;
|
||||||
|
|
||||||
|
_validator.Validate(_emailSettings).IsValid.Should().BeFalse();
|
||||||
|
}
|
||||||
|
|
||||||
|
[Test]
|
||||||
|
public void should_not_be_valid_if_server_is_empty()
|
||||||
|
{
|
||||||
|
_emailSettings.Server = "";
|
||||||
|
|
||||||
|
_validator.Validate(_emailSettings).IsValid.Should().BeFalse();
|
||||||
|
}
|
||||||
|
|
||||||
|
[Test]
|
||||||
|
public void should_not_be_valid_if_from_is_empty()
|
||||||
|
{
|
||||||
|
_emailSettings.From = "";
|
||||||
|
|
||||||
|
_validator.Validate(_emailSettings).IsValid.Should().BeFalse();
|
||||||
|
}
|
||||||
|
|
||||||
|
[TestCase("sonarr")]
|
||||||
|
[TestCase("sonarr@sonarr")]
|
||||||
|
[TestCase("email.me")]
|
||||||
|
public void should_not_be_valid_if_from_is_invalid(string email)
|
||||||
|
{
|
||||||
|
_emailSettings.From = email;
|
||||||
|
|
||||||
|
_validator.Validate(_emailSettings).IsValid.Should().BeFalse();
|
||||||
|
}
|
||||||
|
|
||||||
|
[TestCase("sonarr")]
|
||||||
|
[TestCase("sonarr@sonarr")]
|
||||||
|
[TestCase("email.me")]
|
||||||
|
public void should_not_be_valid_if_to_is_invalid(string email)
|
||||||
|
{
|
||||||
|
_emailSettings.To = new string[] { email };
|
||||||
|
|
||||||
|
_validator.Validate(_emailSettings).IsValid.Should().BeFalse();
|
||||||
|
}
|
||||||
|
|
||||||
|
[TestCase("sonarr")]
|
||||||
|
[TestCase("sonarr@sonarr")]
|
||||||
|
[TestCase("email.me")]
|
||||||
|
public void should_not_be_valid_if_cc_is_invalid(string email)
|
||||||
|
{
|
||||||
|
_emailSettings.Cc = new string[] { email };
|
||||||
|
|
||||||
|
_validator.Validate(_emailSettings).IsValid.Should().BeFalse();
|
||||||
|
}
|
||||||
|
|
||||||
|
[TestCase("sonarr")]
|
||||||
|
[TestCase("sonarr@sonarr")]
|
||||||
|
[TestCase("email.me")]
|
||||||
|
public void should_not_be_valid_if_bcc_is_invalid(string email)
|
||||||
|
{
|
||||||
|
_emailSettings.Bcc = new string[] { email };
|
||||||
|
|
||||||
|
_validator.Validate(_emailSettings).IsValid.Should().BeFalse();
|
||||||
|
}
|
||||||
|
|
||||||
|
[Test]
|
||||||
|
public void should_not_be_valid_if_to_bcc_cc_are_all_empty()
|
||||||
|
{
|
||||||
|
_emailSettings.To = new string[] { };
|
||||||
|
_emailSettings.Cc = new string[] { };
|
||||||
|
_emailSettings.Bcc = new string[] { };
|
||||||
|
|
||||||
|
_validator.Validate(_emailSettings).IsValid.Should().BeFalse();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,50 @@
|
|||||||
|
using System.Data;
|
||||||
|
using System.Linq;
|
||||||
|
using FluentMigrator;
|
||||||
|
using Newtonsoft.Json.Linq;
|
||||||
|
using NzbDrone.Common.Serializer;
|
||||||
|
using NzbDrone.Core.Datastore.Migration.Framework;
|
||||||
|
|
||||||
|
namespace NzbDrone.Core.Datastore.Migration
|
||||||
|
{
|
||||||
|
[Migration(157)]
|
||||||
|
public class email_multiple_addresses : NzbDroneMigrationBase
|
||||||
|
{
|
||||||
|
protected override void MainDbUpgrade()
|
||||||
|
{
|
||||||
|
Execute.WithConnection(ChangeEmailAddressType);
|
||||||
|
}
|
||||||
|
|
||||||
|
private void ChangeEmailAddressType(IDbConnection conn, IDbTransaction tran)
|
||||||
|
{
|
||||||
|
|
||||||
|
using (var getEmailCmd = conn.CreateCommand())
|
||||||
|
{
|
||||||
|
getEmailCmd.Transaction = tran;
|
||||||
|
getEmailCmd.CommandText = "SELECT Id, Settings FROM Notifications WHERE Implementation = 'Email'";
|
||||||
|
|
||||||
|
using (var reader = getEmailCmd.ExecuteReader())
|
||||||
|
{
|
||||||
|
while (reader.Read())
|
||||||
|
{
|
||||||
|
var id = reader.GetInt32(0);
|
||||||
|
var settings = Json.Deserialize<JObject>(reader.GetString(1));
|
||||||
|
|
||||||
|
// "To" was changed from string to array
|
||||||
|
settings["to"] = new JArray(settings["to"].ToObject<string>().Split(',').Select(v => v.Trim()).ToArray());
|
||||||
|
|
||||||
|
using (var updateCmd = conn.CreateCommand())
|
||||||
|
{
|
||||||
|
updateCmd.Transaction = tran;
|
||||||
|
updateCmd.CommandText = "UPDATE Notifications SET Settings = ? WHERE Id = ?";
|
||||||
|
updateCmd.AddParameter(settings.ToJson());
|
||||||
|
updateCmd.AddParameter(id);
|
||||||
|
|
||||||
|
updateCmd.ExecuteNonQuery();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in new issue