/*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation.
*
* This code 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
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*/
/* @test
@bug 6803681
@summary Test IBM1364
*/
public class TestIBM1364 {
private static byte[] c2bNRBytes = new byte[] {
(byte)0x0e,
(byte)0x41, (byte)0x48,
(byte)0x41, (byte)0x43,
(byte)0x41, (byte)0x49,
(byte)0x42, (byte)0xa1,
(byte)0x49, (byte)0x6f,
(byte)0x49, (byte)0x54,
(byte)0x0f };
// end at SO
private static byte[] mixedBytes = new byte[] {
(byte)0x09,
(byte)0x0a,
(byte)0x40,
(byte)0x0e,
(byte)0x40, (byte)0x40,
(byte)0x41, (byte)0x41,
(byte)0x6c, (byte)0x45,
(byte)0x84, (byte)0x41,
(byte)0x0f,
(byte)0x28,
(byte)0x0e,
(byte)0xdd, (byte)0xfd,
(byte)0x0f };
// end at SI
private static byte[] mixedBytes2 = new byte[] {
(byte)0x09,
(byte)0x0a,
(byte)0x40,
(byte)0x0e,
(byte)0x40, (byte)0x40,
(byte)0x41, (byte)0x41,
(byte)0x6c, (byte)0x45,
(byte)0x84, (byte)0x41,
(byte)0x0f,
(byte)0x28 };
private static byte[][] malformedBytes = {
{ (byte)0x0e,
(byte)0x039, (byte)0x40,
(byte)0x0f
},
{ (byte)0x0e,
(byte)0x039, (byte)0x42,
(byte)0x0f
},
{ (byte)0x0e,
(byte)0x040, (byte)0x41,
(byte)0x0f
},
{ (byte)0x0e,
(byte)0x040, (byte)0xee,
(byte)0x0f
},
{ (byte)0x0e,
(byte)0x0ef, (byte)0x30,
(byte)0x0f
},
{ (byte)0x0e,
(byte)0x0ff, (byte)0x41,
(byte)0x0f
}
};
private static byte[][] unmappedBytes = {
{ (byte)0x0e,
(byte)0x06c, (byte)0x46,
(byte)0x0f,
},
{ (byte)0x0e,
(byte)0x078, (byte)0x46,
(byte)0x0f,
},
{ (byte)0x0e,
(byte)0x083, (byte)0xfe,
(byte)0x0f,
},
{ (byte)0xfa },
{ (byte)0xfe },
};
throw new RuntimeException("cp1364 failed on mixed!");
throw new RuntimeException("cp1364 failed on mixed!");
throw new RuntimeException("cp1364 failed on c2bNR!");
throw new RuntimeException("cp1364 failed on direct decod()!");
throw new RuntimeException("cp1364 failed on direct decod()!");
throw new RuntimeException("cp1364 failed on direct encode()!");
throw new RuntimeException("cp1364 failed on direct encode()!");
// malformed
for (byte[] ba:malformedBytes) {
throw new RuntimeException("cp1364 failed on decode()/malformed!");
}
//unmappable
for (byte[] ba:unmappedBytes) {
throw new RuntimeException("cp1364 failed on decode()/unmappable!");
}
//overflow
throw new RuntimeException("cp1364 failed on decode()/overflow!");
// last "0x0f" is from flush()
.isOverflow() ||
.isOverflow())
throw new RuntimeException("cp1364 failed on encode()/overflow!");
// flush() overflow
throw new RuntimeException("cp1364 failed on encode()/flush()/overflow!");
}
}