]> source.dussan.org Git - archiva.git/blob
14a1df4cb8e26b759ba00121b916f8ce6fd5871b
[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 java.io.File;
23
24 import org.apache.maven.archiva.transaction.CreateFileEvent;
25 import org.codehaus.plexus.PlexusTestCase;
26 import org.codehaus.plexus.util.FileUtils;
27
28 /**
29  * @author Edwin Punzalan
30  */
31 public class CreateFileEventTest
32     extends AbstractFileEventTest
33 {
34     private File testDir = new File( PlexusTestCase.getBasedir(), "target/transaction-tests/create-file" );
35
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( PlexusTestCase.getBasedir(), "target" ).exists() );
59     }
60
61     public void testCreateCommitRollbackWithBackup()
62         throws Exception
63     {
64         File testFile = new File( testDir, "test-file.txt" );
65
66         testFile.getParentFile().mkdirs();
67
68         testFile.createNewFile();
69
70         writeFile( testFile, "original contents" );
71
72         CreateFileEvent event = new CreateFileEvent( "modified contents", testFile, digesters );
73
74         String contents = readFile( testFile );
75
76         assertEquals( "Test contents have not changed", "original contents", contents );
77
78         event.commit();
79
80         contents = readFile( testFile );
81
82         assertEquals( "Test contents have not changed", "modified contents", contents );
83
84         assertChecksumCommit( testFile );
85
86         event.rollback();
87
88         contents = readFile( testFile );
89
90         assertEquals( "Test contents have not changed", "original contents", contents );
91
92         assertChecksumRollback( testFile );
93     }
94
95     public void testCreateRollbackCommit()
96         throws Exception
97     {
98         File testFile = new File( testDir, "test-file.txt" );
99
100         CreateFileEvent event = new CreateFileEvent( "file contents", testFile, digesters );
101
102         assertFalse( "Test file is not yet created", testFile.exists() );
103
104         event.rollback();
105
106         assertFalse( "Test file is not yet created", testFile.exists() );
107
108         event.commit();
109
110         assertTrue( "Test file is not yet created", testFile.exists() );
111
112         assertChecksumCommit( testFile );
113     }
114
115     protected void tearDown()
116         throws Exception
117     {
118         super.tearDown();
119
120         FileUtils.deleteDirectory( new File( PlexusTestCase.getBasedir(), "target/transaction-tests" ) );
121     }
122 }