]> source.dussan.org Git - archiva.git/blob
13ed7327d569f7ee36c11243c388c60825f96c5e
[archiva.git] /
1 package org.apache.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 junit.framework.TestCase;
23 import org.apache.commons.io.FileUtils;
24 import org.codehaus.plexus.digest.Digester;
25 import org.codehaus.plexus.digest.Md5Digester;
26 import org.codehaus.plexus.digest.Sha1Digester;
27
28 import java.io.File;
29 import java.io.IOException;
30 import java.util.Arrays;
31 import java.util.List;
32
33 /**
34  * @version $Id$
35  */
36 public abstract class AbstractFileEventTest
37     extends TestCase
38 {
39     protected List<Digester> digesters;
40
41     @SuppressWarnings( "unchecked" )
42     public void setUp()
43         throws Exception
44     {
45         super.setUp();
46
47         digesters = Arrays.asList( (Digester) new Md5Digester(), (Digester) new Sha1Digester() );
48     }
49
50     protected void assertChecksumExists( File file, String algorithm )
51     {
52         assertChecksum( file, algorithm, true );
53     }
54
55     protected void assertChecksumDoesNotExist( File file, String algorithm )
56     {
57         assertChecksum( file, algorithm, false );
58     }
59
60     private void assertChecksum( File file, String algorithm, boolean exist )
61     {
62         String msg = exist ? "exists" : "does not exist";
63         File checksumFile = new File( file.getPath() + "." + algorithm );
64         assertEquals( "Test file " + algorithm + " checksum " + msg, exist, checksumFile.exists() );
65     }
66
67     protected void assertChecksumCommit( File file )
68         throws IOException
69     {
70         assertChecksumExists( file, "md5" );
71         assertChecksumExists( file, "sha1" );
72     }
73
74     protected void assertChecksumRollback( File file )
75         throws IOException
76     {
77         assertChecksumDoesNotExist( file, "md5" );
78         assertChecksumDoesNotExist( file, "sha1" );
79     }
80
81     protected String readFile( File file )
82         throws IOException
83     {
84         return FileUtils.readFileToString( file );
85     }
86
87     protected void writeFile( File file, String content )
88         throws IOException
89     {
90         FileUtils.writeStringToFile( file, content );
91     }
92 }