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.
172 lines
6.1 KiB
172 lines
6.1 KiB
using System;
|
|
using System.Reactive.Subjects;
|
|
using System.Threading;
|
|
using System.Threading.Tasks;
|
|
using Avalonia.Platform;
|
|
using Avalonia.Threading;
|
|
using Avalonia.UnitTests;
|
|
using Xunit;
|
|
|
|
namespace Avalonia.Base.UnitTests
|
|
{
|
|
public class AvaloniaObjectTests_Threading
|
|
{
|
|
private TestDipatcherImpl _threading = new(true);
|
|
|
|
[Fact]
|
|
public void AvaloniaObject_Constructor_Should_Throw()
|
|
{
|
|
using (UnitTestApplication.Start(new TestServices(dispatcherImpl: new TestDipatcherImpl())))
|
|
{
|
|
Assert.Throws<InvalidOperationException>(() => new Class1());
|
|
}
|
|
}
|
|
|
|
[Fact]
|
|
public void StyledProperty_GetValue_Should_Throw()
|
|
{
|
|
using (UnitTestApplication.Start(new TestServices(dispatcherImpl: _threading)))
|
|
{
|
|
var target = new Class1();
|
|
_threading.CurrentThreadIsLoopThread = false;
|
|
Assert.Throws<InvalidOperationException>(() => target.GetValue(Class1.StyledProperty));
|
|
}
|
|
}
|
|
|
|
[Fact]
|
|
public void StyledProperty_SetValue_Should_Throw()
|
|
{
|
|
using (UnitTestApplication.Start(new TestServices(dispatcherImpl: _threading)))
|
|
{
|
|
var target = new Class1();
|
|
_threading.CurrentThreadIsLoopThread = false;
|
|
Assert.Throws<InvalidOperationException>(() => target.SetValue(Class1.StyledProperty, "foo"));
|
|
}
|
|
}
|
|
|
|
[Fact]
|
|
public void Setting_StyledProperty_Binding_Should_Throw()
|
|
{
|
|
using (UnitTestApplication.Start(new TestServices(dispatcherImpl: _threading)))
|
|
{
|
|
var target = new Class1();
|
|
_threading.CurrentThreadIsLoopThread = false;
|
|
Assert.Throws<InvalidOperationException>(() =>
|
|
target.Bind(
|
|
Class1.StyledProperty,
|
|
new BehaviorSubject<string>("foo")));
|
|
}
|
|
}
|
|
|
|
[Fact]
|
|
public void StyledProperty_ClearValue_Should_Throw()
|
|
{
|
|
using (UnitTestApplication.Start(new TestServices(dispatcherImpl: _threading)))
|
|
{
|
|
var target = new Class1();
|
|
_threading.CurrentThreadIsLoopThread = false;
|
|
Assert.Throws<InvalidOperationException>(() => target.ClearValue(Class1.StyledProperty));
|
|
}
|
|
}
|
|
|
|
[Fact]
|
|
public void StyledProperty_IsSet_Should_Throw()
|
|
{
|
|
using (UnitTestApplication.Start(new TestServices(dispatcherImpl: _threading)))
|
|
{
|
|
var target = new Class1();
|
|
_threading.CurrentThreadIsLoopThread = false;
|
|
Assert.Throws<InvalidOperationException>(() => target.IsSet(Class1.StyledProperty));
|
|
}
|
|
}
|
|
|
|
[Fact]
|
|
public void DirectProperty_GetValue_Should_Throw()
|
|
{
|
|
using (UnitTestApplication.Start(new TestServices(dispatcherImpl: _threading)))
|
|
{
|
|
var target = new Class1();
|
|
_threading.CurrentThreadIsLoopThread = false;
|
|
Assert.Throws<InvalidOperationException>(() => target.GetValue(Class1.DirectProperty));
|
|
}
|
|
}
|
|
|
|
[Fact]
|
|
public void DirectProperty_SetValue_Should_Throw()
|
|
{
|
|
using (UnitTestApplication.Start(new TestServices(dispatcherImpl: _threading)))
|
|
{
|
|
var target = new Class1();
|
|
_threading.CurrentThreadIsLoopThread = false;
|
|
Assert.Throws<InvalidOperationException>(() => target.SetValue(Class1.DirectProperty, "foo"));
|
|
}
|
|
}
|
|
|
|
[Fact]
|
|
public void Setting_DirectProperty_Binding_Should_Throw()
|
|
{
|
|
using (UnitTestApplication.Start(new TestServices(dispatcherImpl: _threading)))
|
|
{
|
|
var target = new Class1();
|
|
_threading.CurrentThreadIsLoopThread = false;
|
|
Assert.Throws<InvalidOperationException>(() =>
|
|
target.Bind(
|
|
Class1.DirectProperty,
|
|
new BehaviorSubject<string>("foo")));
|
|
}
|
|
}
|
|
|
|
[Fact]
|
|
public void DirectProperty_ClearValue_Should_Throw()
|
|
{
|
|
using (UnitTestApplication.Start(new TestServices(dispatcherImpl: _threading)))
|
|
{
|
|
var target = new Class1();
|
|
_threading.CurrentThreadIsLoopThread = false;
|
|
Assert.Throws<InvalidOperationException>(() => target.ClearValue(Class1.DirectProperty));
|
|
}
|
|
}
|
|
|
|
[Fact]
|
|
public void DirectProperty_IsSet_Should_Throw()
|
|
{
|
|
using (UnitTestApplication.Start(new TestServices(dispatcherImpl: _threading)))
|
|
{
|
|
var target = new Class1();
|
|
_threading.CurrentThreadIsLoopThread = false;
|
|
Assert.Throws<InvalidOperationException>(() => target.IsSet(Class1.DirectProperty));
|
|
}
|
|
}
|
|
|
|
private class Class1 : AvaloniaObject
|
|
{
|
|
public static readonly StyledProperty<string> StyledProperty =
|
|
AvaloniaProperty.Register<Class1, string>("Foo", "foodefault");
|
|
|
|
public static readonly DirectProperty<Class1, string?> DirectProperty =
|
|
AvaloniaProperty.RegisterDirect<Class1, string?>("Qux", _ => null, (o, v) => { });
|
|
}
|
|
|
|
private class TestDipatcherImpl : IDispatcherImpl
|
|
{
|
|
|
|
public TestDipatcherImpl(bool isLoopThread = false)
|
|
{
|
|
CurrentThreadIsLoopThread = isLoopThread;
|
|
}
|
|
|
|
public bool CurrentThreadIsLoopThread { get; set; }
|
|
|
|
public event Action? Signaled { add { } remove { } }
|
|
public event Action? Timer { add { } remove { } }
|
|
public long Now => 0;
|
|
public void UpdateTimer(long? dueTimeInMs)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
public void Signal() => throw new NotImplementedException();
|
|
|
|
|
|
}
|
|
}
|
|
}
|
|
|