2020-08-06 05:06:55 +08:00
|
|
|
|
// 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 NUnit.Framework;
|
2020-07-21 02:22:03 +08:00
|
|
|
|
using PowerLauncher.ViewModel;
|
2020-07-03 09:29:39 +08:00
|
|
|
|
|
|
|
|
|
namespace Wox.Test
|
|
|
|
|
{
|
|
|
|
|
[TestFixture]
|
2020-08-11 06:49:36 +08:00
|
|
|
|
internal class MainViewModelTest
|
2020-07-03 09:29:39 +08:00
|
|
|
|
{
|
|
|
|
|
[Test]
|
|
|
|
|
public void MainViewModel_GetAutoCompleteTextReturnsEmptyString_WhenInputIsNull()
|
|
|
|
|
{
|
|
|
|
|
// Arrange
|
|
|
|
|
int index = 0;
|
|
|
|
|
string input = null;
|
2020-08-11 06:49:36 +08:00
|
|
|
|
string query = "M";
|
2020-07-03 09:29:39 +08:00
|
|
|
|
|
|
|
|
|
// Act
|
|
|
|
|
string autoCompleteText = MainViewModel.GetAutoCompleteText(index, input, query);
|
2020-07-23 04:27:17 +08:00
|
|
|
|
|
2020-07-03 09:29:39 +08:00
|
|
|
|
// Assert
|
|
|
|
|
Assert.AreEqual(autoCompleteText, string.Empty);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
|
public void MainViewModel_GetAutoCompleteTextReturnsEmptyString_WhenInputIsEmpty()
|
|
|
|
|
{
|
|
|
|
|
// Arrange
|
|
|
|
|
int index = 0;
|
|
|
|
|
string input = string.Empty;
|
2020-08-11 06:49:36 +08:00
|
|
|
|
string query = "M";
|
2020-07-03 09:29:39 +08:00
|
|
|
|
|
|
|
|
|
// Act
|
|
|
|
|
string autoCompleteText = MainViewModel.GetAutoCompleteText(index, input, query);
|
|
|
|
|
|
|
|
|
|
// Assert
|
|
|
|
|
Assert.AreEqual(autoCompleteText, string.Empty);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
|
public void MainViewModel_GetAutoCompleteTextReturnsEmptyString_WhenQueryIsNull()
|
|
|
|
|
{
|
|
|
|
|
// Arrange
|
|
|
|
|
int index = 0;
|
|
|
|
|
string input = "M";
|
2020-08-11 06:49:36 +08:00
|
|
|
|
string query = null;
|
2020-07-03 09:29:39 +08:00
|
|
|
|
|
|
|
|
|
// Act
|
|
|
|
|
string autoCompleteText = MainViewModel.GetAutoCompleteText(index, input, query);
|
|
|
|
|
|
|
|
|
|
// Assert
|
|
|
|
|
Assert.AreEqual(autoCompleteText, string.Empty);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
|
public void MainViewModel_GetAutoCompleteTextReturnsEmptyString_WhenQueryIsEmpty()
|
|
|
|
|
{
|
|
|
|
|
// Arrange
|
|
|
|
|
int index = 0;
|
|
|
|
|
string input = "M";
|
2020-08-11 06:49:36 +08:00
|
|
|
|
string query = string.Empty;
|
2020-07-03 09:29:39 +08:00
|
|
|
|
|
|
|
|
|
// Act
|
|
|
|
|
string autoCompleteText = MainViewModel.GetAutoCompleteText(index, input, query);
|
|
|
|
|
|
|
|
|
|
// Assert
|
|
|
|
|
Assert.AreEqual(autoCompleteText, string.Empty);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
|
public void MainViewModel_GetAutoCompleteTextReturnsEmptyString_WhenIndexIsNonZero()
|
|
|
|
|
{
|
|
|
|
|
// Arrange
|
|
|
|
|
int index = 2;
|
|
|
|
|
string input = "Visual";
|
2020-08-11 06:49:36 +08:00
|
|
|
|
string query = "Vis";
|
2020-07-03 09:29:39 +08:00
|
|
|
|
|
|
|
|
|
// Act
|
|
|
|
|
string autoCompleteText = MainViewModel.GetAutoCompleteText(index, input, query);
|
|
|
|
|
|
|
|
|
|
// Assert
|
|
|
|
|
Assert.AreEqual(autoCompleteText, string.Empty);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
|
public void MainViewModel_GetAutoCompleteTextReturnsMatchingString_WhenIndexIsZeroAndMatch()
|
|
|
|
|
{
|
|
|
|
|
// Arrange
|
|
|
|
|
int index = 0;
|
|
|
|
|
string input = "VISUAL";
|
2020-08-11 06:49:36 +08:00
|
|
|
|
string query = "VIs";
|
|
|
|
|
string expectedAutoCompleteText = "VIsUAL";
|
2020-07-03 09:29:39 +08:00
|
|
|
|
|
|
|
|
|
// Act
|
|
|
|
|
string autoCompleteText = MainViewModel.GetAutoCompleteText(index, input, query);
|
|
|
|
|
|
|
|
|
|
// Assert
|
2020-08-11 06:49:36 +08:00
|
|
|
|
Assert.AreEqual(autoCompleteText, expectedAutoCompleteText);
|
2020-07-03 09:29:39 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
|
public void MainViewModel_GetAutoCompleteTextReturnsEmptyString_WhenIndexIsZeroAndNoMatch()
|
|
|
|
|
{
|
|
|
|
|
// Arrange
|
|
|
|
|
int index = 0;
|
|
|
|
|
string input = "VISUAL";
|
2020-08-11 06:49:36 +08:00
|
|
|
|
string query = "Vim";
|
|
|
|
|
string expectedAutoCompleteText = string.Empty;
|
2020-07-03 09:29:39 +08:00
|
|
|
|
|
|
|
|
|
// Act
|
|
|
|
|
string autoCompleteText = MainViewModel.GetAutoCompleteText(index, input, query);
|
|
|
|
|
|
|
|
|
|
// Assert
|
2020-08-11 06:49:36 +08:00
|
|
|
|
Assert.AreEqual(autoCompleteText, expectedAutoCompleteText);
|
2020-07-03 09:29:39 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
|
public void MainViewModel_GetSearchTextReturnsEmptyString_WhenInputIsNull()
|
|
|
|
|
{
|
|
|
|
|
// Arrange
|
|
|
|
|
int index = 0;
|
|
|
|
|
string input = null;
|
2020-08-11 06:49:36 +08:00
|
|
|
|
string query = "M";
|
2020-07-03 09:29:39 +08:00
|
|
|
|
|
|
|
|
|
// Act
|
|
|
|
|
string autoCompleteText = MainViewModel.GetSearchText(index, input, query);
|
|
|
|
|
|
|
|
|
|
// Assert
|
|
|
|
|
Assert.AreEqual(autoCompleteText, string.Empty);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
|
public void MainViewModel_GetSearchTextReturnsEmptyString_WhenInputIsEmpty()
|
|
|
|
|
{
|
|
|
|
|
// Arrange
|
|
|
|
|
int index = 0;
|
|
|
|
|
string input = string.Empty;
|
2020-08-11 06:49:36 +08:00
|
|
|
|
string query = "M";
|
2020-07-03 09:29:39 +08:00
|
|
|
|
|
|
|
|
|
// Act
|
|
|
|
|
string autoCompleteText = MainViewModel.GetSearchText(index, input, query);
|
|
|
|
|
|
|
|
|
|
// Assert
|
|
|
|
|
Assert.AreEqual(autoCompleteText, string.Empty);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
|
public void MainViewModel_GetSearchTextReturnsInputString_WhenQueryIsNull()
|
|
|
|
|
{
|
|
|
|
|
// Arrange
|
|
|
|
|
int index = 0;
|
|
|
|
|
string input = "Visual";
|
2020-08-11 06:49:36 +08:00
|
|
|
|
string query = null;
|
2020-07-03 09:29:39 +08:00
|
|
|
|
|
|
|
|
|
// Act
|
|
|
|
|
string autoCompleteText = MainViewModel.GetSearchText(index, input, query);
|
|
|
|
|
|
|
|
|
|
// Assert
|
|
|
|
|
Assert.AreEqual(autoCompleteText, input);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
|
public void MainViewModel_GetSearchTextReturnsInputString_WhenQueryIsEmpty()
|
|
|
|
|
{
|
|
|
|
|
// Arrange
|
|
|
|
|
int index = 0;
|
|
|
|
|
string input = "Visual";
|
2020-08-11 06:49:36 +08:00
|
|
|
|
string query = string.Empty;
|
2020-07-03 09:29:39 +08:00
|
|
|
|
|
|
|
|
|
// Act
|
|
|
|
|
string autoCompleteText = MainViewModel.GetSearchText(index, input, query);
|
|
|
|
|
|
|
|
|
|
// Assert
|
|
|
|
|
Assert.AreEqual(autoCompleteText, input);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
|
public void MainViewModel_GetSearchTextReturnsMatchingStringWithCase_WhenIndexIsZeroAndMatch()
|
|
|
|
|
{
|
|
|
|
|
// Arrange
|
|
|
|
|
int index = 0;
|
|
|
|
|
string input = "VISUAL";
|
2020-08-11 06:49:36 +08:00
|
|
|
|
string query = "VIs";
|
|
|
|
|
string expectedAutoCompleteText = "VIsUAL";
|
2020-07-03 09:29:39 +08:00
|
|
|
|
|
|
|
|
|
// Act
|
|
|
|
|
string autoCompleteText = MainViewModel.GetSearchText(index, input, query);
|
|
|
|
|
|
|
|
|
|
// Assert
|
2020-08-11 06:49:36 +08:00
|
|
|
|
Assert.AreEqual(autoCompleteText, expectedAutoCompleteText);
|
2020-07-03 09:29:39 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
|
public void MainViewModel_GetSearchTextReturnsInput_WhenIndexIsZeroAndNoMatch()
|
|
|
|
|
{
|
|
|
|
|
// Arrange
|
|
|
|
|
int index = 0;
|
|
|
|
|
string input = "VISUAL";
|
2020-08-11 06:49:36 +08:00
|
|
|
|
string query = "Vim";
|
2020-07-03 09:29:39 +08:00
|
|
|
|
|
|
|
|
|
// Act
|
|
|
|
|
string autoCompleteText = MainViewModel.GetSearchText(index, input, query);
|
|
|
|
|
|
|
|
|
|
// Assert
|
|
|
|
|
Assert.AreEqual(autoCompleteText, input);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|