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

MockBindingProvider.cs « Xamarin.PropertyEditing.Tests - github.com/xamarin/Xamarin.PropertyEditing.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8077ed446e91bddd03e703738599b714cc7ebedc (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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading;
using System.Threading.Tasks;
using Xamarin.PropertyEditing.Reflection;
using Xamarin.PropertyEditing.Tests.MockControls;

namespace Xamarin.PropertyEditing.Tests
{
	public class MockBindingProvider
		: IBindingProvider
	{
		public Task<IReadOnlyList<BindingSource>> GetBindingSourcesAsync (object target, IPropertyInfo property)
		{
			return Task.FromResult<IReadOnlyList<BindingSource>> (new[] {
				new BindingSourceInstance (RelativeSelf, $"Bind [{target.GetType().Name}] to itself."), 
				StaticResource,
				Ancestor
			});
		}

		public Task<AssignableTypesResult> GetSourceTypesAsync (BindingSource source, object target)
		{
			return ReflectionObjectEditor.GetAssignableTypes (typeof(MockControl).ToTypeInfo (), childTypes: false);
		}

		public Task<IReadOnlyList<object>> GetRootElementsAsync (BindingSource source, object target)
		{
			if (source == null)
				throw new ArgumentNullException (nameof(source));
			if (source.Type != BindingSourceType.Object && source.Type != BindingSourceType.SingleObject)
				throw new ArgumentException ("source.Type was not Object", nameof(source));

			if (source is BindingSourceInstance instance)
				source = instance.Original;

			if (source == RelativeSelf)
				return Task.FromResult<IReadOnlyList<object>> (new [] { target });
			if (source == StaticResource)
				return MockResourceProvider.GetResourceSourcesAsync (target).ContinueWith (t => (IReadOnlyList<object>) t.Result);

			throw new NotImplementedException();
		}

		public async Task<ILookup<ResourceSource, Resource>> GetResourcesAsync (BindingSource source, object target)
		{
			var results = await this.resources.GetResourcesAsync (target, CancellationToken.None).ConfigureAwait (false);
			return results.ToLookup (r => r.Source);
		}

		public Task<IReadOnlyList<Resource>> GetValueConverterResourcesAsync (object target)
		{
			return Task.FromResult<IReadOnlyList<Resource>> (Array.Empty<Resource> ());
		}

		private readonly MockResourceProvider resources = new MockResourceProvider();

		private static readonly BindingSource Ancestor = new BindingSource ("RelativeSource FindAncestor", BindingSourceType.Type);
		private static readonly BindingSource RelativeSelf = new BindingSource ("RelativeSource Self", BindingSourceType.SingleObject);
		private static readonly BindingSource StaticResource = new BindingSource ("StaticResource", BindingSourceType.Resource);

		private class BindingSourceInstance
			: BindingSource
		{
			public BindingSourceInstance (BindingSource original, string description)
				: base (original.Name, original.Type, description)
			{
				Original = original;
			}

			public BindingSource Original
			{
				get;
			}
		}
	}

	public class MockBinding
	{
		public string Path
		{
			get;
			set;
		}

		public BindingSource Source
		{
			get;
			set;
		}

		public object SourceParameter
		{
			get;
			set;
		}

		public Resource Converter
		{
			get;
			set;
		}

		public string StringFormat
		{
			get;
			set;
		}

		public bool IsAsync
		{
			get;
			set;
		}

		public int TypeLevel
		{
			get;
			set;
		}
	}
}