Welcome to mirror list, hosted at ThFree Co, Russian Federation.

AsyncValueTests.cs « Xamarin.PropertyEditing.Tests - github.com/xamarin/Xamarin.PropertyEditing.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4670805022e7cf437111edfffeafb3da123f37ec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using NUnit.Framework;

namespace Xamarin.PropertyEditing.Tests
{
	[TestFixture]
	internal class AsyncValueTests
	{

		[Test]
		public void ValueOnCompletion ()
		{
			var tcs = new TaskCompletionSource<string> ();
			var asyncValue = new AsyncValue<string> (tcs.Task, scheduler: new SyncScheduler());

			Assume.That (asyncValue.Value, Is.Null);

			bool changed = false;
			asyncValue.PropertyChanged += (sender, args) => {
				if (args.PropertyName == nameof (AsyncValue<string>.Value))
					changed = true;
			};

			const string value = "value";
			tcs.SetResult (value);

			Assert.That (asyncValue.Value, Is.EqualTo (value));
			Assert.That (changed, Is.True, "PropertyChanged did not fire for Value");
		}

		[Test]
		public void DefaultValue ()
		{
			var tcs = new TaskCompletionSource<bool> ();
			var value = new AsyncValue<bool> (tcs.Task, defaultValue: true, scheduler: new SyncScheduler());

			Assert.That (value.Value, Is.True);
		}

		[TestCase (true)]
		[TestCase (false)]
		public void ValueReplacesDefaultValue (bool value)
		{
			var tcs = new TaskCompletionSource<bool> ();
			var asyncValue = new AsyncValue<bool> (tcs.Task, defaultValue: !value, scheduler: new SyncScheduler());

			Assume.That (asyncValue.Value, Is.EqualTo (!value));

			tcs.SetResult (value);

			Assert.That (asyncValue.Value, Is.EqualTo (value));
		}

		[Test]
		public void IsRunning ()
		{
			var tcs = new TaskCompletionSource<string> ();
			var asyncValue = new AsyncValue<string> (tcs.Task, scheduler: new SyncScheduler());

			Assume.That (asyncValue.Value, Is.Null);
			Assert.That (asyncValue.IsRunning, Is.True);

			bool changed = false;
			asyncValue.PropertyChanged += (sender, args) => {
				if (args.PropertyName == nameof (AsyncValue<string>.IsRunning))
					changed = true;
			};

			const string value = "value";
			tcs.SetResult (value);

			Assume.That (asyncValue.Value, Is.EqualTo (value));
			Assert.That (asyncValue.IsRunning, Is.False, "IsRunning did not flip to false");
			Assert.That (changed, Is.True, "PropertyChanged did not fire for IsRunning");
		}

		[Test]
		public void AsyncValueException ()
		{
			var tcs = new TaskCompletionSource<bool> ();
			var asyncValue = new AsyncValue<bool> (tcs.Task, defaultValue: true, scheduler: new SyncScheduler());

			Assume.That (asyncValue.Value, Is.True);

			bool valueChanged = false, runningChanged = false;
			asyncValue.PropertyChanged += (sender, args) => {
				if (args.PropertyName == nameof (AsyncValue<string>.Value))
					valueChanged = true;
				else if (args.PropertyName == nameof (AsyncValue<string>.IsRunning))
					runningChanged = true;
			};

			tcs.SetException (new Exception ());

			Assert.That (asyncValue.Value, Is.True);
			Assert.That (valueChanged, Is.False, "Value should not signal change when there's an exception");
			Assert.That (asyncValue.IsRunning, Is.False);
			Assert.That (runningChanged, Is.True);
		}
	}

	internal class SyncScheduler
		: TaskScheduler
	{
		protected override void QueueTask (Task task)
		{
			TryExecuteTaskInline (task, false);
		}

		protected override bool TryExecuteTaskInline (Task task, bool taskWasPreviouslyQueued)
		{
			return TryExecuteTask (task);
		}

		protected override IEnumerable<Task> GetScheduledTasks ()
		{
			return Enumerable.Empty<Task> ();
		}
	}
}