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