/protocols/smpp/src/test/java/org/mobicents/protocols/smpp/encoding/UCS2EncodingTest.java

http://mobicents.googlecode.com/ · 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. package org.mobicents.protocols.smpp.encoding;
  23. import java.io.UnsupportedEncodingException;
  24. import org.mobicents.protocols.smpp.encoding.UCS2Encoding;
  25. import org.testng.annotations.Test;
  26. @Test
  27. public class UCS2EncodingTest extends BaseAlphabetEncodingTest<UCS2Encoding> {
  28. private static final String STRING =
  29. "abcdefJKLMN1234567890\u00c0\u00c3\u20ac";
  30. private static final int[] BYTES = {
  31. 0x00, 0x61, 0x00, 0x62, 0x00, 0x63, 0x00, 0x64,
  32. 0x00, 0x65, 0x00, 0x66, 0x00, 0x4a, 0x00, 0x4b,
  33. 0x00, 0x4c, 0x00, 0x4d, 0x00, 0x4e, 0x00, 0x31,
  34. 0x00, 0x32, 0x00, 0x33, 0x00, 0x34, 0x00, 0x35,
  35. 0x00, 0x36, 0x00, 0x37, 0x00, 0x38, 0x00, 0x39,
  36. 0x00, 0x30, 0x00, 0xc0, 0x00, 0xc3, 0x20, 0xac,
  37. };
  38. @Override
  39. protected TestData getArrayToDecode() {
  40. return new TestData(STRING, BYTES);
  41. }
  42. @Override
  43. protected UCS2Encoding getEncodingToTest() throws UnsupportedEncodingException {
  44. return new UCS2Encoding();
  45. }
  46. @Override
  47. protected TestData getFullySupportedStringToEncode() {
  48. return new TestData(BYTES, STRING);
  49. }
  50. @Override
  51. protected TestData getPartiallySupportedStringToEncode() {
  52. return new TestData(BYTES, STRING);
  53. }
  54. }