/** * 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.cxf.jaxrs.provider; import java.io.ByteArrayInputStream; import java.util.HashMap; import java.util.Map; import org.apache.cxf.jaxrs.resources.Book; import org.apache.cxf.jaxrs.resources.BookStore; import org.junit.Assert; import org.junit.Test; public class XPathProviderTest extends Assert { @Test public void testIsReadableClassName() { XPathProvider<?> provider = new XPathProvider<Object>(); provider.setExpression("/"); assertTrue(provider.isReadable(Book.class, null, null, null)); assertTrue(provider.isReadable(BookStore.class, null, null, null)); provider.setClassName(Book.class.getName()); assertFalse(provider.isReadable(BookStore.class, null, null, null)); assertTrue(provider.isReadable(Book.class, null, null, null)); provider.setClassName(null); assertTrue(provider.isReadable(Book.class, null, null, null)); assertTrue(provider.isReadable(BookStore.class, null, null, null)); } @Test public void testIsReadableClassNames() { XPathProvider<?> provider = new XPathProvider<Object>(); assertFalse(provider.isReadable(Book.class, null, null, null)); assertFalse(provider.isReadable(BookStore.class, null, null, null)); Map<String, String> map = new HashMap<>(); map.put(Book.class.getName(), "/"); provider.setExpressions(map); assertFalse(provider.isReadable(BookStore.class, null, null, null)); assertTrue(provider.isReadable(Book.class, null, null, null)); } @Test public void testReadFrom() throws Exception { String value = "<Book><name>The Book</name><id>2</id></Book>"; XPathProvider<Book> provider = new XPathProvider<Book>(); provider.setExpression("/Book"); provider.setClassName(Book.class.getName()); provider.setForceDOM(true); Book book = (Book)provider.readFrom(Book.class, null, null, null, null, new ByteArrayInputStream(value.getBytes())); assertNotNull(book); assertEquals(2L, book.getId()); assertEquals("The Book", book.getName()); } }