-
Notifications
You must be signed in to change notification settings - Fork 5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
CAMEL-20306 - Camel-CassandraQL: Add ObjectInputFilter String pattern…
… parameter in CassandraAggregationRepository to be used in unmarshall operations (#12760) (#12790) * CAMEL-20306 - Camel-CassandraQL: Add ObjectInputFilter String pattern parameter in CassandraAggregationRepository to be used in unmarshall operations * CAMEL-20306 - Camel-CassandraQL: Add ObjectInputFilter String pattern parameter in CassandraAggregationRepository to be used in unmarshall operations - Docs --------- Signed-off-by: Andrea Cosentino <[email protected]>
- Loading branch information
Showing
5 changed files
with
131 additions
and
9 deletions.
There are no files selected for viewing
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
56 changes: 56 additions & 0 deletions
56
...src/test/java/org/apache/camel/processor/aggregate/cassandra/CassandraCamelCodecTest.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,56 @@ | ||
/* | ||
* 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.processor.aggregate.cassandra; | ||
|
||
import java.io.*; | ||
import java.nio.ByteBuffer; | ||
|
||
import org.apache.camel.test.junit5.CamelTestSupport; | ||
import org.junit.jupiter.api.Assertions; | ||
import org.junit.jupiter.api.Test; | ||
import org.malicious.example.Employee; | ||
|
||
public class CassandraCamelCodecTest extends CamelTestSupport { | ||
|
||
CassandraCamelCodec codec; | ||
|
||
@Override | ||
protected void startCamelContext() throws Exception { | ||
super.startCamelContext(); | ||
codec = new CassandraCamelCodec(); | ||
} | ||
|
||
@Test | ||
public void shouldFailWithRejected() throws IOException, ClassNotFoundException { | ||
Employee emp = new Employee("Mickey", "Mouse"); | ||
|
||
ByteArrayOutputStream baos = new ByteArrayOutputStream(); | ||
ObjectOutputStream oos = new ObjectOutputStream(baos); | ||
|
||
oos.writeObject(emp); | ||
|
||
oos.flush(); | ||
oos.close(); | ||
|
||
InputStream is = new ByteArrayInputStream(baos.toByteArray()); | ||
InvalidClassException thrown = Assertions.assertThrows(InvalidClassException.class, () -> { | ||
codec.unmarshallExchange(context, ByteBuffer.wrap(is.readAllBytes()), "java.**;org.apache.camel.**;!*"); | ||
}); | ||
|
||
Assertions.assertEquals("filter status: REJECTED", thrown.getMessage()); | ||
} | ||
} |
46 changes: 46 additions & 0 deletions
46
components/camel-cassandraql/src/test/java/org/malicious/example/Employee.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,46 @@ | ||
/* | ||
* 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.malicious.example; | ||
|
||
import java.io.Serializable; | ||
|
||
public class Employee implements Serializable { | ||
|
||
String name; | ||
String surname; | ||
|
||
public Employee(String name, String surname) { | ||
this.name = name; | ||
this.surname = surname; | ||
} | ||
|
||
public String getName() { | ||
return name; | ||
} | ||
|
||
public void setName(String name) { | ||
this.name = name; | ||
} | ||
|
||
public String getSurname() { | ||
return surname; | ||
} | ||
|
||
public void setSurname(String surname) { | ||
this.surname = surname; | ||
} | ||
} |