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.ComponentModel;
25 using System.Drawing;
26 using System.Drawing.Imaging;
27 using System.IO;
28 using System.Linq;
29 using System.Reflection;
30 using System.Text;
31 using System.Threading.Tasks;
32 using System.Windows.Forms;
33 using Xunit;
34
35 namespace OpenTween
36 {
37     internal static class TestUtils
38     {
39         public static void CheckDeepCloning(object obj, object cloneObj)
40         {
41             Assert.Equal(obj, cloneObj);
42             Assert.NotSame(obj, cloneObj);
43
44             foreach (var field in obj.GetType().GetFields(BindingFlags.Instance | BindingFlags.Public | BindingFlags.NonPublic))
45             {
46                 var objValue = field.GetValue(obj);
47                 var cloneValue = field.GetValue(cloneObj);
48
49                 Assert.Equal(objValue, cloneValue);
50                 if (objValue == null && cloneValue == null) continue;
51                 if (field.FieldType.IsValueType || field.FieldType == typeof(string)) continue;
52
53                 Assert.NotSame(objValue, cloneValue);
54             }
55         }
56
57         public static async Task NotRaisesAsync<T>(Action<EventHandler<T>> attach, Action<EventHandler<T>> detach, Func<Task> testCode)
58             where T : EventArgs
59         {
60             T? raisedEvent = null;
61
62             void handler(object s, T e)
63                 => raisedEvent = e;
64
65             try
66             {
67                 attach(handler);
68                 await testCode().ConfigureAwait(false);
69
70                 if (raisedEvent != null)
71                     throw new Xunit.Sdk.RaisesException(typeof(void), raisedEvent.GetType());
72             }
73             finally
74             {
75                 detach(handler);
76             }
77         }
78
79         public static void NotPropertyChanged(INotifyPropertyChanged @object, string propertyName, Action testCode)
80         {
81             void handler(object s, PropertyChangedEventArgs e)
82             {
83                 if (s == @object && e.PropertyName == propertyName)
84                     throw new Xunit.Sdk.PropertyChangedException(propertyName);
85             }
86
87             try
88             {
89                 @object.PropertyChanged += handler;
90                 testCode();
91             }
92             finally
93             {
94                 @object.PropertyChanged -= handler;
95             }
96         }
97
98         public static MemoryImage CreateDummyImage()
99         {
100             using (var bitmap = new Bitmap(100, 100))
101             using (var stream = new MemoryStream())
102             {
103                 bitmap.Save(stream, ImageFormat.Png);
104                 stream.Position = 0;
105
106                 return MemoryImage.CopyFromStream(stream);
107             }
108         }
109
110         public static MemoryImageMediaItem CreateDummyMediaItem()
111             => new MemoryImageMediaItem(CreateDummyImage());
112
113         public static void FireEvent<T>(T control, string eventName) where T : Control
114             => TestUtils.FireEvent(control, eventName, EventArgs.Empty);
115
116         public static void FireEvent<T>(T control, string eventName, EventArgs e) where T : Control
117         {
118             var methodName = "On" + eventName;
119             var method = typeof(T).GetMethod(methodName, BindingFlags.Instance | BindingFlags.NonPublic);
120
121             method.Invoke(control, new[] { e });
122         }
123
124         public static void Validate<T>(T control) where T : Control
125         {
126             var cancelEventArgs = new CancelEventArgs();
127             TestUtils.FireEvent(control, "Validating", cancelEventArgs);
128
129             if (cancelEventArgs.Cancel)
130                 return;
131
132             TestUtils.FireEvent(control, "Validated");
133         }
134     }
135 }
136
137 namespace OpenTween.Setting
138 {
139     public class SettingManagerTest
140     {
141         public static SettingCommon Common
142         {
143             get => SettingManager.Common;
144             set => SettingManager.Common = value;
145         }
146
147         public static SettingLocal Local
148         {
149             get => SettingManager.Local;
150             set => SettingManager.Local = value;
151         }
152
153         public static SettingTabs Tabs
154         {
155             get => SettingManager.Tabs;
156             set => SettingManager.Tabs = value;
157         }
158
159         public static SettingAtIdList AtIdList
160         {
161             get => SettingManager.AtIdList;
162             set => SettingManager.AtIdList = value;
163         }
164     }
165 }