/** * 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.stringtemplate; import java.util.ArrayList; import java.util.Set; import javax.management.MBeanServer; import javax.management.ObjectName; import org.apache.camel.Exchange; import org.apache.camel.builder.RouteBuilder; import org.apache.camel.component.mock.MockEndpoint; import org.apache.camel.test.junit4.CamelTestSupport; import org.junit.Before; import org.junit.Test; /** * Unit test the cahce when reloading .tm files in the classpath */ public class StringTemplateContentCacheTest extends CamelTestSupport { @Before public void setUp() throws Exception { super.setUp(); // create a tm file in the classpath as this is the tricky reloading stuff template.sendBodyAndHeader("file://target/test-classes/org/apache/camel/component/stringtemplate", "Hello <headers.name>", Exchange.FILE_NAME, "hello.tm"); } @Override public boolean useJmx() { return true; } @Test public void testNotCached() throws Exception { MockEndpoint mock = getMockEndpoint("mock:result"); mock.expectedBodiesReceived("Hello London"); template.sendBodyAndHeader("direct:a", "Body", "name", "London"); mock.assertIsSatisfied(); // now change content in the file in the classpath and try again template.sendBodyAndHeader("file://target/test-classes/org/apache/camel/component/stringtemplate", "Bye <headers.name>", Exchange.FILE_NAME, "hello.tm"); mock.reset(); mock.expectedBodiesReceived("Bye Paris"); template.sendBodyAndHeader("direct:a", "Body", "name", "Paris"); mock.assertIsSatisfied(); } @Test public void testCached() throws Exception { MockEndpoint mock = getMockEndpoint("mock:result"); mock.expectedBodiesReceived("Hello London"); template.sendBodyAndHeader("direct:b", "Body", "name", "London"); mock.assertIsSatisfied(); // now change content in the file in the classpath and try again template.sendBodyAndHeader("file://target/test-classes/org/apache/camel/component/stringtemplate", "Bye <headers.name>", Exchange.FILE_NAME, "hello.tm"); mock.reset(); // we must expected the original filecontent as the cache is enabled, so its Hello and not Bye mock.expectedBodiesReceived("Hello Paris"); template.sendBodyAndHeader("direct:b", "Body", "name", "Paris"); mock.assertIsSatisfied(); } @Test public void testClearCacheViaJmx() throws Exception { MockEndpoint mock = getMockEndpoint("mock:result"); mock.expectedBodiesReceived("Hello London"); template.sendBodyAndHeader("direct:b", "Body", "name", "London"); mock.assertIsSatisfied(); // now change content in the file in the classpath and try again template.sendBodyAndHeader("file://target/test-classes/org/apache/camel/component/stringtemplate", "Bye <headers.name>", Exchange.FILE_NAME, "hello.tm"); mock.reset(); // we must expected the original filecontent as the cache is enabled, so its Hello and not Bye mock.expectedBodiesReceived("Hello Paris"); template.sendBodyAndHeader("direct:b", "Body", "name", "Paris"); mock.assertIsSatisfied(); // clear the cache using jmx MBeanServer mbeanServer = context.getManagementStrategy().getManagementAgent().getMBeanServer(); Set<ObjectName> objNameSet = mbeanServer.queryNames(new ObjectName("org.apache.camel:type=endpoints,name=\"string-template:*contentCache=true*\",*"), null); ObjectName managedObjName = new ArrayList<ObjectName>(objNameSet).get(0); mbeanServer.invoke(managedObjName, "clearContentCache", null, null); mock.reset(); // we expect that the new resource will be set as the cached value, since the cache has been cleared mock.expectedBodiesReceived("Bye Paris"); template.sendBodyAndHeader("file://target/test-classes/org/apache/camel/component/stringtemplate", "Bye <headers.name>", Exchange.FILE_NAME, "hello.tm"); template.sendBodyAndHeader("direct:b", "Body", "name", "Paris"); mock.assertIsSatisfied(); mock.reset(); // we expect that the cached value will not be replaced by a different resource since the cache is now re-established mock.expectedBodiesReceived("Bye Paris"); template.sendBodyAndHeader("file://target/test-classes/org/apache/camel/component/stringtemplate", "Hello <headers.name>", Exchange.FILE_NAME, "hello.tm"); template.sendBodyAndHeader("direct:b", "Body", "name", "Paris"); mock.assertIsSatisfied(); } protected RouteBuilder createRouteBuilder() throws Exception { return new RouteBuilder() { public void configure() throws Exception { from("direct:a").to("string-template://org/apache/camel/component/stringtemplate/hello.tm?contentCache=false").to("mock:result"); from("direct:b").to("string-template://org/apache/camel/component/stringtemplate/hello.tm?contentCache=true").to("mock:result"); } }; } }