]> source.dussan.org Git - archiva.git/blob
9d23fe9aeb5c79b90bff8e32269391b1c4a6dfaf
[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 java.io.File;
23
24 import org.apache.commons.io.FileUtils;
25 import org.apache.archiva.common.utils.FileUtil;
26
27 /**
28  */
29 public class CreateFileEventTest
30     extends AbstractFileEventTest
31 {
32     private File testDir = new File( FileUtil.getBasedir(), "target/transaction-tests/create-file" );
33
34     public void testCreateCommitRollback()
35         throws Exception
36     {
37         File testFile = new File( testDir, "test-file.txt" );
38
39         CreateFileEvent event = new CreateFileEvent( "file contents", testFile, digesters );
40
41         assertFalse( "Test file is not yet created", testFile.exists() );
42
43         event.commit();
44
45         assertTrue( "Test file has been created", testFile.exists() );
46
47         assertChecksumCommit( testFile );
48
49         event.rollback();
50
51         assertFalse( "Test file is has been deleted after rollback", testFile.exists() );
52
53         assertChecksumRollback( testFile );
54
55         assertFalse( "Test file parent directories has been rolledback too", testDir.exists() );
56         assertTrue( "target directory still exists", new File( FileUtil.getBasedir(), "target" ).exists() );
57     }
58
59     public void testCreateCommitRollbackWithBackup()
60         throws Exception
61     {
62         File testFile = new File( testDir, "test-file.txt" );
63
64         testFile.getParentFile().mkdirs();
65
66         testFile.createNewFile();
67
68         writeFile( testFile, "original contents" );
69
70         CreateFileEvent event = new CreateFileEvent( "modified contents", testFile, digesters );
71
72         String contents = readFile( testFile );
73
74         assertEquals( "Test contents have not changed", "original contents", contents );
75
76         event.commit();
77
78         contents = readFile( testFile );
79
80         assertEquals( "Test contents have not changed", "modified contents", contents );
81
82         assertChecksumCommit( testFile );
83
84         event.rollback();
85
86         contents = readFile( testFile );
87
88         assertEquals( "Test contents have not changed", "original contents", contents );
89
90         assertChecksumRollback( testFile );
91     }
92
93     public void testCreateRollbackCommit()
94         throws Exception
95     {
96         File testFile = new File( testDir, "test-file.txt" );
97
98         CreateFileEvent event = new CreateFileEvent( "file contents", testFile, digesters );
99
100         assertFalse( "Test file is not yet created", testFile.exists() );
101
102         event.rollback();
103
104         assertFalse( "Test file is not yet created", testFile.exists() );
105
106         event.commit();
107
108         assertTrue( "Test file is not yet created", testFile.exists() );
109
110         assertChecksumCommit( testFile );
111     }
112
113     protected void tearDown()
114         throws Exception
115     {
116         super.tearDown();
117
118         FileUtils.deleteDirectory( new File( FileUtil.getBasedir(), "target/transaction-tests" ) );
119     }
120 }