blob: 4c302633cfdf232d491a30083654c1b465aceca0 [file] [log] [blame]
/**
* 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.converter.jaxb;
import javax.xml.stream.XMLStreamException;
import javax.xml.stream.XMLStreamWriter;
import org.junit.Before;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.mockito.Mock;
import org.mockito.runners.MockitoJUnitRunner;
import static org.mockito.Matchers.eq;
import static org.mockito.Matchers.same;
import static org.mockito.Mockito.verify;
import static org.mockito.Mockito.when;
@RunWith(MockitoJUnitRunner.class)
public class FilteringXmlStreamWriterTest {
private FilteringXmlStreamWriter filteringXmlStreamWriter;
@Mock
private NonXmlCharFilterer nonXmlCharFiltererMock;
@Mock
private XMLStreamWriter xmlStreamWriterMock;
// only testing non-generated methods, those that do apply filtering
@Before
public void setUp() {
filteringXmlStreamWriter = new FilteringXmlStreamWriter(xmlStreamWriterMock);
filteringXmlStreamWriter.nonXmlCharFilterer = nonXmlCharFiltererMock;
when(nonXmlCharFiltererMock.filter("value")).thenReturn("filteredValue");
}
@Test
public void testWriteAttribute2Args() throws XMLStreamException {
filteringXmlStreamWriter.writeAttribute("localName", "value");
verify(xmlStreamWriterMock).writeAttribute("localName", "filteredValue");
}
@Test
public void testWriteAttribute3Args() throws XMLStreamException {
filteringXmlStreamWriter.writeAttribute("namespaceURI", "localName", "value");
verify(xmlStreamWriterMock).writeAttribute("namespaceURI", "localName", "filteredValue");
}
@Test
public void testWriteAttribute4Args() throws XMLStreamException {
filteringXmlStreamWriter.writeAttribute("prefix", "namespaceURI", "localName", "value");
verify(xmlStreamWriterMock).writeAttribute("prefix", "namespaceURI", "localName", "filteredValue");
}
@Test
public void testWriteCData() throws XMLStreamException {
filteringXmlStreamWriter.writeCData("value");
verify(xmlStreamWriterMock).writeCData("filteredValue");
}
@Test
public void testWriteCharacters1Arg() throws XMLStreamException {
filteringXmlStreamWriter.writeCharacters("value");
verify(xmlStreamWriterMock).writeCharacters("filteredValue");
}
@Test
public void testWriteComment() throws XMLStreamException {
filteringXmlStreamWriter.writeComment("value");
verify(xmlStreamWriterMock).writeComment("filteredValue");
}
@Test
public void testWriteCharacters3Args() throws XMLStreamException {
char[] buffer = new char[] {'a', 'b', 'c'};
filteringXmlStreamWriter.writeCharacters(buffer, 2, 3);
verify(nonXmlCharFiltererMock).filter(same(buffer), eq(2), eq(3));
verify(xmlStreamWriterMock).writeCharacters(same(buffer), eq(2), eq(3));
}
}