Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ConsoleTest.cs « System « Test « corlib « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: da9490176307083fc9c9fb4f04401e2a130db378 (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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
// ConsoleTest.cs - NUnit Test Cases for the System.Console class
//
// David Brandt (bucky@keystreams.com)
//
// (C) Ximian, Inc.  http://www.ximian.com
// 

using NUnit.Framework;
using System;
using System.IO;


namespace MonoTests.System
{

public class ConsoleTest : TestCase
{
	public ConsoleTest() : base ("MonoTests.System.ConsoleTest testsuite") {}
	public ConsoleTest(string name) : base(name) {}

	TextWriter _err;
	TextReader _in;
	TextWriter _out;
	protected override void SetUp() 
	{
		_err = Console.Error;
		_in = Console.In;
		_out = Console.Out;
	}

	protected override void TearDown() 
	{
		Console.SetError(_err);
		Console.SetIn(_in);
		Console.SetOut(_out);
	}

	public static ITest Suite {
		get { 
			return new TestSuite(typeof(ConsoleTest)); 
		}
	}

	public void TestError() {
		AssertNotNull("No error", Console.Error);
	}

	public void TestIn() {
		AssertNotNull("No in", Console.In);
	}

	public void TestOut() {
		AssertNotNull("No out", Console.Out);
	}

	public void TestOpenStandardError() {
		{
			Stream err = Console.OpenStandardError();
			AssertNotNull("Can't open error", err);
		}
		{
			Stream err = Console.OpenStandardError(512);
			AssertNotNull("Can't open error", err);
		}
		// Spec says these are here, MS implementation says no.
		//{
		//bool errorThrown = false;
		//try {
		//Stream err = Console.OpenStandardError(-1);
		//} catch (ArgumentOutOfRangeException) {
		//errorThrown = true;
		//}
		//Assert("negative buffer error not thrown", 
		//errorThrown);
		//}
		//{
		//bool errorThrown = false;
		//try {
		//Stream err = Console.OpenStandardError(0);
		//} catch (ArgumentOutOfRangeException) {
		//errorThrown = true;
		//}
		//Assert("zero buffer error not thrown", errorThrown);
		//}
	}

	public void TestOpenStandardInput() {
		{
			Stream in1 = Console.OpenStandardInput();
			AssertNotNull("Can't open input", in1);
		}
		{
			Stream in1 = Console.OpenStandardInput(512);
			AssertNotNull("Can't open input", in1);
		}
		// see commented-out tests in TestOpenStandardError
	}
	
	public void TestOpenStandardOutput() {
		{
			Stream out1 = Console.OpenStandardOutput();
			AssertNotNull("Can't open output", out1);
		}
		{
			Stream out1 = Console.OpenStandardOutput(512);
			AssertNotNull("Can't open output", out1);
		}
		// see commented-out tests in TestOpenStandardError
	}
	
	public void TestRead() {
		String testStr = "This is a readline test";
		Stream s = new MemoryStream();
		TextWriter w = new StreamWriter(s);
		((StreamWriter)w).AutoFlush = true;
		TextReader r = new StreamReader(s);
		Console.SetIn(r);
		w.WriteLine(testStr);
		s.Position = 0;
		char val = (char) Console.Read();
		AssertEquals("Wrong read", 'T', val);
	}

	public void TestReadLine() {
		String testStr = "This is a readline test";
		Stream s = new MemoryStream();
		TextWriter w = new StreamWriter(s);
		((StreamWriter)w).AutoFlush = true;
		TextReader r = new StreamReader(s);
		Console.SetIn(r);
		w.WriteLine(testStr);
		s.Position = 0;
		String line = Console.ReadLine();
		AssertEquals("Wrong line", testStr, line);
	}

	public void TestSetError() {
		{
			bool errorThrown = false;
			try {
				Console.SetError(null);
			} catch (ArgumentNullException) {
				errorThrown = true;
			}
			Assert("null error error not thrown", errorThrown);
		}
		{
			String testStr = "This is a stderr test";
			Stream s = new MemoryStream();
			TextWriter w = new StreamWriter(s);
			((StreamWriter)w).AutoFlush = true;
			TextReader r = new StreamReader(s);
			Console.SetError(w);
			Console.Error.WriteLine(testStr);
			s.Position = 0;
			String line = r.ReadLine();
			AssertEquals("Wrong line", testStr, line);
		}
	}

	public void TestSetIn() {
		{
			bool errorThrown = false;
			try {
				Console.SetIn(null);
			} catch (ArgumentNullException) {
				errorThrown = true;
			}
			Assert("null in error not thrown", errorThrown);
		}
		{
			String testStr = "This is a stdin test";
			Stream s = new MemoryStream();
			TextWriter w = new StreamWriter(s);
			((StreamWriter)w).AutoFlush = true;
			TextReader r = new StreamReader(s);
			Console.SetIn(r);
			w.WriteLine(testStr);
			s.Position = 0;
			String line = Console.In.ReadLine();
			AssertEquals("Wrong line", testStr, line);
		}
	}

	public void TestSetOut() {
		{
			bool errorThrown = false;
			try {
				Console.SetOut(null);
			} catch (ArgumentNullException) {
				errorThrown = true;
			}
			Assert("null out error not thrown", errorThrown);
		}
		{
			String testStr = "This is a stdout test";
			Stream s = new MemoryStream();
			TextWriter w = new StreamWriter(s);
			((StreamWriter)w).AutoFlush = true;
			TextReader r = new StreamReader(s);
			Console.SetOut(w);
			Console.Out.WriteLine(testStr);
			s.Position = 0;
			String line = r.ReadLine();
			AssertEquals("Wrong line", testStr, line);
		}
	}

	public void TestWrite() {
		Stream s = new MemoryStream();
		TextWriter w = new StreamWriter(s);
		((StreamWriter)w).AutoFlush = true;
		TextReader r = new StreamReader(s);
		Console.SetOut(w);

		long endPos = 0;

		String testStr = "This is a stdout write test";
		Console.Write(testStr);
		s.Position = endPos;
		String line = r.ReadToEnd();
		AssertEquals("Wrong line", testStr, line);
		endPos = s.Position;

		Boolean[] booleans = {true, false};
		foreach (bool b in booleans ) {
			Console.Write(b);
			s.Position = endPos;
			line = r.ReadToEnd();
			AssertEquals("Wrong boolean", b.ToString(), line);
			endPos = s.Position;
		}

		Char[] chars = {'a', ';', '?'};
		foreach (Char c in chars ) {
			Console.Write(c);
			s.Position = endPos;
			line = r.ReadToEnd();
			AssertEquals("Wrong char", c.ToString(), line);
			endPos = s.Position;
		}

		// test writing a null value		
		string x = null;
		Console.Write (x);

		// TODO - Likewise for char[], decimal, double, int, long, object, single, uint32, uint64
		// TODO - write with format string
	}

	public void TestWriteLine() {
		Stream s = new MemoryStream();
		TextWriter w = new StreamWriter(s);
		((StreamWriter)w).AutoFlush = true;
		TextReader r = new StreamReader(s);
		Console.SetOut(w);

		long endPos = 0;

		String testStr = "This is a stdout writeline test";
		Console.WriteLine(testStr);
		s.Position = endPos;
		String line = r.ReadLine();
		AssertEquals("Wrong line", testStr, line);
		endPos = s.Position;

		Boolean[] booleans = {true, false};
		foreach (bool b in booleans ) {
			Console.WriteLine(b);
			s.Position = endPos;
			line = r.ReadLine();
			AssertEquals("Wrong boolean", b.ToString(), line);
			endPos = s.Position;
		}

		Char[] chars = {'a', ';', '?'};
		foreach (Char c in chars ) {
			Console.WriteLine(c);
			s.Position = endPos;
			line = r.ReadLine();
			AssertEquals("Wrong char", c.ToString(), line);
			endPos = s.Position;
		}

		// test writing a null value		
		string x = null;
		Console.WriteLine (x);

		// TODO - Likewise for char[], decimal, double, int, long, object, single, uint32, uint64
		// TODO - write with format string
	}

}
}