2007-10-25 Atsushi Enomoto <atsushi@ximian.com>
[mono.git] / mcs / class / corlib / Test / System.Text / DecoderTest.cs
1 //
2 // DecoderTest.cs
3 //
4 // Author:
5 //      Atsushi Enomoto  <atsushi@ximian.com>
6 //
7 // (C) 2006 Novell, Inc.
8 // 
9 using NUnit.Framework;
10 using System;
11 using System.Text;
12
13 namespace MonoTests.System.Text
14 {
15         [TestFixture]
16         public class DecoderTest
17         {
18 #if NET_2_0
19                 [Test]
20                 [ExpectedException (typeof (ArgumentNullException))]
21                 public void ConvertNullChars ()
22                 {
23                         int charsUsed, bytesUsed;
24                         bool done;
25                         Encoding.UTF8.GetDecoder ().Convert (
26                                 null, 0, 100, new char [100], 0, 100, false,
27                                 out charsUsed, out bytesUsed, out done);
28                 }
29
30                 [Test]
31                 [ExpectedException (typeof (ArgumentNullException))]
32                 public void ConvertNullBytes ()
33                 {
34                         int charsUsed, bytesUsed;
35                         bool done;
36                         Encoding.UTF8.GetDecoder ().Convert (
37                                 new byte [100], 0, 100, null, 0, 100, false,
38                                 out charsUsed, out bytesUsed, out done);
39                 }
40
41                 [Test]
42                 public void ConvertLimitedDestination ()
43                 {
44                         char [] chars = new char [10000];
45                         byte [] bytes = new byte [10000];
46
47                         Decoder conv = Encoding.UTF8.GetDecoder ();
48                         int charsUsed, bytesUsed;
49                         bool done;
50
51                         conv.Convert (bytes, 0, 10000, chars, 0, 1000, true,
52                                       out charsUsed, out bytesUsed, out done);
53
54                         Assert.IsFalse (done, "#1");
55                         Assert.AreEqual (625, charsUsed, "#2");
56                         Assert.AreEqual (625, bytesUsed, "#3");
57                 }
58 #endif
59         }
60 }