forked from organicmaps/organicmaps
[editor] names validation fix
This commit is contained in:
parent
acfbf36c39
commit
6c899af9e1
2 changed files with 2 additions and 2 deletions
|
@ -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;
|
||||
|
||||
|
|
|
@ -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",
|
||||
|
|
Loading…
Add table
Reference in a new issue