org.apache.archiva.consumers.core.AbstractArtifactConsumerTest.java Source code

Java tutorial

Introduction

Here is the source code for org.apache.archiva.consumers.core.AbstractArtifactConsumerTest.java

Source

package org.apache.archiva.consumers.core;

/*
 * 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.
 */

import org.apache.archiva.common.plexusbridge.PlexusSisuBridge;
import org.apache.archiva.common.utils.BaseFile;
import org.apache.archiva.configuration.ArchivaConfiguration;
import org.apache.archiva.configuration.FileType;
import org.apache.archiva.configuration.FileTypes;
import org.apache.archiva.consumers.KnownRepositoryContentConsumer;
import org.apache.archiva.consumers.functors.ConsumerWantsFilePredicate;
import org.apache.maven.index.NexusIndexer;
import org.apache.maven.index.context.IndexingContext;
import org.junit.After;
import static org.junit.Assert.*;
import org.junit.Before;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.context.ApplicationContext;
import org.springframework.test.context.ContextConfiguration;

import javax.inject.Inject;
import java.io.File;
import org.apache.archiva.test.utils.ArchivaSpringJUnit4ClassRunner;
import org.apache.commons.lang.StringUtils;

@RunWith(ArchivaSpringJUnit4ClassRunner.class)
@ContextConfiguration(locations = { "classpath*:/META-INF/spring-context.xml", "classpath:/spring-context.xml" })
public abstract class AbstractArtifactConsumerTest {
    private File repoLocation;

    protected KnownRepositoryContentConsumer consumer;

    @Inject
    protected ApplicationContext applicationContext;

    @Inject
    ArchivaConfiguration archivaConfiguration;

    @Inject
    protected PlexusSisuBridge plexusSisuBridge;

    @Before
    public void setUp() throws Exception {
        FileType fileType = (FileType) archivaConfiguration.getConfiguration().getRepositoryScanning()
                .getFileTypes().get(0);
        assertEquals(FileTypes.ARTIFACTS, fileType.getId());
        fileType.addPattern("**/*.xml");

        repoLocation = new File("target/test-" + getName() + "/test-repo");
    }

    @After
    public void tearDown() throws Exception {
        NexusIndexer nexusIndexer = plexusSisuBridge.lookup(NexusIndexer.class);
        for (IndexingContext indexingContext : nexusIndexer.getIndexingContexts().values()) {
            nexusIndexer.removeIndexingContext(indexingContext, false);
        }
    }

    @Test
    public void testConsumption() {
        File localFile = new File(repoLocation,
                "org/apache/maven/plugins/maven-plugin-plugin/2.4.1/maven-metadata.xml");

        ConsumerWantsFilePredicate predicate = new ConsumerWantsFilePredicate();
        BaseFile baseFile = new BaseFile(repoLocation, localFile);
        predicate.setBasefile(baseFile);

        assertFalse(predicate.evaluate(consumer));
    }

    @Test
    public void testConsumptionOfOtherMetadata() {
        File localFile = new File(repoLocation,
                "org/apache/maven/plugins/maven-plugin-plugin/2.4.1/maven-metadata-central.xml");

        ConsumerWantsFilePredicate predicate = new ConsumerWantsFilePredicate();
        BaseFile baseFile = new BaseFile(repoLocation, localFile);
        predicate.setBasefile(baseFile);

        assertFalse(predicate.evaluate(consumer));
    }

    public String getName() {
        return StringUtils.substringAfterLast(getClass().getName(), ".");
    }
}