Files
Terminal.Gui/UnitTests/Configuration/RuneJsonConverterTests.cs
Tig a6b05b83cd Fixes #2632. Updates RuneJsonConverter to deal with more formats (#2640)
* Remove NStack and replace ustring to string.

* Add unit test and improving some code.

* Adjust code and fix all unit tests errors.

* Add XML Document and move the Rune folder into the Text folder.

* Improve unit tests with byte array on DecodeRune and DecodeLastRune.

* Fix unit test.

* 😂Code review

* Reduce unit tests code.

* Change StringExtensions.Make to StringExtensions.ToString and added some more unit tests.

* Fix merge errors.

* Remove GetTextWidth and calls replaced with StringExtensions.GetColumns.

* Hack to use UseSystemConsole passed in the command line arguments.

* Revert "Hack to use UseSystemConsole passed in the command line arguments."

This reverts commit b74d11c786.

* Remove Application.UseSystemConsole from the config file.

* Fix errors related by removing UseSystemConsole from the config file.

* Fixes #2633. DecodeEscSeq throw an exception if cki is null.

* Fix an exception if SelectedItem is -1.

* Set SelectedItem to 0 and remove unnecessary ToString.

* Updated RuneJsonConverter to deal with more formats

* nonBMP apple

* Adjusted unit tests

* Added ConsoleDriver.IsRuneSupported API

* Removed debug code

* Disabled non-BMP in CursesDriver

---------

Co-authored-by: BDisp <bd.bdisp@gmail.com>
2023-05-21 12:18:48 +02:00

66 lines
1.9 KiB
C#

using System.Text;
using Xunit;
using System.Text.Json;
namespace Terminal.Gui.ConfigurationTests;
public class RunJsonConverterTests {
[Theory]
[InlineData ("a", "a")]
[InlineData ("☑", "☑")]
[InlineData ("\\u2611", "☑")]
[InlineData ("U+2611", "☑")]
[InlineData ("🍎", "🍎")]
[InlineData ("U+1F34E", "🍎")]
[InlineData ("\\U0001F34E", "🍎")]
[InlineData ("\\ud83d \\udc69", "👩")]
[InlineData ("\\ud83d\\udc69", "👩")]
[InlineData ("U+d83d U+dc69", "👩")]
[InlineData ("U+1F469", "👩")]
[InlineData ("\\U0001F469", "👩")]
[InlineData ("\\u0065\\u0301", "é")]
public void RoundTripConversion_Positive (string rune, string expected)
{
// Arrange
// Act
var json = JsonSerializer.Serialize (rune, ConfigurationManager._serializerOptions);
var deserialized = JsonSerializer.Deserialize<Rune> (json, ConfigurationManager._serializerOptions);
// Assert
Assert.Equal (expected, deserialized.ToString ());
}
[Theory]
[InlineData ("aa")]
[InlineData ("☑☑")]
[InlineData ("\\x2611")]
[InlineData ("Z+2611")]
[InlineData ("🍎🍎")]
[InlineData ("U+FFF1F34E")]
[InlineData ("\\UFFF1F34E")]
[InlineData ("\\ud83d")] // not printable
[InlineData ("\\ud83d \\u1c69")] // bad surrogate pair
[InlineData ("\\ud83ddc69")]
// Emoji - Family Unit:
// Woman (U+1F469, 👩)
// Zero Width Joiner (U+200D)
// Woman (U+1F469, 👩)
// Zero Width Joiner (U+200D)
// Girl (U+1F467, 👧)
// Zero Width Joiner (U+200D)
// Girl (U+1F467, 👧)
[InlineData ("U+1F469 U+200D U+1F469 U+200D U+1F467 U+200D U+1F467")]
[InlineData ("\\U0001F469\\u200D\\U0001F469\\u200D\\U0001F467\\u200D\\U0001F467")]
public void RoundTripConversion_Negative (string rune)
{
// Act
var json = JsonSerializer.Serialize (rune, ConfigurationManager._serializerOptions);
// Assert
Assert.Throws<JsonException> (() => JsonSerializer.Deserialize<Rune> (json, ConfigurationManager._serializerOptions));
}
}