1 package org.apache.archiva.rest.services;
3 * Licensed to the Apache Software Foundation (ASF) under one
4 * or more contributor license agreements. See the NOTICE file
5 * distributed with this work for additional information
6 * regarding copyright ownership. The ASF licenses this file
7 * to you under the Apache License, Version 2.0 (the
8 * "License"); you may not use this file except in compliance
9 * with the License. You may obtain a copy of the License at
11 * http://www.apache.org/licenses/LICENSE-2.0
13 * Unless required by applicable law or agreed to in writing,
14 * software distributed under the License is distributed on an
15 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16 * KIND, either express or implied. See the License for the
17 * specific language governing permissions and limitations
21 import junit.framework.TestCase;
22 import org.apache.archiva.rest.api.model.ArtifactContentEntry;
23 import org.junit.Test;
24 import org.junit.runner.RunWith;
25 import org.junit.runners.JUnit4;
26 import org.slf4j.Logger;
27 import org.slf4j.LoggerFactory;
30 import java.util.List;
32 import static org.fest.assertions.api.Assertions.assertThat;
35 * @author Olivier Lamy
37 @RunWith( JUnit4.class )
38 public class ArtifactContentEntriesTests
42 protected Logger log = LoggerFactory.getLogger( getClass() );
45 DefaultBrowseService browseService = new DefaultBrowseService();
48 public String getBasedir()
50 return System.getProperty( "basedir" );
54 public void readArtifactContentEntriesRootPathNull()
58 File file = new File( getBasedir(),
59 "src/test/repo-with-osgi/commons-logging/commons-logging/1.1/commons-logging-1.1.jar" );
61 List<ArtifactContentEntry> artifactContentEntries = browseService.readFileEntries( file, null, "foo" );
63 log.info( "artifactContentEntries: {}", artifactContentEntries );
65 assertThat( artifactContentEntries ).isNotNull().isNotEmpty().hasSize( 2 ).contains(
66 new ArtifactContentEntry( "org", false, 0, "foo" ),
67 new ArtifactContentEntry( "META-INF", false, 0, "foo" ) );
72 public void readArtifactContentEntriesRootPathEmpty()
76 File file = new File( getBasedir(),
77 "src/test/repo-with-osgi/commons-logging/commons-logging/1.1/commons-logging-1.1.jar" );
79 List<ArtifactContentEntry> artifactContentEntries = browseService.readFileEntries( file, "", "foo" );
81 log.info( "artifactContentEntries: {}", artifactContentEntries );
83 assertThat( artifactContentEntries ).isNotNull().isNotEmpty().hasSize( 2 ).contains(
84 new ArtifactContentEntry( "org", false, 0, "foo" ),
85 new ArtifactContentEntry( "META-INF", false, 0, "foo" ) );
90 public void readArtifactContentEntriesRootSlash()
94 File file = new File( getBasedir(),
95 "src/test/repo-with-osgi/commons-logging/commons-logging/1.1/commons-logging-1.1.jar" );
97 List<ArtifactContentEntry> artifactContentEntries = browseService.readFileEntries( file, "/", "foo" );
99 log.info( "artifactContentEntries: {}", artifactContentEntries );
101 assertThat( artifactContentEntries ).isNotNull().isNotEmpty().hasSize( 2 ).contains(
102 new ArtifactContentEntry( "org", false, 0, "foo" ),
103 new ArtifactContentEntry( "META-INF", false, 0, "foo" ) );
108 public void readArtifactContentEntriesSecondDepthOnlyOneDirectory()
112 File file = new File( getBasedir(),
113 "src/test/repo-with-osgi/commons-logging/commons-logging/1.1/commons-logging-1.1.jar" );
115 List<ArtifactContentEntry> artifactContentEntries = browseService.readFileEntries( file, "org", "foo" );
117 log.info( "artifactContentEntries: {}", artifactContentEntries );
119 assertThat( artifactContentEntries ).isNotNull().isNotEmpty().hasSize( 1 ).contains(
120 new ArtifactContentEntry( "org/apache", false, 1, "foo" ) );
125 public void readArtifactContentEntriesOnlyFiles()
129 File file = new File( getBasedir(),
130 "src/test/repo-with-osgi/commons-logging/commons-logging/1.1/commons-logging-1.1.jar" );
132 List<ArtifactContentEntry> artifactContentEntries =
133 browseService.readFileEntries( file, "org/apache/commons/logging/impl/", "foo" );
135 log.info( "artifactContentEntries: {}", artifactContentEntries );
137 assertThat( artifactContentEntries ).isNotNull().isNotEmpty().hasSize( 16 ).contains(
138 new ArtifactContentEntry( "org/apache/commons/logging/impl/AvalonLogger.class", true, 5, "foo" ) );
143 public void readArtifactContentEntriesDirectoryAndFiles()
147 File file = new File( getBasedir(),
148 "src/test/repo-with-osgi/commons-logging/commons-logging/1.1/commons-logging-1.1.jar" );
150 List<ArtifactContentEntry> artifactContentEntries =
151 browseService.readFileEntries( file, "org/apache/commons/logging/", "foo" );
153 log.info( "artifactContentEntries: {}", artifactContentEntries );
155 assertThat( artifactContentEntries ).isNotNull().isNotEmpty().hasSize( 10 ).contains(
156 new ArtifactContentEntry( "org/apache/commons/logging/impl", false, 4, "foo" ),
157 new ArtifactContentEntry( "org/apache/commons/logging/LogSource.class", true, 4, "foo" ) );