Accept exponential numbers without -/+ sign. (#270)
* add exponential without sign support * Add unit tests * fix formatting * remove extra spaces * modify unit tests
This commit is contained in:
parent
9f01c8168b
commit
750130c2bc
@ -40,7 +40,7 @@ static const wstring c_uIntSuffixes = L"[uU]?[lL]{0,2}";
|
|||||||
static const array<wregex, 1> standardModePatterns = { wregex(c_wspc + c_signedDecFloat + c_wspc) };
|
static const array<wregex, 1> standardModePatterns = { wregex(c_wspc + c_signedDecFloat + c_wspc) };
|
||||||
static const array<wregex, 2> scientificModePatterns = {
|
static const array<wregex, 2> scientificModePatterns = {
|
||||||
wregex(L"(" + c_wspc + L"[-+]?)|(" + c_wspcLParenSigned + L")" + c_signedDecFloat + c_wspcRParens),
|
wregex(L"(" + c_wspc + L"[-+]?)|(" + c_wspcLParenSigned + L")" + c_signedDecFloat + c_wspcRParens),
|
||||||
wregex(L"(" + c_wspc + L"[-+]?)|(" + c_wspcLParenSigned + L")" + c_signedDecFloat + L"[e]([+]|[-])+\\d+" + c_wspcRParens)
|
wregex(L"(" + c_wspc + L"[-+]?)|(" + c_wspcLParenSigned + L")" + c_signedDecFloat + L"e[+-]?\\d+" + c_wspcRParens)
|
||||||
};
|
};
|
||||||
static const array<array<wregex, 5>, 4> programmerModePatterns = {
|
static const array<array<wregex, 5>, 4> programmerModePatterns = {
|
||||||
{ // Hex numbers like 5F, 4A0C, 0xa9, 0xFFull, 47CDh
|
{ // Hex numbers like 5F, 4A0C, 0xa9, 0xFFull, 47CDh
|
||||||
|
@ -881,14 +881,25 @@ void StandardCalculatorViewModel::OnPaste(String ^ pastedString, ViewMode mode)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Handle exponent and exponent sign (...e+... or ...e-...)
|
// Handle exponent and exponent sign (...e+... or ...e-... or ...e...)
|
||||||
if (mappedNumOp == NumbersAndOperatorsEnum::Exp)
|
if (mappedNumOp == NumbersAndOperatorsEnum::Exp)
|
||||||
{
|
{
|
||||||
++it;
|
//Check the following item
|
||||||
if (!(MapCharacterToButtonId(*it, canSendNegate) == NumbersAndOperatorsEnum::Add))
|
switch (MapCharacterToButtonId(*(it + 1), canSendNegate))
|
||||||
|
{
|
||||||
|
case NumbersAndOperatorsEnum::Subtract:
|
||||||
{
|
{
|
||||||
Command cmdNegate = ConvertToOperatorsEnum(NumbersAndOperatorsEnum::Negate);
|
Command cmdNegate = ConvertToOperatorsEnum(NumbersAndOperatorsEnum::Negate);
|
||||||
m_standardCalculatorManager.SendCommand(cmdNegate);
|
m_standardCalculatorManager.SendCommand(cmdNegate);
|
||||||
|
++it;
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
case NumbersAndOperatorsEnum::Add:
|
||||||
|
{
|
||||||
|
//Nothing to do, skip to the next item
|
||||||
|
++it;
|
||||||
|
}
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -187,8 +187,13 @@ namespace CalculatorUnitTests
|
|||||||
m_CopyPasteManager.ExpressionRegExMatch(vector<wstring>{ L"123", L"1e23" }, ViewMode::Standard, CategoryGroupType::Calculator, -1, -1));
|
m_CopyPasteManager.ExpressionRegExMatch(vector<wstring>{ L"123", L"1e23" }, ViewMode::Standard, CategoryGroupType::Calculator, -1, -1));
|
||||||
|
|
||||||
VERIFY_IS_TRUE(
|
VERIFY_IS_TRUE(
|
||||||
m_CopyPasteManager.ExpressionRegExMatch(vector<wstring>{ L"1.23e+456" }, ViewMode::Scientific, CategoryGroupType::Calculator, -1, -1),
|
m_CopyPasteManager.ExpressionRegExMatch(
|
||||||
L"Verify operand only needs to match one pattern.");
|
vector<wstring>{ L"1.23e+456", L"1.23e456", L".23e+456", L"123e-456", L"12e2", L"12e+2", L"12e-2", L"-12e2", L"-12e+2", L"-12e-2" },
|
||||||
|
ViewMode::Scientific,
|
||||||
|
CategoryGroupType::Calculator,
|
||||||
|
-1,
|
||||||
|
-1),
|
||||||
|
L"Verify exponents are accepted in scientific mode.");
|
||||||
|
|
||||||
VERIFY_IS_FALSE(
|
VERIFY_IS_FALSE(
|
||||||
m_CopyPasteManager.ExpressionRegExMatch(
|
m_CopyPasteManager.ExpressionRegExMatch(
|
||||||
@ -647,9 +652,9 @@ namespace CalculatorUnitTests
|
|||||||
"+(41213)",
|
"+(41213)",
|
||||||
"-(432+3232)",
|
"-(432+3232)",
|
||||||
"-(+(-3213)+(-2312))",
|
"-(+(-3213)+(-2312))",
|
||||||
"-(-(432+3232))" };
|
"-(-(432+3232))",
|
||||||
String ^ negativeInput[] = { L"1.2e23" /*unsigned exponent*/,
|
L"1.2e23"/*unsigned exponent*/ };
|
||||||
L"abcdef",
|
String ^ negativeInput[] = { L"abcdef",
|
||||||
L"xyz",
|
L"xyz",
|
||||||
L"ABab",
|
L"ABab",
|
||||||
L"e+234",
|
L"e+234",
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
// Copyright (c) Microsoft Corporation. All rights reserved.
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
// Licensed under the MIT License.
|
// Licensed under the MIT License.
|
||||||
|
|
||||||
#include "pch.h"
|
#include "pch.h"
|
||||||
@ -419,6 +419,12 @@ namespace CalculatorUnitTests
|
|||||||
m_viewModel->OnPaste("1.23e+10", ViewMode::Scientific);
|
m_viewModel->OnPaste("1.23e+10", ViewMode::Scientific);
|
||||||
ValidateViewModelValueAndExpression("1" + m_decimalSeparator + "23e+10", "");
|
ValidateViewModelValueAndExpression("1" + m_decimalSeparator + "23e+10", "");
|
||||||
|
|
||||||
|
m_viewModel->OnPaste("1.23e10", ViewMode::Scientific);
|
||||||
|
ValidateViewModelValueAndExpression("1" + m_decimalSeparator + "23e+10", "");
|
||||||
|
|
||||||
|
m_viewModel->OnPaste("135e10", ViewMode::Scientific);
|
||||||
|
ValidateViewModelValueAndExpression("135" + m_decimalSeparator + "e+10", "");
|
||||||
|
|
||||||
//// Negative exponent
|
//// Negative exponent
|
||||||
m_viewModel->OnPaste("1.23e-10", ViewMode::Scientific);
|
m_viewModel->OnPaste("1.23e-10", ViewMode::Scientific);
|
||||||
ValidateViewModelValueAndExpression("1" + m_decimalSeparator + "23e-10", "");
|
ValidateViewModelValueAndExpression("1" + m_decimalSeparator + "23e-10", "");
|
||||||
@ -426,6 +432,9 @@ namespace CalculatorUnitTests
|
|||||||
//// Uppercase E (for exponent)
|
//// Uppercase E (for exponent)
|
||||||
m_viewModel->OnPaste("1.23E-10", ViewMode::Scientific);
|
m_viewModel->OnPaste("1.23E-10", ViewMode::Scientific);
|
||||||
ValidateViewModelValueAndExpression("1" + m_decimalSeparator + "23e-10", "");
|
ValidateViewModelValueAndExpression("1" + m_decimalSeparator + "23e-10", "");
|
||||||
|
|
||||||
|
m_viewModel->OnPaste("135E10", ViewMode::Scientific);
|
||||||
|
ValidateViewModelValueAndExpression("135" + m_decimalSeparator + "e+10", "");
|
||||||
}
|
}
|
||||||
|
|
||||||
// Verify Calculator CalculationResultAutomationName is set correctly
|
// Verify Calculator CalculationResultAutomationName is set correctly
|
||||||
|
Loading…
Reference in New Issue
Block a user