OSDN Git Service

Merge pull request #307 from opentween/detect-rate-limits
[opentween/open-tween.git] / OpenTween.Tests / ThemeManagerTest.cs
1 // OpenTween - Client of Twitter
2 // Copyright (c) 2022 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.Drawing;
23 using Xunit;
24
25 namespace OpenTween
26 {
27     public class ThemeManagerTest
28     {
29         [Fact]
30         public void FontDefaultTest()
31         {
32             var settings = new SettingLocal();
33             using var themeManager = new ThemeManager(settings);
34             Assert.True(themeManager.FontDetail.IsSystemFont);
35             Assert.Equal(nameof(SystemFonts.DefaultFont), themeManager.FontDetail.SystemFontName);
36         }
37
38         [Fact]
39         public void FontCustomTest()
40         {
41             var settings = new SettingLocal
42             {
43                 FontDetailStr = "Arial, 9pt",
44             };
45             using var themeManager = new ThemeManager(settings);
46             Assert.False(themeManager.FontDetail.IsSystemFont);
47             Assert.Equal("Arial", themeManager.FontDetail.OriginalFontName);
48             Assert.Equal(9, themeManager.FontDetail.SizeInPoints);
49         }
50
51         [Fact]
52         public void ColorDefaultTest()
53         {
54             var settings = new SettingLocal();
55             using var themeManager = new ThemeManager(settings);
56             Assert.True(themeManager.ColorDetail.IsSystemColor);
57             Assert.Equal(nameof(KnownColor.ControlText), themeManager.ColorDetail.Name);
58         }
59
60         [Fact]
61         public void ColorCustomTest()
62         {
63             var settings = new SettingLocal
64             {
65                 ColorDetailStr = "0, 100, 200",
66             };
67             using var themeManager = new ThemeManager(settings);
68             Assert.False(themeManager.ColorDetail.IsSystemColor);
69             Assert.Equal(0, themeManager.ColorDetail.R);
70             Assert.Equal(100, themeManager.ColorDetail.G);
71             Assert.Equal(200, themeManager.ColorDetail.B);
72         }
73     }
74 }