/protocols/smpp/src/test/java/org/mobicents/protocols/smpp/encoding/UCS2EncodingTest.java
Java | 63 lines | 33 code | 9 blank | 21 comment | 0 complexity | 3d06f1ff631661f09c4be039393b5d1f MD5 | raw file
1/* 2 * JBoss, Home of Professional Open Source 3 * Copyright 2011, Red Hat, Inc. and individual contributors 4 * by the @authors tag. See the copyright.txt in the distribution for a 5 * full listing of individual contributors. 6 * 7 * This is free software; you can redistribute it and/or modify it 8 * under the terms of the GNU Lesser General Public License as 9 * published by the Free Software Foundation; either version 2.1 of 10 * the License, or (at your option) any later version. 11 * 12 * This software is distributed in the hope that it will be useful, 13 * but WITHOUT ANY WARRANTY; without even the implied warranty of 14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 15 * Lesser General Public License for more details. 16 * 17 * You should have received a copy of the GNU Lesser General Public 18 * License along with this software; if not, write to the Free 19 * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 20 * 02110-1301 USA, or see the FSF site: http://www.fsf.org. 21 */ 22 23package org.mobicents.protocols.smpp.encoding; 24 25import java.io.UnsupportedEncodingException; 26 27import org.mobicents.protocols.smpp.encoding.UCS2Encoding; 28import org.testng.annotations.Test; 29 30@Test 31public class UCS2EncodingTest extends BaseAlphabetEncodingTest<UCS2Encoding> { 32 private static final String STRING = 33 "abcdefJKLMN1234567890\u00c0\u00c3\u20ac"; 34 35 private static final int[] BYTES = { 36 0x00, 0x61, 0x00, 0x62, 0x00, 0x63, 0x00, 0x64, 37 0x00, 0x65, 0x00, 0x66, 0x00, 0x4a, 0x00, 0x4b, 38 0x00, 0x4c, 0x00, 0x4d, 0x00, 0x4e, 0x00, 0x31, 39 0x00, 0x32, 0x00, 0x33, 0x00, 0x34, 0x00, 0x35, 40 0x00, 0x36, 0x00, 0x37, 0x00, 0x38, 0x00, 0x39, 41 0x00, 0x30, 0x00, 0xc0, 0x00, 0xc3, 0x20, 0xac, 42 }; 43 44 @Override 45 protected TestData getArrayToDecode() { 46 return new TestData(STRING, BYTES); 47 } 48 49 @Override 50 protected UCS2Encoding getEncodingToTest() throws UnsupportedEncodingException { 51 return new UCS2Encoding(); 52 } 53 54 @Override 55 protected TestData getFullySupportedStringToEncode() { 56 return new TestData(BYTES, STRING); 57 } 58 59 @Override 60 protected TestData getPartiallySupportedStringToEncode() { 61 return new TestData(BYTES, STRING); 62 } 63}