OSDN Git Service

式形式のメソッドを使用する (IDE0021, IDE0022, IDE0025, IDE0053)
[opentween/open-tween.git] / OpenTween.Tests / MyCommonTest.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.IO;
25 using System.Linq;
26 using System.Reflection;
27 using System.Runtime.InteropServices;
28 using System.Runtime.Serialization;
29 using System.Text;
30 using System.Windows.Forms;
31 using Moq;
32 using OpenTween;
33 using OpenTween.Models;
34 using Xunit;
35 using Xunit.Extensions;
36
37 namespace OpenTween
38 {
39     public class MyCommonTest
40     {
41         [Theory]
42         [InlineData("http://日本語.idn.icann.org/", "http://xn--wgv71a119e.idn.icann.org/")]
43         [InlineData("http://例え.テスト/", "http://xn--r8jz45g.xn--zckzah/")]
44         public void IDNEncodeTest(string uri, string expected)
45             => Assert.Equal(expected, MyCommon.IDNEncode(uri));
46
47         [Theory]
48         [InlineData("http://xn--wgv71a119e.idn.icann.org/", "http://日本語.idn.icann.org/")]
49         [InlineData("http://xn--r8jz45g.xn--zckzah/", "http://例え.テスト/")]
50         [InlineData("http://xn--a/", "http://xn--a/")] // 不正なpunycode
51         public void IDNDecodeTest(string uri, string expected)
52             => Assert.Equal(expected, MyCommon.IDNDecode(uri));
53
54         [Theory]
55         [InlineData("http://xn--r8jz45g.xn--zckzah/", "http://例え.テスト/")]
56         [InlineData("http://ja.wikipedia.org/wiki/%3F", "http://ja.wikipedia.org/wiki/%3F")] // "?" に変換しない
57         [InlineData("http://ja.wikipedia.org/wiki/%E3%83%9E%E3%82%B8LOVE1000%25",
58             "http://ja.wikipedia.org/wiki/マジLOVE1000%25")] // "%" も変換しない
59         [InlineData("http://xn--a/%E3%81%82", "http://xn--a/あ")] // 不正なpunycode
60         [InlineData("http://example..com/", "http://example..com/")] // 不正なURL
61         [InlineData("http://example.com/%E3%81%82%FF", "http://example.com/あ%FF")] // 不正なUTF-8シーケンス
62         [InlineData("http://example.com/%E3%81%82%ED%A0%80", "http://example.com/あ%ED%A0%80")] // 不正なUTF-8シーケンス (high surrogate)
63         public void ConvertToReadableUrl(string url, string expected)
64             => Assert.Equal(expected, MyCommon.ConvertToReadableUrl(url));
65
66         [Theory]
67         [InlineData(new int[] { 1, 2, 3, 4 }, 0, 3, new int[] { 2, 3, 4, 1 })] // 左ローテイト?
68         [InlineData(new int[] { 1, 2, 3, 4 }, 3, 0, new int[] { 4, 1, 2, 3 })] // 右ローテイト?
69         [InlineData(new int[] { 1, 2, 3, 4, 5 }, 1, 3, new int[] { 1, 3, 4, 2, 5 })]
70         [InlineData(new int[] { 1, 2, 3, 4, 5 }, 3, 1, new int[] { 1, 4, 2, 3, 5 })]
71         public void MoveArrayItemTest(int[] values, int idx_fr, int idx_to, int[] expected)
72         {
73             // MoveArrayItem は values を直接変更するため複製を用意する
74             var copy = new int[values.Length];
75             Array.Copy(values, copy, values.Length);
76
77             MyCommon.MoveArrayItem(copy, idx_fr, idx_to);
78             Assert.Equal(expected, copy);
79         }
80
81         [Fact]
82         public void EncryptStringTest()
83         {
84             var str = "hogehoge";
85
86             var crypto = MyCommon.EncryptString(str);
87             Assert.NotEqual(str, crypto);
88
89             var decrypt = MyCommon.DecryptString(crypto);
90             Assert.Equal(str, decrypt);
91         }
92
93         [Theory]
94         [InlineData(new byte[] { 0x01, 0x02 }, 3, new byte[] { 0x01, 0x02, 0x00 })]
95         [InlineData(new byte[] { 0x01, 0x02 }, 2, new byte[] { 0x01, 0x02 })]
96         [InlineData(new byte[] { 0x01, 0x02 }, 1, new byte[] { 0x03 })]
97         public void ResizeBytesArrayTest(byte[] bytes, int size, byte[] expected)
98             => Assert.Equal(expected, MyCommon.ResizeBytesArray(bytes, size));
99
100         [Theory]
101         [InlineData("Resources/re.gif", true)]
102         [InlineData("Resources/re1.gif", false)]
103         [InlineData("Resources/re1.png", false)]
104         public void IsAnimatedGifTest(string filename, bool expected)
105             => Assert.Equal(expected, MyCommon.IsAnimatedGif(filename));
106
107         public static readonly TheoryData<string, DateTimeUtc> DateTimeParse_TestCase = new TheoryData<string, DateTimeUtc>
108         {
109             { "Sun Nov 25 06:10:00 +00:00 2012", new DateTimeUtc(2012, 11, 25, 6, 10, 0) },
110             { "Sun, 25 Nov 2012 06:10:00 +00:00", new DateTimeUtc(2012, 11, 25, 6, 10, 0) },
111         };
112
113         [Theory]
114         [MemberData(nameof(DateTimeParse_TestCase))]
115         public void DateTimeParseTest(string date, DateTimeUtc excepted)
116             => Assert.Equal(excepted, MyCommon.DateTimeParse(date));
117
118         [DataContract]
119         public struct JsonData
120         {
121             [DataMember(Name = "id")] public string Id { get; set; }
122             [DataMember(Name = "body")] public string Body { get; set; }
123         }
124         public static IEnumerable<object[]> CreateDataFromJson_TestCase
125         {
126             get
127             {
128                 yield return new object[] {
129                     @"{""id"":""1"", ""body"":""hogehoge""}",
130                     new JsonData { Id = "1", Body = "hogehoge" },
131                 };
132             }
133         }
134
135         [Theory]
136         [MemberData(nameof(CreateDataFromJson_TestCase))]
137         public void CreateDataFromJsonTest<T>(string json, T expected)
138             => Assert.Equal(expected, MyCommon.CreateDataFromJson<T>(json));
139
140         [Theory]
141         [InlineData("hoge123@example.com", true)]
142         [InlineData("hogehoge", false)]
143         [InlineData("foo.bar@example.com", true)]
144         [InlineData("foo..bar@example.com", false)]
145         [InlineData("foobar.@example.com", false)]
146         [InlineData("foo+bar@example.com", true)]
147         public void IsValidEmailTest(string email, bool expected)
148             => Assert.Equal(expected, MyCommon.IsValidEmail(email));
149
150         [Theory]
151         [InlineData(Keys.Shift, new[] { Keys.Shift }, true)]
152         [InlineData(Keys.Shift, new[] { Keys.Control }, false)]
153         [InlineData(Keys.Control | Keys.Alt, new[] { Keys.Control }, true)]
154         [InlineData(Keys.Control | Keys.Alt, new[] { Keys.Alt }, true)]
155         [InlineData(Keys.Control | Keys.Alt, new[] { Keys.Control, Keys.Alt }, true)]
156         [InlineData(Keys.Control | Keys.Alt, new[] { Keys.Shift }, false)]
157         public void IsKeyDownTest(Keys modifierKeys, Keys[] checkKeys, bool expected)
158             => Assert.Equal(expected, MyCommon._IsKeyDown(modifierKeys, checkKeys));
159
160         [Fact]
161         public void GetAssemblyNameTest()
162         {
163             var mockAssembly = new Mock<_Assembly>();
164             mockAssembly.Setup(m => m.GetName()).Returns(new AssemblyName("OpenTween"));
165             MyCommon.EntryAssembly = mockAssembly.Object;
166
167             Assert.Equal("OpenTween", MyCommon.GetAssemblyName());
168         }
169
170         [Theory]
171         [InlineData("", "")]
172         [InlineData("%AppName%", "OpenTween")]
173         [InlineData("%AppName% %AppName%", "OpenTween OpenTween")]
174         public void ReplaceAppNameTest(string str, string excepted)
175             => Assert.Equal(excepted, MyCommon.ReplaceAppName(str, "OpenTween"));
176
177         [Theory]
178         [InlineData("1.0.0.0", "1.0.0")]
179         [InlineData("1.0.0.1", "1.0.1-dev")]
180         [InlineData("1.0.0.12", "1.0.1-dev+build.12")]
181         [InlineData("1.0.1.0", "1.0.1")]
182         [InlineData("1.0.9.1", "1.0.10-dev")]
183         [InlineData("1.1.0.0", "1.1.0")]
184         [InlineData("1.9.9.1", "1.9.10-dev")]
185         public void GetReadableVersionTest(string fileVersion, string expected)
186             => Assert.Equal(expected, MyCommon.GetReadableVersion(fileVersion));
187
188         public static IEnumerable<object[]> GetStatusUrlTest1_TestCase
189         {
190             get
191             {
192                 yield return new object[] {
193                     new PostClass { StatusId = 249493863826350080L, ScreenName = "Favstar_LM", RetweetedId = null, RetweetedBy = null },
194                     "https://twitter.com/Favstar_LM/status/249493863826350080",
195                 };
196                 yield return new object[] {
197                     new PostClass { StatusId = 216033842434289664L, ScreenName = "haru067", RetweetedId = 200245741443235840L, RetweetedBy = "re4k"},
198                     "https://twitter.com/haru067/status/200245741443235840",
199                 };
200             }
201         }
202
203         [Theory]
204         [MemberData(nameof(GetStatusUrlTest1_TestCase))]
205         public void GetStatusUrlTest1(PostClass post, string expected)
206             => Assert.Equal(expected, MyCommon.GetStatusUrl(post));
207
208         [Theory]
209         [InlineData("Favstar_LM", 249493863826350080L, "https://twitter.com/Favstar_LM/status/249493863826350080")]
210         [InlineData("haru067", 200245741443235840L, "https://twitter.com/haru067/status/200245741443235840")]
211         public void GetStatusUrlTest2(string screenName, long statusId, string expected)
212             => Assert.Equal(expected, MyCommon.GetStatusUrl(screenName, statusId));
213
214         [Fact]
215         public void GetErrorLogPathTest()
216         {
217             if (Environment.OSVersion.Platform == PlatformID.Win32NT)
218             {
219                 var mockAssembly = new Mock<_Assembly>();
220                 mockAssembly.Setup(m => m.Location).Returns(@"C:\hogehoge\OpenTween\OpenTween.exe");
221                 MyCommon.EntryAssembly = mockAssembly.Object;
222
223                 Assert.Equal(@"C:\hogehoge\OpenTween\ErrorLogs", MyCommon.GetErrorLogPath());
224             }
225             else
226             {
227                 var mockAssembly = new Mock<_Assembly>();
228                 mockAssembly.Setup(m => m.Location).Returns(@"/hogehoge/OpenTween/OpenTween.exe");
229                 MyCommon.EntryAssembly = mockAssembly.Object;
230
231                 Assert.Equal(@"/hogehoge/OpenTween/ErrorLogs", MyCommon.GetErrorLogPath());
232             }
233         }
234
235         [Fact]
236         public void CountUp_Test()
237         {
238             var actual = MyCommon.CountUp(from: 1, to: 5);
239
240             Assert.Equal(new[] { 1, 2, 3, 4, 5 }, actual);
241         }
242
243         [Fact]
244         public void CountUp_FromAndToAreEqualTest()
245         {
246             var actual = MyCommon.CountUp(from: 1, to: 1);
247
248             Assert.Equal(new[] { 1 }, actual);
249         }
250
251         [Fact]
252         public void CountUp_ToIsLessThanFromTest()
253         {
254             var actual = MyCommon.CountUp(from: 1, to: 0);
255
256             Assert.Empty(actual);
257         }
258
259         [Fact]
260         public void CountDown_Test()
261         {
262             var actual = MyCommon.CountDown(from: 5, to: 1);
263
264             Assert.Equal(new[] { 5, 4, 3, 2, 1 }, actual);
265         }
266
267         [Fact]
268         public void CountDown_FromAndToAreEqualTest()
269         {
270             var actual = MyCommon.CountDown(from: 5, to: 5);
271
272             Assert.Equal(new[] { 5 }, actual);
273         }
274
275         [Fact]
276         public void CountDown_ToIsGreaterThanFromTest()
277         {
278             var actual = MyCommon.CountDown(from: 5, to: 6);
279
280             Assert.Empty(actual);
281         }
282
283         [Fact]
284         public void CircularCountUp_Test()
285         {
286             var actual = MyCommon.CircularCountUp(length: 6, startIndex: 3);
287
288             Assert.Equal(new[] { 3, 4, 5, 0, 1, 2 }, actual);
289         }
290
291         [Fact]
292         public void CircularCountUp_StartFromZeroTest()
293         {
294             var actual = MyCommon.CircularCountUp(length: 6, startIndex: 0);
295
296             Assert.Equal(new[] { 0, 1, 2, 3, 4, 5 }, actual);
297         }
298
299         [Fact]
300         public void CircularCountDown_Test()
301         {
302             var actual = MyCommon.CircularCountDown(length: 6, startIndex: 3);
303
304             Assert.Equal(new[] { 3, 2, 1, 0, 5, 4 }, actual);
305         }
306
307         [Fact]
308         public void CircularCountDown_StartFromLastIndexTest()
309         {
310             var actual = MyCommon.CircularCountDown(length: 6, startIndex: 5);
311
312             Assert.Equal(new[] { 5, 4, 3, 2, 1, 0 }, actual);
313         }
314     }
315 }