/* * #%L * Gravia :: Repository * %% * Copyright (C) 2012 - 2014 JBoss by Red Hat * %% * Licensed 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. * #L% */ package org.jboss.test.gravia.repository; import java.io.File; import java.io.InputStream; import java.util.ArrayList; import java.util.List; import javax.xml.stream.XMLStreamException; import org.jboss.gravia.repository.RepositoryReader; import org.jboss.gravia.repository.DefaultRepositoryXMLReader; import org.jboss.gravia.resource.Resource; /** * * @author thomas.diesler@jboss.com * @since 16-Jan-2012 */ public abstract class AbstractRepositoryTest { protected RepositoryReader getRepositoryReader(String xmlres) throws XMLStreamException { InputStream input = getClass().getClassLoader().getResourceAsStream(xmlres); return new DefaultRepositoryXMLReader(input); } protected List<Resource> getResources(RepositoryReader reader) { List<Resource> resources = new ArrayList<Resource>(); Resource resource = reader.nextResource(); while (resource != null) { resources.add(resource); resource = reader.nextResource(); } return resources; } protected void deleteRecursive(File file) { if (file.isDirectory()) { for (File aux : file.listFiles()) deleteRecursive(aux); } file.delete(); } }