summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Core.UnitTests/MockPlatformServices.cs
blob: 5109cbb4405f4d68d62cae583f8698f8f4c971db (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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
using System;
using System.Threading.Tasks;
using System.IO;
using System.Threading;
using System.Reflection;
using System.IO.IsolatedStorage;
using System.Collections.Generic;
using Xamarin.Forms;
using Xamarin.Forms.Core.UnitTests;
using System.Security.Cryptography;
using System.Text;
using Xamarin.Forms.Internals;

#if WINDOWS_PHONE
using Xamarin.Forms.Platform.WinPhone;
#endif

[assembly:Dependency (typeof(MockDeserializer))]
[assembly:Dependency (typeof(MockResourcesProvider))]

namespace Xamarin.Forms.Core.UnitTests
{
	internal class MockPlatformServices : IPlatformServices
	{
		Action<Action> invokeOnMainThread;
		Action<Uri> openUriAction;
		Func<Uri, CancellationToken, Task<Stream>> getStreamAsync;
		public MockPlatformServices (Action<Action> invokeOnMainThread = null, Action<Uri> openUriAction = null, Func<Uri, CancellationToken, Task<Stream>> getStreamAsync = null)
		{
			this.invokeOnMainThread = invokeOnMainThread;
			this.openUriAction = openUriAction;
			this.getStreamAsync = getStreamAsync;
		}

		static MD5CryptoServiceProvider checksum = new MD5CryptoServiceProvider ();

		public string GetMD5Hash (string input)
		{
			var bytes = checksum.ComputeHash (Encoding.UTF8.GetBytes (input));
			var ret = new char [32];
			for (int i = 0; i < 16; i++){
				ret [i*2] = (char)hex (bytes [i] >> 4);
				ret [i*2+1] = (char)hex (bytes [i] & 0xf);
			}
			return new string (ret);
		}
		static int hex (int v)
		{
			if (v < 10)
				return '0' + v;
			return 'a' + v-10;
		}

		public double GetNamedSize (NamedSize size, Type targetElement, bool useOldSizes)
		{
			switch (size) {
				case NamedSize.Default:
					return 10;
				case NamedSize.Micro:
					return 4;
				case NamedSize.Small:
					return 8;
				case NamedSize.Medium:
					return 12;
				case NamedSize.Large:
					return 16;
				default:
					throw new ArgumentOutOfRangeException ("size");
			}
		}

		public void OpenUriAction (Uri uri)
		{
			if (openUriAction != null)
				openUriAction (uri);
			else
				throw new NotImplementedException ();
		}

		public bool IsInvokeRequired
		{
			get { return false; }
		}

		public void BeginInvokeOnMainThread (Action action) 
		{
			if (invokeOnMainThread == null)
				action ();
			else
				invokeOnMainThread (action);
		}

		public Ticker CreateTicker()
		{
			return new MockTicker();
		}

		public void StartTimer (TimeSpan interval, Func<bool> callback)
		{
			Timer timer = null;
			TimerCallback onTimeout = o => BeginInvokeOnMainThread (() => {
				if (callback ())
					return;

				timer.Dispose ();
			});
			timer = new Timer (onTimeout, null, interval, interval);
		}

		public Task<Stream> GetStreamAsync (Uri uri, CancellationToken cancellationToken)
		{
			if (getStreamAsync == null)
				throw new NotImplementedException ();
			return getStreamAsync (uri, cancellationToken);
		}

		public Assembly[] GetAssemblies ()
		{
			return AppDomain.CurrentDomain.GetAssemblies ();
		}

		public ITimer CreateTimer (Action<object> callback)
		{
			return new MockTimer (new Timer (o => callback(o)));
		}

		public ITimer CreateTimer (Action<object> callback, object state, int dueTime, int period)
		{
			return new MockTimer (new Timer (o => callback(o), state, dueTime, period));
		}

		public ITimer CreateTimer (Action<object> callback, object state, long dueTime, long period)
		{
			return new MockTimer (new Timer (o => callback(o), state, dueTime, period));
		}

		public ITimer CreateTimer (Action<object> callback, object state, TimeSpan dueTime, TimeSpan period)
		{
			return new MockTimer (new Timer (o => callback(o), state, dueTime, period));
		}

		public ITimer CreateTimer (Action<object> callback, object state, uint dueTime, uint period)
		{
			return new MockTimer (new Timer (o => callback(o), state, dueTime, period));
		}

		public class MockTimer : ITimer
		{
			readonly Timer timer;
			public MockTimer (Timer timer)
			{
				this.timer = timer;
			}

			public void Change (int dueTime, int period)
			{
				timer.Change (dueTime, period);
			}
			public void Change (long dueTime, long period)
			{
				timer.Change (dueTime, period);
			}
			public void Change (TimeSpan dueTime, TimeSpan period)
			{
				timer.Change (dueTime, period);
			}
			public void Change (uint dueTime, uint period)
			{
				timer.Change (dueTime, period);
			}
		}

		public IIsolatedStorageFile GetUserStoreForApplication ()
		{
#if WINDOWS_PHONE
			return new MockIsolatedStorageFile (IsolatedStorageFile.GetUserStoreForApplication ());
#else
			return new MockIsolatedStorageFile (IsolatedStorageFile.GetUserStoreForAssembly ());
#endif
		}

		public class MockIsolatedStorageFile : IIsolatedStorageFile
		{
			readonly IsolatedStorageFile isolatedStorageFile;
			public MockIsolatedStorageFile (IsolatedStorageFile isolatedStorageFile)
			{
				this.isolatedStorageFile = isolatedStorageFile;
			}

			public Task<bool> GetDirectoryExistsAsync (string path)
			{
				return Task.FromResult (isolatedStorageFile.DirectoryExists (path));
			}

			public Task CreateDirectoryAsync (string path)
			{
				isolatedStorageFile.CreateDirectory (path);
				return Task.FromResult (true);
			}

			public Task<Stream> OpenFileAsync (string path, FileMode mode, FileAccess access)
			{
				Stream stream = isolatedStorageFile.OpenFile (path, (System.IO.FileMode)mode, (System.IO.FileAccess)access);
				return Task.FromResult (stream);
			}

			public Task<Stream> OpenFileAsync (string path, FileMode mode, FileAccess access, FileShare share)
			{
				Stream stream = isolatedStorageFile.OpenFile (path, (System.IO.FileMode)mode, (System.IO.FileAccess)access, (System.IO.FileShare)share);
				return Task.FromResult (stream);
			}

			public Task<bool> GetFileExistsAsync (string path)
			{
				return Task.FromResult (isolatedStorageFile.FileExists (path));
			}

			public Task<DateTimeOffset> GetLastWriteTimeAsync (string path)
			{
				return Task.FromResult (isolatedStorageFile.GetLastWriteTime (path));
			}
		}
	}

	internal class MockDeserializer : IDeserializer
	{
		public Task<IDictionary<string, object>> DeserializePropertiesAsync ()
		{
			return Task.FromResult<IDictionary<string, object>> (new Dictionary<string,object> ());
		}

		public Task SerializePropertiesAsync (IDictionary<string, object> properties)
		{
			return Task.FromResult (false);
		}
	}

	internal class MockResourcesProvider : ISystemResourcesProvider
	{
		public IResourceDictionary GetSystemResources ()
		{
			var dictionary = new ResourceDictionary ();
			Style style;
			style = new Style (typeof(Label));
			dictionary [Device.Styles.BodyStyleKey] = style;

			style = new Style (typeof(Label));
			style.Setters.Add (Label.FontSizeProperty, 50);
			dictionary [Device.Styles.TitleStyleKey] = style;

			style = new Style (typeof(Label));
			style.Setters.Add (Label.FontSizeProperty, 40);
			dictionary [Device.Styles.SubtitleStyleKey] = style;

			style = new Style (typeof(Label));
			style.Setters.Add (Label.FontSizeProperty, 30);
			dictionary [Device.Styles.CaptionStyleKey] = style;

			style = new Style (typeof(Label));
			style.Setters.Add (Label.FontSizeProperty, 20);
			dictionary [Device.Styles.ListItemTextStyleKey] = style;

			style = new Style (typeof(Label));
			style.Setters.Add (Label.FontSizeProperty, 10);
			dictionary [Device.Styles.ListItemDetailTextStyleKey] = style;

			return dictionary;
		}
	}

	public class MockApplication : Application
	{
		public MockApplication ()
		{
		}
	}

	internal class MockTicker : Ticker
	{
		bool _enabled;

		protected override void EnableTimer()
		{
			_enabled = true;

			while (_enabled)
			{
				SendSignals(16);
			}
		}

		protected override void DisableTimer()
		{
			_enabled = false;
		}
	}
}