OSDN Git Service

プロパティ等の並び順を修正, コメントアウトされた不要な記述を除去
[opentween/open-tween.git] / OpenTween.Tests / TestUtils.cs
1 // OpenTween - Client of Twitter
2 // Copyright (c) 2012 kim_upsilon (@kim_upsilon) <https://upsilo.net/~upsilon/>
3 // All rights reserved.
4 //
5 // This file is part of OpenTween.
6 //
7 // This program is free software; you can redistribute it and/or modify it
8 // under the terms of the GNU General Public License as published by the Free
9 // Software Foundation; either version 3 of the License, or (at your option)
10 // any later version.
11 //
12 // This program is distributed in the hope that it will be useful, but
13 // WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
14 // or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
15 // for more details.
16 //
17 // You should have received a copy of the GNU General Public License along
18 // with this program. If not, see <http://www.gnu.org/licenses/>, or write to
19 // the Free Software Foundation, Inc., 51 Franklin Street - Fifth Floor,
20 // Boston, MA 02110-1301, USA.
21
22 using System;
23 using System.Collections.Generic;
24 using System.Linq;
25 using System.Reflection;
26 using System.Text;
27 using System.Threading.Tasks;
28 using System.Windows.Forms;
29 using Xunit;
30 using Xunit.Sdk;
31 using Xunit.Extensions;
32
33 namespace OpenTween
34 {
35     class TestUtils
36     {
37         public static void CheckDeepCloning(object obj, object cloneObj)
38         {
39             Assert.Equal(obj, cloneObj);
40             Assert.NotSame(obj, cloneObj);
41
42             foreach (var field in obj.GetType().GetFields(BindingFlags.Instance | BindingFlags.Public | BindingFlags.NonPublic))
43             {
44                 var objValue = field.GetValue(obj);
45                 var cloneValue = field.GetValue(cloneObj);
46
47                 Assert.Equal(objValue, cloneValue);
48                 if (objValue == null && cloneValue == null) continue;
49                 if (field.FieldType.IsValueType || field.FieldType == typeof(string)) continue;
50
51                 Assert.NotSame(objValue, cloneValue);
52             }
53         }
54
55         public static void FireEvent<T>(T control, string eventName) where T : Control
56         {
57             TestUtils.FireEvent(control, eventName, EventArgs.Empty);
58         }
59
60         public static void FireEvent<T>(T control, string eventName, EventArgs e) where T : Control
61         {
62             var methodName = "On" + eventName;
63             var method = typeof(T).GetMethod(methodName, BindingFlags.Instance | BindingFlags.NonPublic);
64
65             method.Invoke(control, new[] { e });
66         }
67
68         public static async Task<T> ThrowsAsync<T>(Func<Task> testCode) where T : Exception
69         {
70             var expectedType = typeof(T);
71             Exception exception = null;
72
73             try
74             {
75                 await testCode();
76             }
77             catch (Exception ex)
78             {
79                 exception = ex;
80             }
81
82             if (exception == null)
83                 throw new ThrowsException(expectedType);
84
85             if (!exception.GetType().Equals(expectedType))
86                 throw new ThrowsException(expectedType, exception);
87
88             return (T)exception;
89         }
90
91         public static async Task<T> ThrowsAnyAsync<T>(Func<Task> testCode) where T : Exception
92         {
93             var expectedType = typeof(T);
94             Exception exception = null;
95
96             try
97             {
98                 await testCode();
99             }
100             catch (Exception ex)
101             {
102                 exception = ex;
103             }
104
105             if (exception == null)
106                 throw new ThrowsException(expectedType);
107
108             if (!expectedType.IsAssignableFrom(exception.GetType()))
109                 throw new ThrowsException(expectedType, exception);
110
111             return (T)exception;
112         }
113     }
114 }