New test.
[mono.git] / mcs / class / I18N / CJK / Test / I18N.CJK.Test.cs
old mode 100755 (executable)
new mode 100644 (file)
index 88e0a93..dc093c8
@@ -193,19 +193,31 @@ namespace MonoTests.I18N.CJK
                }
 
                [Test]
+#if !NET_2_0
+               [Category ("NotDotNet")] // MS bug
+#endif
                public void Bug77723 ()
                {
-                       Encoding e = Encoding.GetEncoding (51932);
-                       for (int i = 0; i < 0x10000; i++)
-                               e.GetBytes (new char [] { (char)i });
+                       GetBytesAllSingleChars (51932);
                }
 
                [Test]
-               public void Bug77224 ()
+               public void Bug77724 ()
                {
-                       Encoding e = Encoding.GetEncoding (932);
+                       GetBytesAllSingleChars (932);
+               }
+
+               [Test]
+               public void Bug77307 ()
+               {
+                       GetBytesAllSingleChars (54936);
+               }
+
+               void GetBytesAllSingleChars (int enc)
+               {
+                       Encoding e = Encoding.GetEncoding (enc);
                        for (int i = 0; i < 0x10000; i++)
-                               e.GetBytes (new char [] {(char) i});
+                               e.GetBytes (new char [] { (char)i });
                }
 
                void GetCharsAllBytePairs (int enc)
@@ -251,6 +263,243 @@ namespace MonoTests.I18N.CJK
                        GetCharsAllBytePairs (950);
                }
 
