blob: cad4551ba7af1d809847dcbe919229d7c897bf01 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.camel.component.cm.test;
import com.google.i18n.phonenumbers.PhoneNumberUtil;
import com.google.i18n.phonenumbers.PhoneNumberUtil.PhoneNumberFormat;
import org.apache.camel.component.cm.CMConstants;
import org.apache.camel.component.cm.CMMessage;
import org.junit.Before;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.test.context.ContextConfiguration;
import org.springframework.test.context.junit4.AbstractJUnit4SpringContextTests;
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
import org.springframework.util.Assert;
@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration(classes = { ValidatorConfiguration.class })
// @DirtiesContext(classMode = ClassMode.AFTER_EACH_TEST_METHOD)
// @DisableJmx(false)
// @FixMethodOrder(MethodSorters.NAME_ASCENDING)
public class CMMessageTest extends AbstractJUnit4SpringContextTests {
private final PhoneNumberUtil pnu = PhoneNumberUtil.getInstance();
private String validNumber;
@Before
public void beforeTest() throws Exception {
validNumber = pnu.format(pnu.getExampleNumber("ES"), PhoneNumberFormat.E164);
}
// @After
// public void afterTest() {
/*
* GSM0338
*/
@Test
public void testGSM338AndLTMAXGSMMESSAGELENGTH() throws Exception {
// 0338 and less than 160 char -> 1 part
StringBuffer message = new StringBuffer();
for (int index = 0; index < CMConstants.MAX_GSM_MESSAGE_LENGTH; index++) {
message.append("a");
}
final CMMessage cmMessage = new CMMessage(validNumber, message.toString());
cmMessage.setUnicodeAndMultipart(CMConstants.DEFAULT_MULTIPARTS);
Assert.isTrue(cmMessage.getMultiparts() == 1);
Assert.isTrue(!cmMessage.isUnicode());
}
@Test
public void testGSM338AndEQMAXGSMMESSAGELENGTH() throws Exception {
// 0338 and length is exactly 160 -> 1 part
StringBuffer message = new StringBuffer();
for (int index = 0; index < CMConstants.MAX_GSM_MESSAGE_LENGTH; index++) {
message.append("a");
}
final CMMessage cmMessage = new CMMessage(validNumber, message.toString());
cmMessage.setUnicodeAndMultipart(CMConstants.DEFAULT_MULTIPARTS);
Assert.isTrue(cmMessage.getMultiparts() == 1);
Assert.isTrue(!cmMessage.isUnicode());
}
@Test
public void testGSM338AndGTMAXGSMMESSAGELENGTH() throws Exception {
// 0338 and length is exactly 161 -> 2 part
StringBuffer message = new StringBuffer();
for (int index = 0; index < CMConstants.MAX_GSM_MESSAGE_LENGTH + 1; index++) {
message.append("a");
}
final CMMessage cmMessage = new CMMessage(validNumber, message.toString());
cmMessage.setUnicodeAndMultipart(CMConstants.DEFAULT_MULTIPARTS);
Assert.isTrue(cmMessage.getMultiparts() == 2);
Assert.isTrue(!cmMessage.isUnicode());
}
@Test
public void testGSM338AndLT2MAXGSMMESSAGELENGTH() throws Exception {
StringBuffer message = new StringBuffer();
for (int index = 0; index < (2 * CMConstants.MAX_GSM_MESSAGE_LENGTH_PER_PART_IF_MULTIPART - 1); index++) {
message.append("a");
}
final CMMessage cmMessage = new CMMessage(validNumber, message.toString());
cmMessage.setUnicodeAndMultipart(CMConstants.DEFAULT_MULTIPARTS);
Assert.isTrue(cmMessage.getMultiparts() == 2);
Assert.isTrue(!cmMessage.isUnicode());
}
@Test
public void testGSM338AndEQ2MAXGSMMESSAGELENGTH() throws Exception {
StringBuffer message = new StringBuffer();
for (int index = 0; index < (2 * CMConstants.MAX_GSM_MESSAGE_LENGTH_PER_PART_IF_MULTIPART); index++) {
message.append("a");
}
final CMMessage cmMessage = new CMMessage(validNumber, message.toString());
cmMessage.setUnicodeAndMultipart(CMConstants.DEFAULT_MULTIPARTS);
Assert.isTrue(cmMessage.getMultiparts() == 2);
Assert.isTrue(!cmMessage.isUnicode());
}
@Test
public void testGSM338AndGT2MAXGSMMESSAGELENGTH() throws Exception {
StringBuffer message = new StringBuffer();
for (int index = 0; index < (2 * CMConstants.MAX_GSM_MESSAGE_LENGTH_PER_PART_IF_MULTIPART + 1); index++) {
message.append("a");
}
final CMMessage cmMessage = new CMMessage(validNumber, message.toString());
cmMessage.setUnicodeAndMultipart(CMConstants.DEFAULT_MULTIPARTS);
Assert.isTrue(cmMessage.getMultiparts() == 3);
Assert.isTrue(!cmMessage.isUnicode());
}
@Test
public void testGSM338AndEQ8MAXGSMMESSAGELENGTH() throws Exception {
StringBuffer message = new StringBuffer();
for (int index = 0; index < (8 * CMConstants.MAX_GSM_MESSAGE_LENGTH_PER_PART_IF_MULTIPART); index++) {
message.append("a");
}
final CMMessage cmMessage = new CMMessage(validNumber, message.toString());
cmMessage.setUnicodeAndMultipart(CMConstants.DEFAULT_MULTIPARTS);
Assert.isTrue(cmMessage.getMultiparts() == 8);
Assert.isTrue(!cmMessage.isUnicode());
}
@Test
public void testGSM338AndGT8MAXGSMMESSAGELENGTH() throws Exception {
StringBuffer message = new StringBuffer();
for (int index = 0; index < (8 * CMConstants.MAX_GSM_MESSAGE_LENGTH_PER_PART_IF_MULTIPART + 1); index++) {
message.append("a");
}
final CMMessage cmMessage = new CMMessage(validNumber, message.toString());
cmMessage.setUnicodeAndMultipart(CMConstants.DEFAULT_MULTIPARTS);
Assert.isTrue(cmMessage.getMultiparts() == 8);
Assert.isTrue(!cmMessage.isUnicode());
}
/*
* Unicode Messages
*/
@Test
public void testUnicodeAndLTMAXGSMMESSAGELENGTH() throws Exception {
String ch = "\uF400";
// 0338 and less than 160 char -> 1 part
StringBuffer message = new StringBuffer();
for (int index = 0; index < CMConstants.MAX_UNICODE_MESSAGE_LENGTH; index++) {
message.append(ch);
}
final CMMessage cmMessage = new CMMessage(validNumber, message.toString());
cmMessage.setUnicodeAndMultipart(CMConstants.DEFAULT_MULTIPARTS);
Assert.isTrue(cmMessage.getMultiparts() == 1);
Assert.isTrue(cmMessage.isUnicode());
}
@Test
public void testUnicodeAndEQMAXGSMMESSAGELENGTH() throws Exception {
// 0338 and length is exactly 160 -> 1 part
String ch = "\uF400";
StringBuffer message = new StringBuffer();
for (int index = 0; index < CMConstants.MAX_UNICODE_MESSAGE_LENGTH; index++) {
message.append(ch);
}
final CMMessage cmMessage = new CMMessage(validNumber, message.toString());
cmMessage.setUnicodeAndMultipart(CMConstants.DEFAULT_MULTIPARTS);
Assert.isTrue(cmMessage.getMultiparts() == 1);
Assert.isTrue(cmMessage.isUnicode());
}
@Test
public void testUnicodeAndGTMAXGSMMESSAGELENGTH() throws Exception {
// 0338 and length is exactly 161 -> 2 part
String ch = "\uF400";
StringBuffer message = new StringBuffer();
for (int index = 0; index < CMConstants.MAX_UNICODE_MESSAGE_LENGTH + 1; index++) {
message.append(ch);
}
final CMMessage cmMessage = new CMMessage(validNumber, message.toString());
cmMessage.setUnicodeAndMultipart(CMConstants.DEFAULT_MULTIPARTS);
Assert.isTrue(cmMessage.getMultiparts() == 2);
Assert.isTrue(cmMessage.isUnicode());
}
@Test
public void testUnicodeAndLT2MAXGSMMESSAGELENGTH() throws Exception {
String ch = "\uF400";
StringBuffer message = new StringBuffer();
for (int index = 0; index < (2 * CMConstants.MAX_UNICODE_MESSAGE_LENGTH_PER_PART_IF_MULTIPART - 1); index++) {
message.append(ch);
}
final CMMessage cmMessage = new CMMessage(validNumber, message.toString());
cmMessage.setUnicodeAndMultipart(CMConstants.DEFAULT_MULTIPARTS);
Assert.isTrue(cmMessage.getMultiparts() == 2);
Assert.isTrue(cmMessage.isUnicode());
}
@Test
public void testUnicodeAndEQ2MAXGSMMESSAGELENGTH() throws Exception {
String ch = "\uF400";
StringBuffer message = new StringBuffer();
for (int index = 0; index < (2 * CMConstants.MAX_UNICODE_MESSAGE_LENGTH_PER_PART_IF_MULTIPART); index++) {
message.append(ch);
}
final CMMessage cmMessage = new CMMessage(validNumber, message.toString());
cmMessage.setUnicodeAndMultipart(CMConstants.DEFAULT_MULTIPARTS);
Assert.isTrue(cmMessage.getMultiparts() == 2);
Assert.isTrue(cmMessage.isUnicode());
}
@Test
public void testUnicodeAndGT2MAXGSMMESSAGELENGTH() throws Exception {
String ch = "\uF400";
StringBuffer message = new StringBuffer();
for (int index = 0; index < (2 * CMConstants.MAX_UNICODE_MESSAGE_LENGTH_PER_PART_IF_MULTIPART + 1); index++) {
message.append(ch);
}
final CMMessage cmMessage = new CMMessage(validNumber, message.toString());
cmMessage.setUnicodeAndMultipart(CMConstants.DEFAULT_MULTIPARTS);
Assert.isTrue(cmMessage.getMultiparts() == 3);
Assert.isTrue(cmMessage.isUnicode());
}
@Test
public void testUnicodeAndEQ8MAXGSMMESSAGELENGTH() throws Exception {
String ch = "\uF400";
StringBuffer message = new StringBuffer();
for (int index = 0; index < (8 * CMConstants.MAX_UNICODE_MESSAGE_LENGTH_PER_PART_IF_MULTIPART); index++) {
message.append(ch);
}
final CMMessage cmMessage = new CMMessage(validNumber, message.toString());
cmMessage.setUnicodeAndMultipart(CMConstants.DEFAULT_MULTIPARTS);
Assert.isTrue(cmMessage.getMultiparts() == 8);
Assert.isTrue(cmMessage.isUnicode());
}
@Test
public void testUnicodeAndGT8MAXGSMMESSAGELENGTH() throws Exception {
String ch = "\uF400";
StringBuffer message = new StringBuffer();
for (int index = 0; index < (8 * CMConstants.MAX_GSM_MESSAGE_LENGTH_PER_PART_IF_MULTIPART + 1); index++) {
message.append(ch);
}
final CMMessage cmMessage = new CMMessage(validNumber, message.toString());
cmMessage.setUnicodeAndMultipart(CMConstants.DEFAULT_MULTIPARTS);
Assert.isTrue(cmMessage.getMultiparts() == 8);
Assert.isTrue(cmMessage.isUnicode());
}
}