blob: 9782dcf0e3cb38736c9d200de3373c528a3f43dc [file] [log] [blame]
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 );
assertTrue( "result.getArchetypes().size() = " + result.getArchetypes().size()
+ " should be in [5,8], result = " + result,
( 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." );
// }
}