summaryrefslogtreecommitdiff
path: root/bindings/csharp/tests/ManagerTests.cs
blob: ec7d6cd18e725f2ae3111328760ce14347752658 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
// Copyright 2014  CrossWire Bible Society (http://www.crosswire.org)
//  	CrossWire Bible Society
//  	P. O. Box 2528
//  	Tempe, AZ  85280-2528
//  
//  This program is free software; you can redistribute it and/or modify it
//  under the terms of the GNU General Public License as published by the
//  Free Software Foundation version 2.
//  
//  This program is distributed in the hope that it will be useful, but
//  WITHOUT ANY WARRANTY; without even the implied warranty of
//  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
//  General Public License for more details.
using System;
using NUnit.Framework;
using System.IO;
using System.Collections.Generic;
using System.Linq;

namespace Sword.Tests
{
	[TestFixture]
	public class ManagerTests
	{
		Manager _manager;
		
		[TestFixtureSetUp]
		public void Setup()
		{
			_manager = new Manager();
		}
		
		[TestFixtureTearDown]
		public void TearDown()
		{
			_manager.Dispose();	
		}
		
		[Test]
		public void Version_Get_ReturnsAVersion()
		{
			//act
			string swordVersion = _manager.Version;
			
			//assert
			Version version;
			Assert.That (Version.TryParse(swordVersion, out version));
		}
		
		[Test]
		public void PrefixPath_Get_ReturnsValidPath()
		{
			//act
			string prefixPath = _manager.PrefixPath;
			
			//assert
			Assert.That (Directory.Exists(prefixPath), Is.True);
		}
		
		[Test]
		public void ConfigPath_Get_ReturnsValidPath()
		{
			//act
			string configPath = _manager.ConfigPath;
			
			//assert
			Assert.That (Directory.Exists(configPath), Is.True);
		}
		
		[Test]
		public void SetCipherKey_Called_DoesntCrash()
		{
			//act
			_manager.SetCipherKey("ESV", new byte[32]);
		}
		
		[Test]
		public void Javascript_Set_DoesntCrash()
		{
			//act
			_manager.Javascript = true;
		}
		
		[Test]
		public void AvailableLocales_Get_DoesntCrash()
		{
			//act
			string[] availableLocales = _manager.AvailableLocales.ToArray();
			
			//Assert
			Assert.That (availableLocales.Length > 0);
		}
		
		[Test]
		public void AvailableLocales_Get_ContainsEnglish()
		{
			//act
			string[] availableLocales = _manager.AvailableLocales.ToArray();
			
			//Assert
			Assert.That (availableLocales.Any(locale => locale == "en"));
		}
		
		[Test]
		public void DefaultLocale_SetToEn_DoesntCrash()
		{
			//act
			_manager.DefaultLocale = "en";
		}
		
		[Test]
		public void Translate_EnglishToEnglish_ReturnsOrginal()
		{
			//act
			var result = _manager.Translate("love", "en");
				
			//assert
			Assert.That (result, Is.EqualTo("love"));
		}
	}
}