View Javadoc
1   package org.apache.maven.shared.io.location;
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  import java.io.IOException;
24  
25  import org.apache.maven.shared.io.logging.DefaultMessageHolder;
26  import org.apache.maven.shared.io.logging.MessageHolder;
27  
28  import junit.framework.TestCase;
29  
30  public class FileLocatorStrategyTest
31      extends TestCase
32  {
33  
34      public void testShouldResolveExistingTempFileLocation() throws IOException
35      {
36          File f = File.createTempFile( "file-locator.", ".test" );
37          f.deleteOnExit();
38  
39          FileLocatorStrategy fls = new FileLocatorStrategy();
40  
41          MessageHolder mh = new DefaultMessageHolder();
42  
43          Location location = fls.resolve( f.getAbsolutePath(), mh );
44  
45          assertNotNull( location );
46  
47          assertTrue( mh.isEmpty() );
48  
49          assertEquals( f, location.getFile() );
50      }
51  
52      public void testShouldFailToResolveNonExistentFileLocation() throws IOException
53      {
54          File f = File.createTempFile( "file-locator.", ".test" );
55          f.delete();
56  
57          FileLocatorStrategy fls = new FileLocatorStrategy();
58  
59          MessageHolder mh = new DefaultMessageHolder();
60  
61          Location location = fls.resolve( f.getAbsolutePath(), mh );
62  
63          assertNull( location );
64  
65          System.out.println( mh.render() );
66  
67          assertEquals( 1, mh.size() );
68      }
69  
70  }