This is an automated email from the ASF dual-hosted git repository.
acosentino pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel-karaf.git
The following commit(s) were added to refs/heads/master by this push:
new 6a81b04 Removed not relevant tests
6a81b04 is described below
commit 6a81b0409cb786745298c9ce1e248f2ef6c1ac90
Author: Andrea Cosentino <[email protected]>
AuthorDate: Tue Apr 21 14:26:58 2020 +0200
Removed not relevant tests
---
.../itest/DuplicateNamespacePrefixIssueTest.java | 78 ----------------------
1 file changed, 78 deletions(-)
diff --git
a/tests/camel-itest-osgi/src/test/java/org/apache/camel/itest/DuplicateNamespacePrefixIssueTest.java
b/tests/camel-itest-osgi/src/test/java/org/apache/camel/itest/DuplicateNamespacePrefixIssueTest.java
deleted file mode 100644
index 8b1de84..0000000
---
a/tests/camel-itest-osgi/src/test/java/org/apache/camel/itest/DuplicateNamespacePrefixIssueTest.java
+++ /dev/null
@@ -1,78 +0,0 @@
-/*
- * 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.itest;
-
-import java.io.ByteArrayInputStream;
-import java.io.InputStream;
-
-import org.apache.camel.CamelContext;
-import org.apache.camel.ExtendedCamelContext;
-import org.apache.camel.blueprint.BlueprintCamelContext;
-import org.apache.camel.builder.RouteBuilder;
-import org.apache.camel.model.Model;
-import org.apache.camel.model.RoutesDefinition;
-import org.apache.camel.test.karaf.AbstractFeatureTest;
-import org.junit.Assert;
-import org.junit.Test;
-import org.junit.runner.RunWith;
-import org.ops4j.pax.exam.Configuration;
-import org.ops4j.pax.exam.Option;
-import org.ops4j.pax.exam.junit.PaxExam;
-
-/**
- * CAMEL-10817: dumpModelAsXml can return invalid XML namespace xmlns:xmlns
- */
-@RunWith(PaxExam.class)
-public class DuplicateNamespacePrefixIssueTest extends AbstractFeatureTest {
-
- @Test
- public void testRoutesNamespacePrefixesNotDuplicated() throws Exception {
- CamelContext context = new BlueprintCamelContext(bundleContext,
blueprintContainer);
- context.addRoutes(new RouteBuilder() {
- @Override
- public void configure() throws Exception {
- from("direct:foo").id("foo")
- .choice()
- .when(xpath("foo:foo/foo:foo = 'foo'"))
- .log("Matched foo")
- .when(xpath("foo:foo/foo:bar = 'bar'"))
- .log("Matched bar")
- .when(xpath("foo:foo/foo:cheese = 'cheese'"))
- .log("Matched cheese");
- }
- });
-
- // Dump the model XML
- ExtendedCamelContext ecc = context.adapt(ExtendedCamelContext.class);
- String originalModelXML =
ecc.getModelToXMLDumper().dumpModelAsXml(context,
context.getExtension(Model.class).getRouteDefinition("foo"));
-
- // Reload routes from dumped XML
- InputStream stream = new
ByteArrayInputStream(originalModelXML.getBytes("UTF-8"));
- RoutesDefinition routesDefinition = (RoutesDefinition)
ecc.getXMLRoutesDefinitionLoader().loadRoutesDefinition(context, stream);
-
- // Verify namespaces are as we expect
- String modifiedModelXML =
ecc.getModelToXMLDumper().dumpModelAsXml(context, routesDefinition);
- String modifiedRoutesElementXML = modifiedModelXML.split("\n")[1];
- String expectedRoutesElementXML = "<routes
xmlns=\"http://camel.apache.org/schema/spring\">";
- Assert.assertEquals(expectedRoutesElementXML,
modifiedRoutesElementXML);
- }
-
- @Configuration
- public Option[] configure() {
- return AbstractFeatureTest.configure();
- }
-}