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