mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-03 17:56:44 +02:00
<!-- Enter a brief description/summary of your PR here. What does it fix/what does it change/how was it tested (even manually, if necessary)? --> ## Summary of the Pull Request 1. Remove some AI generated nonsense case 2. Add ISettingsInterface for those ext for testing purpose. 3. Add query test. <!-- Please review the items on the PR checklist before submitting--> ## PR Checklist - [x] Closes: #40897 - [x] **Communication:** I've discussed this with core contributors already. If the work hasn't been agreed, this work might be rejected - [x] **Tests:** Added/updated and all pass - [ ] **Localization:** All end-user-facing strings can be localized - [ ] **Dev docs:** Added/updated - [ ] **New binaries:** Added on the required places - [ ] [JSON for signing](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ESRPSigning_core.json) for new binaries - [ ] [WXS for installer](https://github.com/microsoft/PowerToys/blob/main/installer/PowerToysSetup/Product.wxs) for new binaries and localization folder - [ ] [YML for CI pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ci/templates/build-powertoys-steps.yml) for new test projects - [ ] [YML for signed pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/release.yml) - [ ] **Documentation updated:** If checked, please file a pull request on [our docs repo](https://github.com/MicrosoftDocs/windows-uwp/tree/docs/hub/powertoys) and link it here: #xxx <!-- Provide a more detailed description of the PR, other things fixed, or any additional comments/features here --> ## Detailed Description of the Pull Request / Additional comments <!-- Describe how you validated the behavior. Add automated tests wherever possible, but list manual validation steps taken as well --> ## Validation Steps Performed --------- Co-authored-by: Yu Leng <yuleng@microsoft.com>
87 lines
2.8 KiB
C#
87 lines
2.8 KiB
C#
// Copyright (c) Microsoft Corporation
|
|
// The Microsoft Corporation licenses this file to you under the MIT license.
|
|
// See the LICENSE file in the project root for more information.
|
|
|
|
using System.Linq;
|
|
using Microsoft.CmdPal.Ext.Calc.Helper;
|
|
using Microsoft.CmdPal.Ext.Calc.Pages;
|
|
using Microsoft.CmdPal.Ext.UnitTestBase;
|
|
using Microsoft.CommandPalette.Extensions.Toolkit;
|
|
using Microsoft.VisualStudio.TestTools.UnitTesting;
|
|
|
|
namespace Microsoft.CmdPal.Ext.Calc.UnitTests;
|
|
|
|
[TestClass]
|
|
public class QueryTests : CommandPaletteUnitTestBase
|
|
{
|
|
[DataTestMethod]
|
|
[DataRow("2+2", "4")]
|
|
[DataRow("5*3", "15")]
|
|
[DataRow("10/2", "5")]
|
|
[DataRow("sqrt(16)", "4")]
|
|
[DataRow("2^3", "8")]
|
|
public void TopLevelPageQueryTest(string input, string expectedResult)
|
|
{
|
|
var settings = new Settings();
|
|
var page = new CalculatorListPage(settings);
|
|
|
|
// Simulate query execution
|
|
page.UpdateSearchText(string.Empty, input);
|
|
var result = page.GetItems();
|
|
|
|
Assert.IsTrue(result.Length == 1, "Valid input should always return result");
|
|
|
|
var firstResult = result.FirstOrDefault();
|
|
|
|
Assert.IsNotNull(result);
|
|
Assert.IsTrue(
|
|
firstResult.Title.Contains(expectedResult),
|
|
$"Expected result to contain '{expectedResult}' but got '{firstResult.Title}'");
|
|
}
|
|
|
|
[TestMethod]
|
|
public void EmptyQueryTest()
|
|
{
|
|
var settings = new Settings();
|
|
var page = new CalculatorListPage(settings);
|
|
page.UpdateSearchText("abc", string.Empty);
|
|
var results = page.GetItems();
|
|
Assert.IsNotNull(results);
|
|
|
|
var firstItem = results.FirstOrDefault();
|
|
Assert.AreEqual("Type an equation...", firstItem.Title);
|
|
}
|
|
|
|
[TestMethod]
|
|
public void InvalidExpressionTest()
|
|
{
|
|
var settings = new Settings();
|
|
|
|
var page = new CalculatorListPage(settings);
|
|
|
|
// Simulate query execution
|
|
page.UpdateSearchText(string.Empty, "invalid expression");
|
|
var result = page.GetItems().FirstOrDefault();
|
|
|
|
Assert.AreEqual("Type an equation...", result.Title);
|
|
}
|
|
|
|
[DataTestMethod]
|
|
[DataRow("sin(60)", "-0.30481", CalculateEngine.TrigMode.Radians)]
|
|
[DataRow("sin(60)", "0.866025", CalculateEngine.TrigMode.Degrees)]
|
|
[DataRow("sin(60)", "0.809016", CalculateEngine.TrigMode.Gradians)]
|
|
public void TrigModeSettingsTest(string input, string expected, CalculateEngine.TrigMode trigMode)
|
|
{
|
|
var settings = new Settings(trigUnit: trigMode);
|
|
|
|
var page = new CalculatorListPage(settings);
|
|
|
|
page.UpdateSearchText(string.Empty, input);
|
|
var result = page.GetItems().FirstOrDefault();
|
|
|
|
Assert.IsNotNull(result);
|
|
|
|
Assert.IsTrue(result.Title.Contains(expected, System.StringComparison.Ordinal), $"Calc trigMode convert result isn't correct. Current result: {result.Title}");
|
|
}
|
|
}
|