blob: 1b20dc0fc4d0b8d9cac93a2c3f857a7650f16cde [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.hazelcast;
import org.apache.camel.builder.RouteBuilder;
import org.apache.camel.test.junit4.CamelTestSupport;
import org.junit.Test;
public class HazelcastAtomicnumberProducerTest extends CamelTestSupport {
@Test
public void testSet() {
template.sendBody("direct:set", 4711);
long body = template.requestBody("direct:get", null, Long.class);
assertEquals(4711, body);
}
@Test
public void testGet() {
template.sendBody("direct:set", 1234);
long body = template.requestBody("direct:get", null, Long.class);
assertEquals(1234, body);
}
@Test
public void testIncrement() {
template.sendBody("direct:set", 10);
long body = template.requestBody("direct:increment", null, Long.class);
assertEquals(11, body);
}
@Test
public void testDecrement() {
template.sendBody("direct:set", 10);
long body = template.requestBody("direct:decrement", null, Long.class);
assertEquals(9, body);
}
/*
* will be fixed in next hazelcast version (1.9.3). Mail from Talip (21.02.2011):
*
* I see. Hazelcast.shutdownAll() should cleanup instances (maps/queues). I just fixed it.
*
* AtomicNumber.destroy() should also destroy the number and if you call atomicNumber.get() after the destroy it should throw IllegalStateException. It is also fixed.
*
* set test to true by default. TODO: if we'll get the new hazelcast version I'll fix the test.
*/
@Test
public void testDestroy() {
template.sendBody("direct:set", 10);
template.sendBody("direct:destroy", null);
// assertTrue(Hazelcast.getInstances().isEmpty());
}
@Override
protected RouteBuilder createRouteBuilder() throws Exception {
return new RouteBuilder() {
@Override
public void configure() throws Exception {
from("direct:set").setHeader(HazelcastConstants.OPERATION, constant(HazelcastConstants.SETVALUE_OPERATION))
.to(String.format("hazelcast:%sfoo", HazelcastConstants.ATOMICNUMBER_PREFIX));
from("direct:get").setHeader(HazelcastConstants.OPERATION, constant(HazelcastConstants.GET_OPERATION)).to(String.format("hazelcast:%sfoo", HazelcastConstants.ATOMICNUMBER_PREFIX));
from("direct:increment").setHeader(HazelcastConstants.OPERATION, constant(HazelcastConstants.INCREMENT_OPERATION)).to(
String.format("hazelcast:%sfoo", HazelcastConstants.ATOMICNUMBER_PREFIX));
from("direct:decrement").setHeader(HazelcastConstants.OPERATION, constant(HazelcastConstants.DECREMENT_OPERATION)).to(
String.format("hazelcast:%sfoo", HazelcastConstants.ATOMICNUMBER_PREFIX));
from("direct:destroy").setHeader(HazelcastConstants.OPERATION, constant(HazelcastConstants.DESTROY_OPERATION)).to(
String.format("hazelcast:%sfoo", HazelcastConstants.ATOMICNUMBER_PREFIX));
}
};
}
}