forked from apache/camel-k-runtime
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
yaml-loader: add support for error handler apache#339
- Loading branch information
1 parent
b86aefd
commit 96714cb
Showing
9 changed files
with
306 additions
and
8 deletions.
There are no files selected for viewing
92 changes: 92 additions & 0 deletions
92
...ml-common/src/main/java/org/apache/camel/k/loader/yaml/parser/ErrorHandlerStepParser.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,92 @@ | ||
/* | ||
* 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.k.loader.yaml.parser; | ||
|
||
import com.fasterxml.jackson.annotation.JsonAlias; | ||
import org.apache.camel.builder.DeadLetterChannelBuilder; | ||
import org.apache.camel.builder.DefaultErrorHandlerBuilder; | ||
import org.apache.camel.builder.ErrorHandlerBuilder; | ||
import org.apache.camel.builder.ErrorHandlerBuilderRef; | ||
import org.apache.camel.builder.NoErrorHandlerBuilder; | ||
import org.apache.camel.k.annotation.yaml.YAMLStepParser; | ||
import org.apache.camel.k.loader.yaml.spi.ProcessorStepParser; | ||
import org.apache.camel.k.loader.yaml.spi.StartStepParser; | ||
import org.apache.camel.k.loader.yaml.spi.StepParserSupport; | ||
import org.apache.camel.model.ProcessorDefinition; | ||
import org.apache.camel.model.RouteDefinition; | ||
|
||
@YAMLStepParser("error-handler") | ||
public class ErrorHandlerStepParser implements StartStepParser, ProcessorStepParser { | ||
@Override | ||
public ProcessorDefinition<?> toStartProcessor(Context context) { | ||
final Definition definition = context.node(Definition.class); | ||
|
||
StepParserSupport.notNull(definition.builder, "builder"); | ||
|
||
context.builder().errorHandler(definition.builder); | ||
|
||
return context.processor(); | ||
} | ||
|
||
@Override | ||
public ProcessorDefinition<?> toProcessor(Context context) { | ||
final Definition definition = context.node(Definition.class); | ||
|
||
StepParserSupport.notNull(context.processor(), "processor"); | ||
StepParserSupport.notNull(definition.builder, "builder"); | ||
|
||
return context.processor(RouteDefinition.class).errorHandler(definition.builder); | ||
} | ||
|
||
public static final class Definition { | ||
public ErrorHandlerBuilder builder; | ||
|
||
@JsonAlias("default") | ||
public void setDefault(DefaultErrorHandlerBuilder builder) { | ||
setBuilder(builder); | ||
} | ||
|
||
@JsonAlias("dead-letter-channel") | ||
public void setDeadLetterChannel(DeadLetterChannelBuilder builder) { | ||
setBuilder(builder); | ||
} | ||
|
||
@JsonAlias({"no-error-handler", "none" }) | ||
public void setNoErrorHandler(NoErrorHandlerBuilder builder) { | ||
setBuilder(builder); | ||
} | ||
|
||
@JsonAlias("ref") | ||
public void setRefHandler(ErrorHandlerBuilderRef builder) { | ||
setBuilder(builder); | ||
} | ||
|
||
@JsonAlias("custom") | ||
public void setCustomHandler(ErrorHandlerBuilder builder) { | ||
setBuilder(builder); | ||
} | ||
|
||
private void setBuilder(ErrorHandlerBuilder builder) { | ||
if (this.builder != null) { | ||
throw new IllegalArgumentException("An ErrorHandler has already been set"); | ||
} | ||
|
||
this.builder = builder; | ||
} | ||
} | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
128 changes: 128 additions & 0 deletions
128
...loader-yaml/src/test/groovy/org/apache/camel/k/loader/yaml/parser/ErrorHandlerTest.groovy
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,128 @@ | ||
/* | ||
* 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.k.loader.yaml.parser | ||
|
||
import org.apache.camel.builder.DeadLetterChannelBuilder | ||
import org.apache.camel.builder.DefaultErrorHandlerBuilder | ||
import org.apache.camel.builder.ErrorHandlerBuilderRef | ||
import org.apache.camel.builder.NoErrorHandlerBuilder | ||
import org.apache.camel.k.loader.yaml.TestSupport | ||
import org.apache.camel.model.RouteDefinition | ||
|
||
class ErrorHandlerTest extends TestSupport { | ||
def "definition (route/no-error-handler)"() { | ||
when: | ||
def processor = toProcessor(ErrorHandlerStepParser, ''' | ||
no-error-handler: {} | ||
''') | ||
then: | ||
with(processor, RouteDefinition) { | ||
errorHandlerFactory instanceof NoErrorHandlerBuilder | ||
} | ||
} | ||
|
||
def "definition (route/default)"() { | ||
when: | ||
def processor = toProcessor(ErrorHandlerStepParser, ''' | ||
default: | ||
dead-letter-uri: "jms:queue:dead" | ||
''') | ||
then: | ||
with(processor, RouteDefinition) { | ||
with(errorHandlerFactory, DefaultErrorHandlerBuilder) { | ||
deadLetterUri == 'jms:queue:dead' | ||
} | ||
} | ||
} | ||
|
||
def "definition (route/dead-letter-channel)"() { | ||
when: | ||
def processor = toProcessor(ErrorHandlerStepParser, ''' | ||
dead-letter-channel: "jms:queue:dead" | ||
''') | ||
then: | ||
with(processor, RouteDefinition) { | ||
with(errorHandlerFactory, DeadLetterChannelBuilder) { | ||
deadLetterUri == 'jms:queue:dead' | ||
} | ||
} | ||
} | ||
|
||
def "definition (route/ref)"() { | ||
when: | ||
def processor = toProcessor(ErrorHandlerStepParser, ''' | ||
ref: "myErrorHandler" | ||
''') | ||
then: | ||
with(processor, RouteDefinition) { | ||
with(errorHandlerFactory, ErrorHandlerBuilderRef) { | ||
ref == 'myErrorHandler' | ||
} | ||
} | ||
} | ||
|
||
def "definition (global/no-error-handler)"() { | ||
given: | ||
def stepContext = stepContext(''' | ||
no-error-handler: {} | ||
''') | ||
when: | ||
new ErrorHandlerStepParser().toStartProcessor(stepContext) | ||
then: | ||
stepContext.builder().routeCollection.errorHandlerFactory instanceof NoErrorHandlerBuilder | ||
} | ||
|
||
def "definition (global/default)"() { | ||
given: | ||
def stepContext = stepContext(''' | ||
default: | ||
dead-letter-uri: "jms:queue:dead" | ||
''') | ||
when: | ||
new ErrorHandlerStepParser().toStartProcessor(stepContext) | ||
then: | ||
with(stepContext.builder().routeCollection.errorHandlerFactory, DefaultErrorHandlerBuilder) { | ||
deadLetterUri == 'jms:queue:dead' | ||
} | ||
} | ||
|
||
def "definition (global/dead-letter-channel)"() { | ||
given: | ||
def stepContext = stepContext(''' | ||
dead-letter-channel: "jms:queue:dead" | ||
''') | ||
when: | ||
new ErrorHandlerStepParser().toStartProcessor(stepContext) | ||
then: | ||
with(stepContext.builder().routeCollection.errorHandlerFactory, DefaultErrorHandlerBuilder) { | ||
deadLetterUri == 'jms:queue:dead' | ||
} | ||
} | ||
|
||
def "definition (global/ref)"() { | ||
given: | ||
def stepContext = stepContext(''' | ||
ref: "myErrorHandler" | ||
''') | ||
when: | ||
new ErrorHandlerStepParser().toStartProcessor(stepContext) | ||
then: | ||
with(stepContext.builder().routeCollection.errorHandlerFactory, ErrorHandlerBuilderRef) { | ||
ref == 'myErrorHandler' | ||
} | ||
} | ||
} |
25 changes: 25 additions & 0 deletions
25
...-k-loader-yaml/camel-k-loader-yaml/src/test/resources/routes/RoutesTest_errorHandler.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
# | ||
# 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. | ||
# | ||
- error-handler: | ||
dead-letter-channel: | ||
dead-letter-uri: "mock:on-error" | ||
redelivery-delay: 0 | ||
- from: | ||
uri: "direct:start" | ||
steps: | ||
- process: | ||
ref: "myFailingProcessor" |
Oops, something went wrong.