mirror of
https://github.com/bitwarden/server.git
synced 2025-04-06 05:28:15 -05:00

* Use StrictEmail validation for changing email * Add trailing symbols to illegal chars in emails * Add semicolon as always illegal * Replace regex with MimeKit parsing, add unit test * Add more unit tests * Fix linting
52 lines
2.2 KiB
C#
52 lines
2.2 KiB
C#
using Bit.Core.Utilities;
|
|
using Xunit;
|
|
|
|
namespace Bit.Core.Test.Utilities
|
|
{
|
|
public class StrictEmailAttributeTests
|
|
{
|
|
[Theory]
|
|
[InlineData("hello@world.com")] // regular email address
|
|
[InlineData("hello@world.planet.com")] // subdomain
|
|
[InlineData("hello+1@world.com")] // alias
|
|
[InlineData("hello.there@world.com")] // period in local-part
|
|
public void IsValid_ReturnsTrueWhenValid(string email)
|
|
{
|
|
var sut = new StrictEmailAddressAttribute();
|
|
|
|
var actual = sut.IsValid(email);
|
|
|
|
Assert.True(actual);
|
|
}
|
|
|
|
[Theory]
|
|
[InlineData(null)] // null
|
|
[InlineData("hello@world.com\t")] // trailing tab char
|
|
[InlineData("\thello@world.com")] // leading tab char
|
|
[InlineData("hel\tlo@world.com")] // local-part tab char
|
|
[InlineData("hello@world.com\b")] // trailing backspace char
|
|
[InlineData("\" \"hello@world.com")] // leading spaces in quotes
|
|
[InlineData("hello@world.com\" \"")] // trailing spaces in quotes
|
|
[InlineData("hel\" \"lo@world.com")] // local-part spaces in quotes
|
|
[InlineData("hello there@world.com")] // unescaped unquoted spaces
|
|
[InlineData("Hello <hello@world.com>")] // friendly from
|
|
[InlineData("<hello@world.com>")] // wrapped angle brackets
|
|
[InlineData("hello(com)there@world.com")] // comment
|
|
[InlineData("hello@world.com.")] // trailing period
|
|
[InlineData(".hello@world.com")] // leading period
|
|
[InlineData("hello@world.com;")] // trailing semicolon
|
|
[InlineData(";hello@world.com")] // leading semicolon
|
|
[InlineData("hello@world.com; hello@world.com")] // semicolon separated list
|
|
[InlineData("hello@world.com, hello@world.com")] // comma separated list
|
|
|
|
public void IsValid_ReturnsFalseWhenInvalid(string email)
|
|
{
|
|
var sut = new StrictEmailAddressAttribute();
|
|
|
|
var actual = sut.IsValid(email);
|
|
|
|
Assert.False(actual);
|
|
}
|
|
}
|
|
}
|