]> source.dussan.org Git - archiva.git/blob
67b3b3ffd6d73f887ee48c750d3c0fb034fa05fa
[archiva.git] /
1 package org.apache.maven.archiva.consumers.core;
2
3 import org.apache.archiva.checksum.ChecksumAlgorithm;
4 import org.apache.archiva.checksum.ChecksummedFile;
5 import org.apache.commons.io.FileUtils;
6 import org.apache.maven.archiva.configuration.ManagedRepositoryConfiguration;
7 import org.apache.maven.archiva.consumers.KnownRepositoryContentConsumer;
8 import org.junit.Before;
9 import org.junit.Test;
10
11 import java.io.File;
12 import java.util.Calendar;
13
14 /*
15  * Licensed to the Apache Software Foundation (ASF) under one
16  * or more contributor license agreements.  See the NOTICE file
17  * distributed with this work for additional information
18  * regarding copyright ownership.  The ASF licenses this file
19  * to you under the Apache License, Version 2.0 (the
20  * "License"); you may not use this file except in compliance
21  * with the License.  You may obtain a copy of the License at
22  *
23  *   http://www.apache.org/licenses/LICENSE-2.0
24  *
25  * Unless required by applicable law or agreed to in writing,
26  * software distributed under the License is distributed on an
27  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
28  * KIND, either express or implied.  See the License for the
29  * specific language governing permissions and limitations
30  * under the License.
31  */
32
33 public class ArtifactMissingChecksumsConsumerTest
34     extends AbstractArtifactConsumerTest
35 {
36     private ManagedRepositoryConfiguration repoConfig;
37
38     @Before
39     public void setUp()
40         throws Exception
41     {
42         super.setUp();
43
44         repoConfig = new ManagedRepositoryConfiguration();
45         repoConfig.setId( "test-repo" );
46         repoConfig.setName( "Test Repository" );
47         repoConfig.setLayout( "default" );
48         repoConfig.setLocation( new File( "target/test-classes/test-repo/" ).getPath() );
49
50         consumer = applicationContext.getBean( "knownRepositoryContentConsumer#artifact-missing-checksums-consumer",
51                                                KnownRepositoryContentConsumer.class );
52     }
53
54     @Test
55     public void testNoExistingChecksums()
56         throws Exception
57     {
58         String path = "/no-checksums-artifact/1.0/no-checksums-artifact-1.0.jar";
59
60         File sha1File = new File( repoConfig.getLocation(), path + ".sha1" );
61         File md5File = new File( repoConfig.getLocation(), path + ".md5" );
62
63         sha1File.delete();
64         md5File.delete();
65
66         assertFalse( sha1File.exists() );
67         assertFalse( md5File.exists() );
68
69         consumer.beginScan( repoConfig, Calendar.getInstance().getTime() );
70
71         consumer.processFile( path );
72
73         assertTrue( sha1File.exists() );
74         assertTrue( md5File.exists() );
75     }
76
77     @Test
78     public void testExistingIncorrectChecksums()
79         throws Exception
80     {
81         File newLocation = new File( "target/test-repo" );
82         FileUtils.deleteDirectory( newLocation );
83         FileUtils.copyDirectory( new File( repoConfig.getLocation() ), newLocation );
84         repoConfig.setLocation( newLocation.getAbsolutePath() );
85
86         String path = "/incorrect-checksums/1.0/incorrect-checksums-1.0.jar";
87
88         File sha1File = new File( repoConfig.getLocation(), path + ".sha1" );
89         File md5File = new File( repoConfig.getLocation(), path + ".md5" );
90
91         ChecksummedFile checksum = new ChecksummedFile( new File( repoConfig.getLocation(), path ) );
92
93         assertTrue( sha1File.exists() );
94         assertTrue( md5File.exists() );
95         assertFalse( checksum.isValidChecksums( new ChecksumAlgorithm[] { ChecksumAlgorithm.MD5, ChecksumAlgorithm.SHA1 } ) );
96
97         consumer.beginScan( repoConfig, Calendar.getInstance().getTime() );
98
99         consumer.processFile( path );
100
101         assertTrue( sha1File.exists() );
102         assertTrue( md5File.exists() );
103         assertTrue( checksum.isValidChecksums( new ChecksumAlgorithm[] { ChecksumAlgorithm.MD5, ChecksumAlgorithm.SHA1 } ) );        
104     }
105 }