Return-Path: X-Original-To: apmail-camel-commits-archive@www.apache.org Delivered-To: apmail-camel-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 589E710E21 for ; Sun, 2 Nov 2014 08:31:36 +0000 (UTC) Received: (qmail 37984 invoked by uid 500); 2 Nov 2014 08:31:36 -0000 Delivered-To: apmail-camel-commits-archive@camel.apache.org Received: (qmail 37934 invoked by uid 500); 2 Nov 2014 08:31:36 -0000 Mailing-List: contact commits-help@camel.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@camel.apache.org Delivered-To: mailing list commits@camel.apache.org Received: (qmail 37920 invoked by uid 99); 2 Nov 2014 08:31:36 -0000 Received: from tyr.zones.apache.org (HELO tyr.zones.apache.org) (140.211.11.114) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 02 Nov 2014 08:31:36 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id D1D338171AE; Sun, 2 Nov 2014 08:31:35 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: davsclaus@apache.org To: commits@camel.apache.org Message-Id: <95d519e4fef44c6ca3a3573670d72921@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: git commit: CAMEL-7983: Added unit test Date: Sun, 2 Nov 2014 08:31:35 +0000 (UTC) Repository: camel Updated Branches: refs/heads/master f0244e817 -> 3170fb353 CAMEL-7983: Added unit test Project: http://git-wip-us.apache.org/repos/asf/camel/repo Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/3170fb35 Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/3170fb35 Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/3170fb35 Branch: refs/heads/master Commit: 3170fb353803e5b3ee719f27014493973e495503 Parents: f0244e8 Author: Claus Ibsen Authored: Sun Nov 2 09:27:44 2014 +0100 Committer: Claus Ibsen Committed: Sun Nov 2 09:27:44 2014 +0100 ---------------------------------------------------------------------- .../SqlProducerNamedParameterNotExistTest.java | 88 ++++++++++++++++++++ 1 file changed, 88 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/camel/blob/3170fb35/components/camel-sql/src/test/java/org/apache/camel/component/sql/SqlProducerNamedParameterNotExistTest.java ---------------------------------------------------------------------- diff --git a/components/camel-sql/src/test/java/org/apache/camel/component/sql/SqlProducerNamedParameterNotExistTest.java b/components/camel-sql/src/test/java/org/apache/camel/component/sql/SqlProducerNamedParameterNotExistTest.java new file mode 100755 index 0000000..b8c6b78 --- /dev/null +++ b/components/camel-sql/src/test/java/org/apache/camel/component/sql/SqlProducerNamedParameterNotExistTest.java @@ -0,0 +1,88 @@ +/** + * 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.sql; + +import java.util.HashMap; +import java.util.Map; + +import org.apache.camel.builder.RouteBuilder; +import org.apache.camel.test.junit4.CamelTestSupport; +import org.junit.After; +import org.junit.Before; +import org.junit.Test; +import org.springframework.jdbc.datasource.embedded.EmbeddedDatabase; +import org.springframework.jdbc.datasource.embedded.EmbeddedDatabaseBuilder; +import org.springframework.jdbc.datasource.embedded.EmbeddedDatabaseType; + +/** + * @version + */ +public class SqlProducerNamedParameterNotExistTest extends CamelTestSupport { + + private EmbeddedDatabase db; + + @Before + public void setUp() throws Exception { + db = new EmbeddedDatabaseBuilder() + .setType(EmbeddedDatabaseType.DERBY).addScript("sql/createAndPopulateDatabase.sql").build(); + + super.setUp(); + } + + @After + public void tearDown() throws Exception { + super.tearDown(); + + db.shutdown(); + } + + @Test + public void testNamedParameterNotExistFromBody() throws Exception { + Map map = new HashMap(); + map.put("foo", "ASF"); + + try { + template.sendBody("direct:start", map); + fail("Should have thrown exception"); + } catch (Exception e) { + assertTrue(e.getCause().getMessage().startsWith("Cannot find key [lic]")); + } + } + + @Test + public void testNamedParameterNotExistFromHeader() throws Exception { + try { + template.sendBodyAndHeader("direct:start", "This is a dummy body", "foo", "ASF"); + fail("Should have thrown exception"); + } catch (Exception e) { + assertTrue(e.getCause().getMessage().startsWith("Cannot find key [lic]")); + } + } + + @Override + protected RouteBuilder createRouteBuilder() throws Exception { + return new RouteBuilder() { + public void configure() { + getContext().getComponent("sql", SqlComponent.class).setDataSource(db); + + from("direct:start") + .to("sql:select * from projects where license = :#lic order by id") + .to("mock:result"); + } + }; + } +}