]> source.dussan.org Git - archiva.git/blob
9bec7320921a7d1adb3ac75e0c790cfe85dc7d67
[archiva.git] /
1 package org.apache.maven.archiva.transaction;
2
3 /*
4  * Licensed to the Apache Software Foundation (ASF) under one
5  * or more contributor license agreements.  See the NOTICE file
6  * distributed with this work for additional information
7  * regarding copyright ownership.  The ASF licenses this file
8  * to you under the Apache License, Version 2.0 (the
9  * "License"); you may not use this file except in compliance
10  * with the License.  You may obtain a copy of the License at
11  *
12  *   http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * Unless required by applicable law or agreed to in writing,
15  * software distributed under the License is distributed on an
16  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
17  * KIND, either express or implied.  See the License for the
18  * specific language governing permissions and limitations
19  * under the License.
20  */
21
22 import org.apache.commons.io.FileUtils;
23 import org.codehaus.plexus.spring.PlexusInSpringTestCase;
24 import org.codehaus.plexus.spring.PlexusToSpringUtils;
25 import org.codehaus.plexus.digest.Digester;
26
27 import java.io.File;
28 import java.io.IOException;
29 import java.util.List;
30
31 /**
32  * 
33  * @version $Id$
34  */
35 public abstract class AbstractFileEventTest
36     extends PlexusInSpringTestCase
37 {
38     protected List digesters;
39
40     public void setUp()
41         throws Exception
42     {
43         super.setUp();
44
45         digesters = PlexusToSpringUtils.lookupList( PlexusToSpringUtils.buildSpringId( Digester.class.getName() ), getApplicationContext() );
46     }
47
48     protected void assertChecksumExists( File file, String algorithm )
49     {
50         assertChecksum( file, algorithm, true );
51     }
52
53     protected void assertChecksumDoesNotExist( File file, String algorithm )
54     {
55         assertChecksum( file, algorithm, false );
56     }
57
58     private void assertChecksum( File file, String algorithm, boolean exist )
59     {
60         String msg = exist ? "exists" : "does not exist";
61         File checksumFile = new File( file.getPath() + "." + algorithm );
62         assertEquals( "Test file " + algorithm + " checksum " + msg, exist, checksumFile.exists() );
63     }
64
65     protected void assertChecksumCommit( File file )
66         throws IOException
67     {
68         assertChecksumExists( file, "md5" );
69         assertChecksumExists( file, "sha1" );
70     }
71
72     protected void assertChecksumRollback( File file )
73         throws IOException
74     {
75         assertChecksumDoesNotExist( file, "md5" );
76         assertChecksumDoesNotExist( file, "sha1" );
77     }
78
79     protected String readFile( File file )
80         throws IOException
81     {
82         return FileUtils.readFileToString( file );
83     }
84
85     protected void writeFile( File file, String content )
86         throws IOException
87     {
88         FileUtils.writeStringToFile( file, content );
89     }
90 }