This is an automated email from the ASF dual-hosted git repository.
davsclaus pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel.git
The following commit(s) were added to refs/heads/master by this push:
new 5c6d63c CAMEL-15037: Added unit test
5c6d63c is described below
commit 5c6d63c7d5dab3e460e888448e967c7d75a0ac95
Author: Claus Ibsen <[email protected]>
AuthorDate: Sun May 10 17:18:28 2020 +0200
CAMEL-15037: Added unit test
---
.../MockExpectedHeaderNoMessageSentTest.java | 52 ++++++++++++++++++++++
1 file changed, 52 insertions(+)
diff --git
a/core/camel-core/src/test/java/org/apache/camel/issues/MockExpectedHeaderNoMessageSentTest.java
b/core/camel-core/src/test/java/org/apache/camel/issues/MockExpectedHeaderNoMessageSentTest.java
new file mode 100644
index 0000000..20ebde3
--- /dev/null
+++
b/core/camel-core/src/test/java/org/apache/camel/issues/MockExpectedHeaderNoMessageSentTest.java
@@ -0,0 +1,52 @@
+/*
+ * 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.issues;
+
+import org.apache.camel.ContextTestSupport;
+import org.apache.camel.builder.RouteBuilder;
+import org.apache.camel.component.mock.MockEndpoint;
+import org.junit.Test;
+
+public class MockExpectedHeaderNoMessageSentTest extends ContextTestSupport {
+
+ @Test
+ public void testHeaderExpectedNoMessageSent() throws Exception {
+ MockEndpoint mock = getMockEndpoint("mock:result");
+ mock.setResultWaitTime(100); // run test quick
+
+ mock.expectedHeaderReceived("foo", "bar");
+
+ try {
+ mock.assertIsSatisfied();
+ fail("Should fail");
+ } catch (AssertionError e) {
+ assertEquals("mock://result Received message count 0, expected at
least 1", e.getMessage());
+ }
+ }
+
+ @Override
+ protected RouteBuilder createRouteBuilder() {
+ return new RouteBuilder() {
+ @Override
+ public void configure() {
+ from("direct:foo")
+ .routeId("myRoute")
+ .to("mock:result");
+ }
+ };
+ }
+}