csharpc-sharpdotnetxamlavaloniauicross-platformcross-platform-xamlavaloniaguimulti-platformuser-interfacedotnetcore
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
138 lines
4.2 KiB
138 lines
4.2 KiB
using System;
|
|
using System.Linq;
|
|
using Avalonia.Media;
|
|
using Avalonia.Media.Fonts;
|
|
using Xunit;
|
|
|
|
namespace Avalonia.Base.UnitTests.Media
|
|
{
|
|
public class FontFamilyTests
|
|
{
|
|
[Fact]
|
|
public void Should_Implicitly_Convert_String_To_FontFamily()
|
|
{
|
|
FontFamily fontFamily = "Arial";
|
|
|
|
Assert.Equal(new FontFamily("Arial"), fontFamily);
|
|
}
|
|
|
|
[InlineData("Font A")]
|
|
[InlineData("Font A, Font B")]
|
|
[InlineData("resm: Avalonia.Visuals.UnitTests#MyFont")]
|
|
[InlineData("avares://Avalonia.Visuals.UnitTests/Assets/Fonts#MyFont")]
|
|
[Theory]
|
|
public void Should_Have_Equal_Hash(string s)
|
|
{
|
|
var fontFamily = new FontFamily(s);
|
|
|
|
Assert.Equal(new FontFamily(s).GetHashCode(), fontFamily.GetHashCode());
|
|
}
|
|
|
|
[InlineData("Font A, Font B", "Font B, Font A")]
|
|
[InlineData("Font A, Font B", "Font A, Font C")]
|
|
[Theory]
|
|
public void Should_Not_Have_Equal_Hash(string a, string b)
|
|
{
|
|
var fontFamily = new FontFamily(b);
|
|
|
|
Assert.NotEqual(new FontFamily(a).GetHashCode(), fontFamily.GetHashCode());
|
|
}
|
|
|
|
[InlineData("Font A")]
|
|
[InlineData("Font A, Font B")]
|
|
[InlineData("resm: Avalonia.Visuals.UnitTests#MyFont")]
|
|
[InlineData("avares://Avalonia.Visuals.UnitTests/Assets/Fonts#MyFont")]
|
|
[Theory]
|
|
public void Should_Be_Equal(string s)
|
|
{
|
|
var fontFamily = new FontFamily(s);
|
|
|
|
Assert.Equal(new FontFamily(s), fontFamily);
|
|
}
|
|
|
|
[InlineData("Font A, Font B", "Font B, Font A")]
|
|
[InlineData("Font A, Font B", "Font A, Font C")]
|
|
[Theory]
|
|
public void Should_Not_Be_Equal(string a, string b)
|
|
{
|
|
var fontFamily = new FontFamily(b);
|
|
|
|
Assert.NotEqual(new FontFamily(a), fontFamily);
|
|
}
|
|
|
|
[Fact]
|
|
public void Should_Parse_FontFamily_With_SystemFont_Name()
|
|
{
|
|
var fontFamily = FontFamily.Parse("Courier New");
|
|
|
|
Assert.Equal("Courier New", fontFamily.Name);
|
|
}
|
|
|
|
[Fact]
|
|
public void Should_Parse_FontFamily_With_Fallbacks()
|
|
{
|
|
var fontFamily = FontFamily.Parse("Courier New, Times New Roman");
|
|
|
|
Assert.Equal("Courier New", fontFamily.Name);
|
|
|
|
Assert.Equal(2, fontFamily.FamilyNames.Count());
|
|
|
|
Assert.Equal("Times New Roman", fontFamily.FamilyNames.Last());
|
|
}
|
|
|
|
[Fact]
|
|
public void Should_Parse_FontFamily_With_Resource_Folder()
|
|
{
|
|
var source = new Uri("resm:Avalonia.Visuals.UnitTests#MyFont");
|
|
|
|
var key = new FontFamilyKey(source);
|
|
|
|
var fontFamily = FontFamily.Parse(source.OriginalString);
|
|
|
|
Assert.Equal("MyFont", fontFamily.Name);
|
|
|
|
Assert.Equal(key, fontFamily.Key);
|
|
}
|
|
|
|
[Fact]
|
|
public void Should_Parse_FontFamily_With_Resource_Filename()
|
|
{
|
|
var source = new Uri("resm:Avalonia.Visuals.UnitTests.MyFont.ttf#MyFont");
|
|
|
|
var key = new FontFamilyKey(source);
|
|
|
|
var fontFamily = FontFamily.Parse(source.OriginalString);
|
|
|
|
Assert.Equal("MyFont", fontFamily.Name);
|
|
|
|
Assert.Equal(key, fontFamily.Key);
|
|
}
|
|
|
|
[Theory]
|
|
[InlineData("resm:Avalonia.Visuals.UnitTests/Assets/Fonts#MyFont")]
|
|
[InlineData("avares://Avalonia.Visuals.UnitTests/Assets/Fonts#MyFont")]
|
|
public void Should_Create_FontFamily_From_Uri(string name)
|
|
{
|
|
var fontFamily = new FontFamily(name);
|
|
|
|
Assert.Equal("MyFont", fontFamily.Name);
|
|
|
|
Assert.NotNull(fontFamily.Key);
|
|
}
|
|
|
|
[Theory]
|
|
[InlineData("resm:Avalonia.Visuals.UnitTests.Assets.Fonts", "#MyFont")]
|
|
[InlineData("avares://Avalonia.Visuals.UnitTests/Assets/Fonts", "#MyFont")]
|
|
[InlineData("avares://Avalonia.Visuals.UnitTests", "/Assets/Fonts#MyFont")]
|
|
public void Should_Create_FontFamily_From_Uri_With_Base_Uri(string @base, string name)
|
|
{
|
|
var baseUri = new Uri(@base);
|
|
|
|
var fontFamily = new FontFamily(baseUri, name);
|
|
|
|
Assert.Equal("MyFont", fontFamily.Name);
|
|
|
|
Assert.NotNull(fontFamily.Key);
|
|
}
|
|
}
|
|
}
|
|
|