OSDN Git Service

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