+               [Test]
+#if !NET_2_0
+               [Category ("NotDotNet")] // MS bug
+#endif
+               public void Encoder54936Refresh ()
+               {
+                       Encoding e = Encoding.GetEncoding ("gb18030");
+                       Encoder d = e.GetEncoder ();
+                       byte [] bytes;
+
+                       bytes = new byte [4];
+                       Assert.AreEqual (0, d.GetBytes (new char [] {'\uD800'}, 0, 1, bytes, 0, false), "#1");
+                       Assert.AreEqual (new byte [] {00, 00, 00, 00},
+                               bytes, "#2");
+
+                       bytes = new byte [4];
+                       Assert.AreEqual (4, d.GetBytes (new char [] {'\uDC00'}, 0, 1, bytes, 0, true), "#3");
+                       Assert.AreEqual (new byte [] {0x90, 0x30, 0x81, 0x30},
+                               bytes, "#4");
+
+                       bytes = new byte [4];
+                       Assert.AreEqual (1, d.GetBytes (new char [] {'\uD800'}, 0, 1, bytes, 0, true), "#5");
+                       Assert.AreEqual (new byte [] {0x3F, 00, 00, 00},
+                               bytes, "#6");
+               }
+
+#if NET_2_0
+               [Test]
+               public void Decoder932Refresh ()
+               {
+                       Encoding e = Encoding.GetEncoding (932);
+                       Decoder d = e.GetDecoder ();
+                       char [] chars;
+
+                       chars = new char [1];
+                       Assert.AreEqual (0, d.GetChars (new byte [] {0x81}, 0, 1, chars, 0, false), "#1");
+                       Assert.AreEqual (new char [] {'\0'}, chars, "#2");
+
+                       chars = new char [1];
+                       Assert.AreEqual (1, d.GetChars (new byte [] {0x81}, 0, 1, chars, 0, true), "#3");
+                       Assert.AreEqual (new char [] {'\uFF1D'}, chars, "#4");
+
+                       chars = new char [1];
+                       Assert.AreEqual (1, d.GetChars (new byte [] {0x81}, 0, 1, chars, 0, true), "#5");
+                       Assert.AreEqual (new char [] {'\u30FB'}, chars, "#6");
+               }
+
+               [Test]
+               public void Decoder51932Refresh ()
+               {
+                       Encoding e = Encoding.GetEncoding (51932);
+                       Decoder d = e.GetDecoder ();
+                       char [] chars;
+
+                       // invalid one
+                       chars = new char [1];
+                       Assert.AreEqual (1, d.GetChars (new byte [] {0x81}, 0, 1, chars, 0, false), "#0.1");
+                       Assert.AreEqual (new char [] {'\u30FB'}, chars, "#0.2");
+
+                       // incomplete
+                       chars = new char [1];
+                       Assert.AreEqual (0, d.GetChars (new byte [] {0xA1}, 0, 1, chars, 0, false), "#1");
+                       Assert.AreEqual (new char [] {'\0'}, chars, "#2");
+
+                       // became complete
+                       chars = new char [1];
+                       Assert.AreEqual (1, d.GetChars (new byte [] {0xA1}, 0, 1, chars, 0, true), "#3");
+                       Assert.AreEqual (new char [] {'\u3000'}, chars, "#4");
+
+                       // incomplete but refreshed
+                       chars = new char [1];
+                       Assert.AreEqual (1, d.GetChars (new byte [] {0xA1}, 0, 1, chars, 0, true), "#5");
+                       Assert.AreEqual (new char [] {'\u30FB'}, chars, "#6");
+               }
+
+               [Test]
+               public void Decoder936Refresh ()
+               {
+                       Encoding e = Encoding.GetEncoding (936);
+                       Decoder d = e.GetDecoder ();
+                       char [] chars;
+
+                       // incomplete
+                       chars = new char [1];
+                       Assert.AreEqual (0, d.GetChars (new byte [] {0xB0}, 0, 1, chars, 0, false), "#1");
+                       Assert.AreEqual (new char [] {'\0'}, chars, "#2");
+
+                       // became complete
+                       chars = new char [1];
+                       Assert.AreEqual (1, d.GetChars (new byte [] {0xA1}, 0, 1, chars, 0, false), "#3");
+                       Assert.AreEqual (new char [] {'\u554A'}, chars, "#4");
+
+                       // incomplete but refreshed
+                       chars = new char [1];
+                       Assert.AreEqual (1, d.GetChars (new byte [] {0xB0}, 0, 1, chars, 0, true), "#5");
+                       Assert.AreEqual (new char [] {'?'}, chars, "#6");
+               }
+
+               [Test]
+               public void Decoder949Refresh ()
+               {
+                       Encoding e = Encoding.GetEncoding (949);
+                       Decoder d = e.GetDecoder ();
+                       char [] chars;
+
+                       // incomplete
+                       chars = new char [1];
+                       Assert.AreEqual (0, d.GetChars (new byte [] {0x81}, 0, 1, chars, 0, false), "#1");
+                       Assert.AreEqual (new char [] {'\0'}, chars, "#2");
+
+                       // became complete
+                       chars = new char [1];
+                       Assert.AreEqual (1, d.GetChars (new byte [] {0x41}, 0, 1, chars, 0, false), "#3");
+                       Assert.AreEqual (new char [] {'\uAC02'}, chars, "#4");
+
+                       // incomplete but refreshed
+                       chars = new char [1];
+                       Assert.AreEqual (1, d.GetChars (new byte [] {0x81}, 0, 1, chars, 0, true), "#5");
+                       Assert.AreEqual (new char [] {'?'}, chars, "#6");
+               }
+
+               [Test]
+               public void Decoder950Refresh ()
+               {
+                       Encoding e = Encoding.GetEncoding (950);
+                       Decoder d = e.GetDecoder ();
+                       char [] chars;
+
+                       // incomplete
+                       chars = new char [1];
+                       Assert.AreEqual (0, d.GetChars (new byte [] {0xF9}, 0, 1, chars, 0, false), "#1");
+                       Assert.AreEqual (new char [] {'\0'}, chars, "#2");
+
+                       // became complete
+                       chars = new char [1];
+                       Assert.AreEqual (1, d.GetChars (new byte [] {0x40}, 0, 1, chars, 0, false), "#3");
+                       Assert.AreEqual (new char [] {'\u7E98'}, chars, "#4");
+
+                       // incomplete but refreshed
+                       chars = new char [1];
+                       Assert.AreEqual (1, d.GetChars (new byte [] {0xF9}, 0, 1, chars, 0, true), "#5");
+                       Assert.AreEqual (new char [] {'?'}, chars, "#6");
+               }
+#endif
+
+
+               [Test]
+               public void Decoder51932NoRefresh ()
+               {
+                       Encoding e = Encoding.GetEncoding (51932);
+                       Decoder d = e.GetDecoder ();
+                       char [] chars;
+
+                       // incomplete
+                       chars = new char [1];
+                       Assert.AreEqual (0, d.GetChars (new byte [] {0xA1}, 0, 1, chars, 0), "#1");
+                       Assert.AreEqual (new char [] {'\0'}, chars, "#2");
+
+                       // became complete
+                       chars = new char [1];
+                       Assert.AreEqual (1, d.GetChars (new byte [] {0xA1}, 0, 1, chars, 0), "#3");
+                       Assert.AreEqual (new char [] {'\u3000'}, chars, "#4");
+
+                       // incomplete but refreshed
+                       chars = new char [1];
+                       Assert.AreEqual (0, d.GetChars (new byte [] {0xA1}, 0, 1, chars, 0), "#5");
+                       Assert.AreEqual (new char [] {'\0'}, chars, "#6");
+               }
+
+               [Test]
+               public void Decoder936NoRefresh ()
+               {
+                       Encoding e = Encoding.GetEncoding (936);
+                       Decoder d = e.GetDecoder ();
+                       char [] chars;
+
+                       // incomplete
+                       chars = new char [1];
+                       Assert.AreEqual (0, d.GetChars (new byte [] {0xB0}, 0, 1, chars, 0), "#1");
+                       Assert.AreEqual (new char [] {'\0'}, chars, "#2");
+
+                       // became complete
+                       chars = new char [1];
+                       Assert.AreEqual (1, d.GetChars (new byte [] {0xA1}, 0, 1, chars, 0), "#3");
+                       Assert.AreEqual (new char [] {'\u554A'}, chars, "#4");
+
+                       // incomplete but refreshed
+                       chars = new char [1];
+                       Assert.AreEqual (0, d.GetChars (new byte [] {0xB0}, 0, 1, chars, 0), "#5");
+                       Assert.AreEqual (new char [] {'\0'}, chars, "#6");
+               }
+
+               [Test]
+               public void Decoder949NoRefresh ()
+               {
+                       Encoding e = Encoding.GetEncoding (949);
+                       Decoder d = e.GetDecoder ();
+                       char [] chars;
+
+                       // incomplete
+                       chars = new char [1];
+                       Assert.AreEqual (0, d.GetChars (new byte [] {0x81}, 0, 1, chars, 0), "#1");
+                       Assert.AreEqual (new char [] {'\0'}, chars, "#2");
+
+                       // became complete
+                       chars = new char [1];
+                       Assert.AreEqual (1, d.GetChars (new byte [] {0x41}, 0, 1, chars, 0), "#3");
+                       Assert.AreEqual (new char [] {'\uAC02'}, chars, "#4");
+
+                       // incomplete but refreshed
+                       chars = new char [1];
+                       Assert.AreEqual (0, d.GetChars (new byte [] {0x81}, 0, 1, chars, 0), "#5");
+                       Assert.AreEqual (new char [] {'\0'}, chars, "#6");
+               }
+
+               [Test]
+               public void Decoder950NoRefresh ()
+               {
+                       Encoding e = Encoding.GetEncoding (950);
+                       Decoder d = e.GetDecoder ();
+                       char [] chars;
+
+                       // incomplete
+                       chars = new char [1];
+                       Assert.AreEqual (0, d.GetChars (new byte [] {0xF9}, 0, 1, chars, 0), "#1");
+                       Assert.AreEqual (new char [] {'\0'}, chars, "#2");
+
+                       // became complete
+                       chars = new char [1];
+                       Assert.AreEqual (1, d.GetChars (new byte [] {0x40}, 0, 1, chars, 0), "#3");
+                       Assert.AreEqual (new char [] {'\u7E98'}, chars, "#4");
+
+                       // incomplete but refreshed
+                       chars = new char [1];
+                       Assert.AreEqual (0, d.GetChars (new byte [] {0xF9}, 0, 1, chars, 0), "#5");
+                       Assert.AreEqual (new char [] {'\0'}, chars, "#6");
+               }
                #endregion
 
                #region Korean