blob: 66f15bdd15480d97799588b903ec2c92d45c6709 [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.qpid.proton.codec;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertNotNull;
import static org.junit.Assert.assertTrue;
import java.io.IOException;
import java.util.LinkedHashMap;
import java.util.Map;
import org.apache.qpid.proton.amqp.messaging.ApplicationProperties;
import org.junit.Test;
public class ApplicationPropertiesCodecTest extends CodecTestSupport {
private final int LARGE_SIZE = 1024;
private final int SMALL_SIZE = 32;
@Test
public void testDecodeSmallSeriesOfApplicationProperties() throws IOException {
doTestDecodeHeaderSeries(SMALL_SIZE);
}
@Test
public void testDecodeLargeSeriesOfApplicationProperties() throws IOException {
doTestDecodeHeaderSeries(LARGE_SIZE);
}
private void doTestDecodeHeaderSeries(int size) throws IOException {
Map<String, Object> propertiesMap = new LinkedHashMap<>();
ApplicationProperties properties = new ApplicationProperties(propertiesMap);
propertiesMap.put("key-1", "1");
propertiesMap.put("key-2", "2");
propertiesMap.put("key-3", "3");
propertiesMap.put("key-4", "4");
propertiesMap.put("key-5", "5");
propertiesMap.put("key-6", "6");
propertiesMap.put("key-7", "7");
propertiesMap.put("key-8", "8");
for (int i = 0; i < size; ++i) {
encoder.writeObject(properties);
}
buffer.clear();
for (int i = 0; i < size; ++i) {
final Object result = decoder.readObject();
assertNotNull(result);
assertTrue(result instanceof ApplicationProperties);
ApplicationProperties decoded = (ApplicationProperties) result;
assertEquals(8, decoded.getValue().size());
assertTrue(decoded.getValue().equals(propertiesMap));
}
}
}