-
Notifications
You must be signed in to change notification settings - Fork 49
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1695 from unoplatform/dev/dr/vmCommands
test(mvux): Ensure that feed parameters shares the same context as the Model
- Loading branch information
Showing
2 changed files
with
88 additions
and
1 deletion.
There are no files selected for viewing
77 changes: 77 additions & 0 deletions
77
src/Uno.Extensions.Reactive.UI.Tests/Generator/Given_VMWithCommands.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,77 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Text; | ||
using Microsoft.UI.Xaml; | ||
using Microsoft.UI.Xaml.Controls; | ||
using Microsoft.UI.Xaml.Data; | ||
using Microsoft.VisualStudio.TestTools.UnitTesting; | ||
using Uno.Extensions.Reactive.UI; | ||
using Uno.UI.RuntimeTests; | ||
using Button = Microsoft.UI.Xaml.Controls.Button; | ||
|
||
namespace Uno.Extensions.Reactive.WinUI.Tests.Generator; | ||
|
||
[TestClass] | ||
[RunsOnUIThread] | ||
public partial class Given_VMWithCommands | ||
{ | ||
public partial class When_ParameterFeed_Then_SubscribedWithSameContext_ViewModel | ||
{ | ||
public int FeedInvokeCount { get; private set; } | ||
|
||
public int CommandLastParameter { get; private set; } = -1; | ||
|
||
public IFeed<int> MyFeed => Feed.Async(async ct => ++FeedInvokeCount); | ||
|
||
public void DoSomething(int myFeed, CancellationToken ct) | ||
=> CommandLastParameter = myFeed; | ||
} | ||
|
||
[TestMethod] | ||
public async Task When_ParameterFeed_Then_SubscribedWithSameContext() | ||
{ | ||
var vm = new BindableWhen_ParameterFeed_Then_SubscribedWithSameContext_ViewModel(); | ||
|
||
await UIHelper.WaitFor(() => vm.MyFeed != 0, default); | ||
|
||
var current = vm.MyFeed; | ||
vm.DoSomething.Execute(null); | ||
|
||
await UIHelper.WaitFor(() => vm.Model.CommandLastParameter != -1, default); | ||
|
||
Assert.AreEqual(1, vm.FeedInvokeCount); | ||
Assert.AreEqual(current, vm.Model.CommandLastParameter); | ||
} | ||
|
||
[TestMethod] | ||
public async Task When_ParameterFeed_Then_SubscribedWithSameContext_UsingUI() | ||
{ | ||
FeedView view; | ||
Button doSomething; | ||
var vm = new BindableWhen_ParameterFeed_Then_SubscribedWithSameContext_ViewModel(); | ||
var ui = new StackPanel | ||
{ | ||
DataContext = vm, | ||
Children = | ||
{ | ||
(view = new FeedView()), | ||
(doSomething = new Button()) | ||
} | ||
}; | ||
|
||
view.SetBinding(FeedView.SourceProperty, new Binding { Path = new PropertyPath("MyFeed") }); | ||
doSomething.SetBinding(Button.CommandProperty, new Binding { Path = new PropertyPath("DoSomething") }); | ||
|
||
await UIHelper.Load(ui, default); | ||
|
||
await UIHelper.WaitFor(() => vm.MyFeed is not 0, default); | ||
|
||
var current = vm.MyFeed; | ||
doSomething.Command.Execute(null); | ||
|
||
await UIHelper.WaitFor(() => vm.Model.CommandLastParameter != -1, default); | ||
|
||
Assert.AreEqual(1, vm.FeedInvokeCount); | ||
Assert.AreEqual(current, vm.Model.CommandLastParameter); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters