| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- using System.Collections.Generic;
- using System.Threading.Tasks;
- using Avalonia.Controls;
- using Avalonia.LogicalTree;
- using Avalonia.Styling;
- using Xunit;
- namespace Avalonia.Base.UnitTests.Styling
- {
- public class SelectorTests_Child
- {
- [Fact]
- public void Child_Matches_Control_When_It_Is_Child_OfType()
- {
- var parent = new TestLogical1();
- var child = new TestLogical2();
- child.LogicalParent = parent;
- var selector = default(Selector).OfType<TestLogical1>().Child().OfType<TestLogical2>();
- Assert.Equal(SelectorMatchResult.AlwaysThisInstance, selector.Match(child).Result);
- }
- [Fact]
- public void Child_Doesnt_Match_Control_When_It_Is_Grandchild_OfType()
- {
- var grandparent = new TestLogical1();
- var parent = new TestLogical2();
- var child = new TestLogical3();
- parent.LogicalParent = grandparent;
- child.LogicalParent = parent;
- var selector = default(Selector).OfType<TestLogical1>().Child().OfType<TestLogical3>();
- Assert.Equal(SelectorMatchResult.NeverThisInstance, selector.Match(child).Result);
- }
- [Fact]
- public async Task Child_Matches_Control_When_It_Is_Child_OfType_And_Class()
- {
- var parent = new TestLogical1();
- var child = new TestLogical2();
- child.LogicalParent = parent;
- var selector = default(Selector).OfType<TestLogical1>().Class("foo").Child().OfType<TestLogical2>();
- var activator = selector.Match(child).Activator;
- var result = new List<bool>();
- Assert.False(await activator.Take(1));
- parent.Classes.Add("foo");
- Assert.True(await activator.Take(1));
- parent.Classes.Remove("foo");
- Assert.False(await activator.Take(1));
- }
- [Fact]
- public void Child_Doesnt_Match_Control_When_It_Has_No_Parent()
- {
- var control = new TestLogical3();
- var selector = default(Selector).OfType<TestLogical1>().Child().OfType<TestLogical3>();
- Assert.Equal(SelectorMatchResult.NeverThisInstance, selector.Match(control).Result);
- }
- [Fact]
- public void Child_Selector_Should_Have_Correct_String_Representation()
- {
- var selector = default(Selector).OfType<TestLogical1>().Child().OfType<TestLogical3>();
- Assert.Equal("TestLogical1 > TestLogical3", selector.ToString());
- }
- public abstract class TestLogical : Control
- {
- public ILogical LogicalParent
- {
- get => Parent;
- set => ((ISetLogicalParent)this).SetParent(value);
- }
- }
- public class TestLogical1 : TestLogical
- {
- }
- public class TestLogical2 : TestLogical
- {
- }
- public class TestLogical3 : TestLogical
- {
- }
- }
- }
|