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.
113 lines
3.8 KiB
113 lines
3.8 KiB
using System;
|
|
using System.Reactive.Concurrency;
|
|
using System.Reactive.Disposables;
|
|
using Avalonia.Controls;
|
|
using Avalonia.Rendering;
|
|
using Avalonia.Platform;
|
|
using Avalonia.UnitTests;
|
|
using Avalonia;
|
|
using ReactiveUI;
|
|
using DynamicData;
|
|
using Xunit;
|
|
using Splat;
|
|
using Avalonia.Markup.Xaml;
|
|
using System.ComponentModel;
|
|
using System.Threading.Tasks;
|
|
using System.Reactive;
|
|
using Avalonia.ReactiveUI;
|
|
|
|
namespace Avalonia
|
|
{
|
|
public class RoutedViewHostTest
|
|
{
|
|
public class FirstRoutableViewModel : ReactiveObject, IRoutableViewModel
|
|
{
|
|
public string UrlPathSegment => "first";
|
|
|
|
public IScreen HostScreen { get; set; }
|
|
}
|
|
|
|
public class FirstRoutableView : ReactiveUserControl<FirstRoutableViewModel> { }
|
|
|
|
public class SecondRoutableViewModel : ReactiveObject, IRoutableViewModel
|
|
{
|
|
public string UrlPathSegment => "second";
|
|
|
|
public IScreen HostScreen { get; set; }
|
|
}
|
|
|
|
public class SecondRoutableView : ReactiveUserControl<SecondRoutableViewModel> { }
|
|
|
|
public class ScreenViewModel : ReactiveObject, IScreen
|
|
{
|
|
public RoutingState Router { get; } = new RoutingState();
|
|
}
|
|
|
|
public RoutedViewHostTest()
|
|
{
|
|
Locator.CurrentMutable.RegisterConstant(new AvaloniaActivationForViewFetcher(), typeof(IActivationForViewFetcher));
|
|
Locator.CurrentMutable.Register(() => new FirstRoutableView(), typeof(IViewFor<FirstRoutableViewModel>));
|
|
Locator.CurrentMutable.Register(() => new SecondRoutableView(), typeof(IViewFor<SecondRoutableViewModel>));
|
|
}
|
|
|
|
[Fact]
|
|
public void RoutedViewHost_Should_Stay_In_Sync_With_RoutingState()
|
|
{
|
|
var screen = new ScreenViewModel();
|
|
var defaultContent = new TextBlock();
|
|
var host = new RoutedViewHost
|
|
{
|
|
Router = screen.Router,
|
|
DefaultContent = defaultContent,
|
|
FadeOutAnimation = null,
|
|
FadeInAnimation = null
|
|
};
|
|
|
|
var root = new TestRoot
|
|
{
|
|
Child = host
|
|
};
|
|
|
|
Assert.NotNull(host.Content);
|
|
Assert.Equal(typeof(TextBlock), host.Content.GetType());
|
|
Assert.Equal(defaultContent, host.Content);
|
|
|
|
var first = new FirstRoutableViewModel();
|
|
screen.Router.Navigate
|
|
.Execute(first)
|
|
.Subscribe();
|
|
|
|
Assert.NotNull(host.Content);
|
|
Assert.Equal(typeof(FirstRoutableView), host.Content.GetType());
|
|
Assert.Equal(first, ((FirstRoutableView)host.Content).DataContext);
|
|
Assert.Equal(first, ((FirstRoutableView)host.Content).ViewModel);
|
|
|
|
var second = new SecondRoutableViewModel();
|
|
screen.Router.Navigate
|
|
.Execute(second)
|
|
.Subscribe();
|
|
|
|
Assert.NotNull(host.Content);
|
|
Assert.Equal(typeof(SecondRoutableView), host.Content.GetType());
|
|
Assert.Equal(second, ((SecondRoutableView)host.Content).DataContext);
|
|
Assert.Equal(second, ((SecondRoutableView)host.Content).ViewModel);
|
|
|
|
screen.Router.NavigateBack
|
|
.Execute(Unit.Default)
|
|
.Subscribe();
|
|
|
|
Assert.NotNull(host.Content);
|
|
Assert.Equal(typeof(FirstRoutableView), host.Content.GetType());
|
|
Assert.Equal(first, ((FirstRoutableView)host.Content).DataContext);
|
|
Assert.Equal(first, ((FirstRoutableView)host.Content).ViewModel);
|
|
|
|
screen.Router.NavigateBack
|
|
.Execute(Unit.Default)
|
|
.Subscribe();
|
|
|
|
Assert.NotNull(host.Content);
|
|
Assert.Equal(typeof(TextBlock), host.Content.GetType());
|
|
Assert.Equal(defaultContent, host.Content);
|
|
}
|
|
}
|
|
}
|