Package org.apache.maven.archetype.repositorycrawler

Source Code of org.apache.maven.archetype.repositorycrawler.DefaultRepositoryCrawlerTest

package org.apache.maven.archetype.repositorycrawler;

/*
* 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.maven.archetype.catalog.ArchetypeCatalog;
import org.apache.maven.plugin.testing.AbstractMojoTestCase;

import java.io.File;

/**
* @author  rafale
*/
public class DefaultRepositoryCrawlerTest
    extends AbstractMojoTestCase
{
    /**
     * Test of crawl method, of class DefaultRepositoryCrawler.
     */
    public void testCrawl()
        throws Exception
    {
        System.out.println( "crawl" );

        File repository = getTestFile( "target/test-classes/repositories/central" );
        RepositoryCrawler instance = (RepositoryCrawler) lookup( RepositoryCrawler.class.getName() );

        ArchetypeCatalog result = instance.crawl( repository );
        System.err.println( "result = " + result );
        assertTrue( ( 5 <= result.getArchetypes().size() ) && ( result.getArchetypes().size() <= 8 ) );
       
        // TODO: should write to another directory
//        instance.writeCatalog(result, new File(repository, "archetype-catalog.xml"));
    }

//    public void testCrawl2 ()
//    throws Exception
//    {
//        System.out.println ( "\n\n\n\n\n\ncrawl2" );
//
//        File repository = new File("/home/rafale/.m2/repository");
//                //getTestFile ( "target/test-classes/repositories/central" );
//        RepositoryCrawler instance =
//            (RepositoryCrawler) lookup ( RepositoryCrawler.class.getName () );
//
//        ArchetypeCatalog expResult = null;
//        ArchetypeCatalog result = instance.crawl ( repository );
//        System.err.println("result = "+result);
//        assertEquals ( expResult, result );
//        // TODO review the generated test code and remove the default call to fail.
////        fail ( "The test case is a prototype." );
//    }

    protected void tearDown()
        throws Exception
    {
        super.tearDown();
    }

    protected void setUp()
        throws Exception
    {
        super.setUp();
    }
}
TOP

Related Classes of org.apache.maven.archetype.repositorycrawler.DefaultRepositoryCrawlerTest

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.