| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308 |
- using System;
- using System.Collections.Generic;
- using Avalonia.Media;
- using Avalonia.Media.TextFormatting;
- using Avalonia.Media.TextFormatting.Unicode;
- using Avalonia.UnitTests;
- using Avalonia.Utilities;
- using Xunit;
- namespace Avalonia.Skia.UnitTests.Media.TextFormatting
- {
- public class TextFormatterTests
- {
- [Fact]
- public void Should_Format_TextRuns_With_Default_Style()
- {
- using (Start())
- {
- const string text = "0123456789";
- var defaultProperties =
- new GenericTextRunProperties(Typeface.Default, 12, foregroundBrush: Brushes.Black);
- var textSource = new SingleBufferTextSource(text, defaultProperties);
- var formatter = new TextFormatterImpl();
- var textLine = formatter.FormatLine(textSource, 0, double.PositiveInfinity,
- new GenericTextParagraphProperties(defaultProperties));
- Assert.Single(textLine.TextRuns);
- var textRun = textLine.TextRuns[0];
- Assert.Equal(defaultProperties.Typeface, textRun.Properties.Typeface);
- Assert.Equal(defaultProperties.ForegroundBrush, textRun.Properties.ForegroundBrush);
- Assert.Equal(text.Length, textRun.Text.Length);
- }
- }
- [Fact]
- public void Should_Format_TextRuns_With_Multiple_Buffers()
- {
- using (Start())
- {
- var defaultProperties =
- new GenericTextRunProperties(Typeface.Default, 12, foregroundBrush: Brushes.Black);
- var textSource = new MultiBufferTextSource(defaultProperties);
- var formatter = new TextFormatterImpl();
- var textLine = formatter.FormatLine(textSource, 0, double.PositiveInfinity,
- new GenericTextParagraphProperties(defaultProperties));
- Assert.Equal(5, textLine.TextRuns.Count);
- Assert.Equal(50, textLine.TextRange.Length);
- }
- }
- [Fact]
- public void Should_Format_TextRuns_With_TextRunStyles()
- {
- using (Start())
- {
- const string text = "0123456789";
- var defaultProperties =
- new GenericTextRunProperties(Typeface.Default, 12, foregroundBrush: Brushes.Black);
- var GenericTextRunPropertiesRuns = new[]
- {
- new ValueSpan<TextRunProperties>(0, 3, defaultProperties),
- new ValueSpan<TextRunProperties>(3, 3,
- new GenericTextRunProperties(Typeface.Default, 13, foregroundBrush: Brushes.Black)),
- new ValueSpan<TextRunProperties>(6, 3,
- new GenericTextRunProperties(Typeface.Default, 14, foregroundBrush: Brushes.Black)),
- new ValueSpan<TextRunProperties>(9, 1, defaultProperties)
- };
- var textSource = new FormattableTextSource(text, defaultProperties, GenericTextRunPropertiesRuns);
- var formatter = new TextFormatterImpl();
- var textLine = formatter.FormatLine(textSource, 0, double.PositiveInfinity,
- new GenericTextParagraphProperties(defaultProperties));
- Assert.Equal(text.Length, textLine.TextRange.Length);
- for (var i = 0; i < GenericTextRunPropertiesRuns.Length; i++)
- {
- var GenericTextRunPropertiesRun = GenericTextRunPropertiesRuns[i];
- var textRun = textLine.TextRuns[i];
- Assert.Equal(GenericTextRunPropertiesRun.Length, textRun.Text.Length);
- }
- }
- }
- [Theory]
- [InlineData("0123", 1)]
- [InlineData("\r\n", 1)]
- [InlineData("👍b", 2)]
- [InlineData("a👍b", 3)]
- [InlineData("a👍子b", 4)]
- public void Should_Produce_Unique_Runs(string text, int numberOfRuns)
- {
- using (Start())
- {
- var defaultProperties = new GenericTextRunProperties(Typeface.Default);
- var textSource = new SingleBufferTextSource(text, defaultProperties);
- var formatter = new TextFormatterImpl();
- var textLine =
- formatter.FormatLine(textSource, 0, double.PositiveInfinity,
- new GenericTextParagraphProperties(defaultProperties));
- Assert.Equal(numberOfRuns, textLine.TextRuns.Count);
- }
- }
- [Fact]
- public void Should_Split_Run_On_Script()
- {
- using (Start())
- {
- const string text = "ABCDالدولي";
- var defaultProperties = new GenericTextRunProperties(Typeface.Default);
- var textSource = new SingleBufferTextSource(text, defaultProperties);
- var formatter = new TextFormatterImpl();
- var textLine =
- formatter.FormatLine(textSource, 0, double.PositiveInfinity,
- new GenericTextParagraphProperties(defaultProperties));
- Assert.Equal(4, textLine.TextRuns[0].Text.Length);
- }
- }
- [InlineData("𐐷𐐷𐐷𐐷𐐷", 10, 1)]
- [InlineData("01234 56789 01234 56789", 6, 4)]
- [Theory]
- public void Should_Wrap_With_Overflow(string text, int expectedCharactersPerLine, int expectedNumberOfLines)
- {
- using (Start())
- {
- var defaultProperties = new GenericTextRunProperties(Typeface.Default);
- var textSource = new SingleBufferTextSource(text, defaultProperties);
- var formatter = new TextFormatterImpl();
- var numberOfLines = 0;
- var currentPosition = 0;
- while (currentPosition < text.Length)
- {
- var textLine =
- formatter.FormatLine(textSource, currentPosition, 1,
- new GenericTextParagraphProperties(defaultProperties, textWrapping: TextWrapping.WrapWithOverflow));
- if (text.Length - currentPosition > expectedCharactersPerLine)
- {
- Assert.Equal(expectedCharactersPerLine, textLine.TextRange.Length);
- }
- currentPosition += textLine.TextRange.Length;
- numberOfLines++;
- }
- Assert.Equal(expectedNumberOfLines, numberOfLines);
- }
- }
- [InlineData("Whether to turn off HTTPS. This option only applies if Individual, " +
- "IndividualB2C, SingleOrg, or MultiOrg aren't used for ‑‑auth."
- , "Noto Sans", 40)]
- [InlineData("01234 56789 01234 56789", "Noto Mono", 7)]
- [Theory]
- public void Should_Wrap(string text, string familyName, int numberOfCharactersPerLine)
- {
- using (Start())
- {
- var lineBreaker = new LineBreakEnumerator(text.AsMemory());
- var expected = new List<int>();
- while (lineBreaker.MoveNext())
- {
- expected.Add(lineBreaker.Current.PositionWrap - 1);
- }
- var typeface = new Typeface("resm:Avalonia.Skia.UnitTests.Assets?assembly=Avalonia.Skia.UnitTests#" +
- familyName);
- var defaultProperties = new GenericTextRunProperties(Typeface.Default);
- var textSource = new SingleBufferTextSource(text, defaultProperties);
- var formatter = new TextFormatterImpl();
- var glyph = typeface.GlyphTypeface.GetGlyph('a');
- var advance = typeface.GlyphTypeface.GetGlyphAdvance(glyph) *
- (12.0 / typeface.GlyphTypeface.DesignEmHeight);
- var paragraphWidth = advance * numberOfCharactersPerLine;
- var currentPosition = 0;
- while (currentPosition < text.Length)
- {
- var textLine =
- formatter.FormatLine(textSource, currentPosition, paragraphWidth,
- new GenericTextParagraphProperties(defaultProperties, textWrapping: TextWrapping.Wrap));
- Assert.True(expected.Contains(textLine.TextRange.End));
- var index = expected.IndexOf(textLine.TextRange.End);
- for (var i = 0; i <= index; i++)
- {
- expected.RemoveAt(0);
- }
- currentPosition += textLine.TextRange.Length;
- }
- }
- }
- [Fact]
- public void Should_Produce_Fixed_Height_Lines()
- {
- using (Start())
- {
- const string text = "012345";
- var defaultProperties = new GenericTextRunProperties(Typeface.Default);
- var textSource = new SingleBufferTextSource(text, defaultProperties);
- var formatter = new TextFormatterImpl();
- var textLine =
- formatter.FormatLine(textSource, 0, double.PositiveInfinity,
- new GenericTextParagraphProperties(defaultProperties, lineHeight: 50));
- Assert.Equal(50, textLine.LineMetrics.Size.Height);
- }
- }
- [Fact]
- public void Should_Not_Produce_TextLine_Wider_Than_ParagraphWidth()
- {
- using (Start())
- {
- const string text =
- "Multiline TextBlock with TextWrapping.\r\rLorem ipsum dolor sit amet, consectetur adipiscing elit. " +
- "Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. " +
- "Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. " +
- "Vivamus pretium ornare est.";
- var defaultProperties = new GenericTextRunProperties(Typeface.Default);
- var paragraphProperties = new GenericTextParagraphProperties(defaultProperties, textWrapping: TextWrapping.Wrap);
- var textSource = new SingleBufferTextSource(text, defaultProperties);
- var formatter = new TextFormatterImpl();
- var textSourceIndex = 0;
- while (textSourceIndex < text.Length)
- {
- var textLine =
- formatter.FormatLine(textSource, textSourceIndex, 200, paragraphProperties);
- Assert.True(textLine.LineMetrics.Size.Width <= 200);
- textSourceIndex += textLine.TextRange.Length;
- }
- }
- }
- public static IDisposable Start()
- {
- var disposable = UnitTestApplication.Start(TestServices.MockPlatformRenderInterface
- .With(renderInterface: new PlatformRenderInterface(null),
- textShaperImpl: new TextShaperImpl()));
- AvaloniaLocator.CurrentMutable
- .Bind<FontManager>().ToConstant(new FontManager(new CustomFontManagerImpl()));
- return disposable;
- }
- }
- }
|