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