[editor] names validation fix

This commit is contained in:
Arsentiy Milchakov 2018-01-09 15:45:21 +03:00 committed by Ilya Zverev
parent acfbf36c39
commit 6c899af9e1
2 changed files with 2 additions and 2 deletions

View file

@ -763,7 +763,7 @@ bool EditableMapObject::ValidateName(string const & name)
return true;
if (strings::IsASCIIString(name))
return regex_match(name, regex(R"(^[ A-Za-z0-9.,?!@#$%()\-:;"'`]+$)"));
return regex_match(name, regex(R"(^[ A-Za-z0-9.,?!@#$%&()\-:;"'`]+$)"));
std::wstring_convert<std::codecvt_utf8<char32_t>, char32_t> converter;

View file

@ -190,7 +190,7 @@ UNIT_TEST(EditableMapObject_ValidateEmail)
UNIT_TEST(EditableMapObject_ValidateName)
{
vector<string> correctNames = {"abc", "абв", "ᆺᆯㅕ", "꫞ꪺꫀꪸ", "a b?c", "a!b.c", "a(b)c", "a,b.c",
"a$bc", "a%bc", "a#bc", "a№bc"};
"a$bc", "a%bc", "a#bc", "a№bc", "c&a"};
vector<string> incorrectNames = {"a^bc", "a~bc", "a§bc", "a>bc", "a<bc", "a{bc", "a[bc", "*",
"a*bc", "a=bc", "a_bc", "a±bc", "a\nbc", "a\tbc", "a\rbc",
"a\vbc", "a\fbc", "a|bc", "N√", "Hello World!\U0001F600",