]> source.dussan.org Git - archiva.git/blob
eab69300efed66d0845a29d234cacc1453ea6311
[archiva.git] /
1 package org.apache.maven.archiva.proxy;
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.BufferedReader;
23 import java.io.File;
24 import java.io.FileReader;
25 import java.io.IOException;
26 import java.text.ParseException;
27 import java.text.SimpleDateFormat;
28 import java.util.Calendar;
29 import java.util.Collection;
30 import java.util.Date;
31 import java.util.Locale;
32
33 import org.apache.commons.io.FileUtils;
34 import org.apache.commons.lang.ArrayUtils;
35 import org.apache.maven.archiva.configuration.ArchivaConfiguration;
36 import org.apache.maven.archiva.configuration.ManagedRepositoryConfiguration;
37 import org.apache.maven.archiva.configuration.ProxyConnectorConfiguration;
38 import org.apache.maven.archiva.configuration.RemoteRepositoryConfiguration;
39 import org.apache.maven.archiva.policies.CachedFailuresPolicy;
40 import org.apache.maven.archiva.policies.ChecksumPolicy;
41 import org.apache.maven.archiva.policies.PropagateErrorsDownloadPolicy;
42 import org.apache.maven.archiva.policies.PropagateErrorsOnUpdateDownloadPolicy;
43 import org.apache.maven.archiva.policies.ReleasesPolicy;
44 import org.apache.maven.archiva.policies.SnapshotsPolicy;
45 import org.apache.maven.archiva.repository.ManagedRepositoryContent;
46 import org.apache.maven.wagon.Wagon;
47 import org.codehaus.plexus.spring.PlexusInSpringTestCase;
48 import org.easymock.ArgumentsMatcher;
49 import org.easymock.MockControl;
50
51 /**
52  * AbstractProxyTestCase
53  *
54  * @version $Id$
55  */
56 public abstract class AbstractProxyTestCase
57     extends PlexusInSpringTestCase
58 {
59     protected static final String ID_LEGACY_PROXIED = "legacy-proxied";
60
61     protected static final String ID_PROXIED1 = "proxied1";
62
63     protected static final String ID_PROXIED1_TARGET = "proxied1-target";
64
65     protected static final String ID_PROXIED2 = "proxied2";
66
67     protected static final String ID_PROXIED2_TARGET = "proxied2-target";
68
69     protected static final String ID_DEFAULT_MANAGED = "default-managed-repository";
70
71     protected static final String ID_LEGACY_MANAGED = "legacy-managed-repository";
72
73     protected static final String REPOPATH_PROXIED_LEGACY = "src/test/repositories/legacy-proxied";
74
75     protected static final String REPOPATH_PROXIED1 = "src/test/repositories/proxied1";
76
77     protected static final String REPOPATH_PROXIED1_TARGET = "target/test-repository/proxied1";
78
79     protected static final String REPOPATH_PROXIED2 = "src/test/repositories/proxied2";
80
81     protected static final String REPOPATH_PROXIED2_TARGET = "target/test-repository/proxied2";
82
83     protected static final String REPOPATH_DEFAULT_MANAGED = "src/test/repositories/managed";
84
85     // protected static final String REPOPATH_DEFAULT_MANAGED_TARGET = "target/test-repository/managed";
86
87     protected static final String REPOPATH_LEGACY_MANAGED = "src/test/repositories/legacy-managed";
88
89     protected static final String REPOPATH_LEGACY_MANAGED_TARGET = "target/test-repository/legacy-managed";
90
91     protected static final ArgumentsMatcher customWagonGetIfNewerMatcher = new ArgumentsMatcher() {
92
93         public boolean matches(Object[] expected, Object[] actual) {
94             if (expected.length < 1 || actual.length < 1)
95             {
96                 return false;
97             }
98             return MockControl.ARRAY_MATCHER.matches(ArrayUtils.remove(expected, 1), ArrayUtils.remove(actual, 1));
99         }
100
101         public String toString(Object[] arguments) {
102             return ArrayUtils.toString(arguments);
103         }
104     };
105
106     protected static final ArgumentsMatcher customWagonGetMatcher = new ArgumentsMatcher() {
107
108             public boolean matches(Object[] expected, Object[] actual)
109             {
110                 if (expected.length == 2 && actual.length == 2)
111                 {
112                     if (expected[0] == null && actual[0] == null)
113                     {
114                         return true;
115                     }
116
117                     if (expected[0] == null)
118                     {
119                         return actual[0] == null;
120                     }
121
122                     if (actual[0] == null)
123                     {
124                         return expected[0] == null;
125                     }
126
127                     return expected[0].equals(actual[0]);
128                 }
129                 return false;
130             }
131
132             public String toString(Object[] arguments)
133             {
134                 return ArrayUtils.toString(arguments);
135             }
136         };
137
138     protected MockControl wagonMockControl;
139
140     protected Wagon wagonMock;
141
142     protected RepositoryProxyConnectors proxyHandler;
143
144     protected ManagedRepositoryContent managedDefaultRepository;
145
146     protected File managedDefaultDir;
147
148     protected ManagedRepositoryContent managedLegacyRepository;
149
150     protected File managedLegacyDir;
151
152     protected MockConfiguration config;
153
154     protected void assertChecksums( File expectedFile, String expectedSha1Contents, String expectedMd5Contents )
155         throws Exception
156     {
157         File sha1File = new File( expectedFile.getAbsolutePath() + ".sha1" );
158         File md5File = new File( expectedFile.getAbsolutePath() + ".md5" );
159
160         if ( expectedSha1Contents == null )
161         {
162             assertFalse( "SHA1 File should NOT exist: " + sha1File.getPath(), sha1File.exists() );
163         }
164         else
165         {
166             assertTrue( "SHA1 File should exist: " + sha1File.getPath(), sha1File.exists() );
167             String actualSha1Contents = readChecksumFile( sha1File );
168             assertEquals( "SHA1 File contents: " + sha1File.getPath(), expectedSha1Contents, actualSha1Contents );
169         }
170
171         if ( expectedMd5Contents == null )
172         {
173             assertFalse( "MD5 File should NOT exist: " + md5File.getPath(), md5File.exists() );
174         }
175         else
176         {
177             assertTrue( "MD5 File should exist: " + md5File.getPath(), md5File.exists() );
178             String actualMd5Contents = readChecksumFile( md5File );
179             assertEquals( "MD5 File contents: " + md5File.getPath(), expectedMd5Contents, actualMd5Contents );
180         }
181     }
182
183     protected void assertFileEquals( File expectedFile, File actualFile, File sourceFile )
184         throws Exception
185     {
186         assertNotNull( "Expected File should not be null.", expectedFile );
187         assertNotNull( "Actual File should not be null.", actualFile );
188
189         assertTrue( "Check actual file exists.", actualFile.exists() );
190         assertEquals( "Check filename path is appropriate.", expectedFile.getCanonicalPath(), actualFile.getCanonicalPath() );
191         assertEquals( "Check file path matches.", expectedFile.getAbsolutePath(), actualFile.getAbsolutePath() );
192
193         String expectedContents = FileUtils.readFileToString( sourceFile, null );
194         String actualContents = FileUtils.readFileToString( actualFile, null );
195         assertEquals( "Check file contents.", expectedContents, actualContents );
196     }
197
198     protected void assertNotDownloaded( File downloadedFile )
199     {
200         assertNull( "Found file: " + downloadedFile + "; but was expecting a failure", downloadedFile );
201     }
202
203     protected void assertNoTempFiles( File expectedFile )
204     {
205         File workingDir = expectedFile.getParentFile();
206         if ( ( workingDir == null ) || !workingDir.isDirectory() )
207         {
208             return;
209         }
210
211         Collection<File> tmpFiles = FileUtils.listFiles( workingDir, new String[] { "tmp" }, false );
212         if ( !tmpFiles.isEmpty() )
213         {
214             StringBuffer emsg = new StringBuffer();
215             emsg.append( "Found Temp Files in dir: " ).append( workingDir.getPath() );
216             for ( File tfile : tmpFiles )
217             {
218                 emsg.append( "\n   " ).append( tfile.getName() );
219             }
220             fail( emsg.toString() );
221         }
222     }
223
224     /**
225      * A faster recursive copy that omits .svn directories.
226      *
227      * @param sourceDirectory the source directory to copy
228      * @param destDirectory   the target location
229      * @throws java.io.IOException if there is a copying problem
230      * @todo get back into plexus-utils, share with converter module
231      */
232     protected void copyDirectoryStructure( File sourceDirectory, File destDirectory )
233         throws IOException
234     {
235         if ( !sourceDirectory.exists() )
236         {
237             throw new IOException( "Source directory doesn't exists (" + sourceDirectory.getAbsolutePath() + ")." );
238         }
239
240         File[] files = sourceDirectory.listFiles();
241
242         String sourcePath = sourceDirectory.getAbsolutePath();
243
244         for ( int i = 0; i < files.length; i++ )
245         {
246             File file = files[i];
247
248             String dest = file.getAbsolutePath();
249
250             dest = dest.substring( sourcePath.length() + 1 );
251
252             File destination = new File( destDirectory, dest );
253
254             if ( file.isFile() )
255             {
256                 destination = destination.getParentFile();
257
258                 FileUtils.copyFile( file, new File( destination, file.getName() ), false );
259                 // TODO: Change when there is a FileUtils.copyFileToDirectory(file, destination, boolean) option
260                 //FileUtils.copyFileToDirectory( file, destination );
261             }
262             else if ( file.isDirectory() )
263             {
264                 if ( !".svn".equals( file.getName() ) )
265                 {
266                     if ( !destination.exists() && !destination.mkdirs() )
267                     {
268                         throw new IOException( "Could not create destination directory '"
269                             + destination.getAbsolutePath() + "'." );
270                     }
271
272                     copyDirectoryStructure( file, destination );
273                 }
274             }
275             else
276             {
277                 throw new IOException( "Unknown file type: " + file.getAbsolutePath() );
278             }
279         }
280     }
281
282     protected ManagedRepositoryContent createManagedLegacyRepository()
283         throws Exception
284     {
285         return createRepository( "testManagedLegacyRepo", "Test Managed (Legacy) Repository",
286                                  "src/test/repositories/legacy-managed", "legacy" );
287     }
288
289     protected ManagedRepositoryContent createProxiedLegacyRepository()
290         throws Exception
291     {
292         return createRepository( "testProxiedLegacyRepo", "Test Proxied (Legacy) Repository",
293                                  "src/test/repositories/legacy-proxied", "legacy" );
294     }
295
296     protected ManagedRepositoryContent createRepository( String id, String name, String path, String layout )
297         throws Exception
298     {
299         ManagedRepositoryConfiguration repo = new ManagedRepositoryConfiguration();
300         repo.setId( id );
301         repo.setName( name );
302         repo.setLocation( path );
303         repo.setLayout( layout );
304
305         ManagedRepositoryContent repoContent = (ManagedRepositoryContent) lookup( ManagedRepositoryContent.class,
306                                                                                   layout );
307         repoContent.setRepository( repo );
308         return repoContent;
309     }
310
311     /**
312      * Read the first line from the checksum file, and return it (trimmed).
313      */
314     protected String readChecksumFile( File checksumFile )
315         throws Exception
316     {
317         FileReader freader = null;
318         BufferedReader buf = null;
319
320         try
321         {
322             freader = new FileReader( checksumFile );
323             buf = new BufferedReader( freader );
324             return buf.readLine();
325         }
326         finally
327         {
328             if ( buf != null )
329             {
330                 buf.close();
331             }
332
333             if ( freader != null )
334             {
335                 freader.close();
336             }
337         }
338     }
339
340     protected void saveConnector( String sourceRepoId, String targetRepoId, boolean disabled )
341     {
342         saveConnector( sourceRepoId, targetRepoId, ChecksumPolicy.IGNORE, ReleasesPolicy.ALWAYS,
343                        SnapshotsPolicy.ALWAYS, CachedFailuresPolicy.NO, disabled );
344     }
345
346     protected void saveConnector( String sourceRepoId, String targetRepoId, String checksumPolicy, String releasePolicy,
347                                   String snapshotPolicy, String cacheFailuresPolicy, boolean disabled )
348     {
349         saveConnector( sourceRepoId, targetRepoId, checksumPolicy, releasePolicy, snapshotPolicy, cacheFailuresPolicy,
350                        PropagateErrorsDownloadPolicy.QUEUE, disabled );
351     }
352
353     protected void saveConnector( String sourceRepoId, String targetRepoId, String checksumPolicy, String releasePolicy,
354                                   String snapshotPolicy, String cacheFailuresPolicy, String errorPolicy, boolean disabled )
355     {
356         saveConnector( sourceRepoId, targetRepoId, checksumPolicy, releasePolicy, snapshotPolicy, cacheFailuresPolicy,
357                        errorPolicy, PropagateErrorsOnUpdateDownloadPolicy.NOT_PRESENT, disabled );
358     }
359
360     protected void saveConnector( String sourceRepoId, String targetRepoId, String checksumPolicy, String releasePolicy,
361                                   String snapshotPolicy, String cacheFailuresPolicy, String errorPolicy,
362                                   String errorOnUpdatePolicy, boolean disabled )
363     {
364         ProxyConnectorConfiguration connectorConfig = new ProxyConnectorConfiguration();
365         connectorConfig.setSourceRepoId( sourceRepoId );
366         connectorConfig.setTargetRepoId( targetRepoId );
367         connectorConfig.addPolicy( ProxyConnectorConfiguration.POLICY_CHECKSUM, checksumPolicy );
368         connectorConfig.addPolicy( ProxyConnectorConfiguration.POLICY_RELEASES, releasePolicy );
369         connectorConfig.addPolicy( ProxyConnectorConfiguration.POLICY_SNAPSHOTS, snapshotPolicy );
370         connectorConfig.addPolicy( ProxyConnectorConfiguration.POLICY_CACHE_FAILURES, cacheFailuresPolicy );
371         connectorConfig.addPolicy( ProxyConnectorConfiguration.POLICY_PROPAGATE_ERRORS, errorPolicy );
372         connectorConfig.addPolicy( ProxyConnectorConfiguration.POLICY_PROPAGATE_ERRORS_ON_UPDATE, errorOnUpdatePolicy );
373         connectorConfig.setDisabled(disabled);
374
375         int count = config.getConfiguration().getProxyConnectors().size();
376         config.getConfiguration().addProxyConnector( connectorConfig );
377
378         // Proper Triggering ...
379         String prefix = "proxyConnectors.proxyConnector(" + count + ")";
380         config.triggerChange( prefix + ".sourceRepoId", connectorConfig.getSourceRepoId() );
381         config.triggerChange( prefix + ".targetRepoId", connectorConfig.getTargetRepoId() );
382         config.triggerChange( prefix + ".proxyId", connectorConfig.getProxyId() );
383         config.triggerChange( prefix + ".policies.releases", connectorConfig.getPolicy( "releases", "" ) );
384         config.triggerChange( prefix + ".policies.checksum", connectorConfig.getPolicy( "checksum", "" ) );
385         config.triggerChange( prefix + ".policies.snapshots", connectorConfig.getPolicy( "snapshots", "" ) );
386         config.triggerChange( prefix + ".policies.cache-failures", connectorConfig.getPolicy( "cache-failures", "" ) );
387         config.triggerChange( prefix + ".policies.propagate-errors",
388                               connectorConfig.getPolicy( "propagate-errors", "" ) );
389         config.triggerChange( prefix + ".policies.propagate-errors-on-update",
390                               connectorConfig.getPolicy( "propagate-errors-on-update", "" ) );
391     }
392
393     protected void saveManagedRepositoryConfig( String id, String name, String path, String layout )
394     {
395         ManagedRepositoryConfiguration repoConfig = new ManagedRepositoryConfiguration();
396
397         repoConfig.setId( id );
398         repoConfig.setName( name );
399         repoConfig.setLayout( layout );
400
401         repoConfig.setLocation( path );
402
403         int count = config.getConfiguration().getManagedRepositories().size();
404         config.getConfiguration().addManagedRepository( repoConfig );
405
406         String prefix = "managedRepositories.managedRepository(" + count + ")";
407         config.triggerChange( prefix + ".id", repoConfig.getId() );
408         config.triggerChange( prefix + ".name", repoConfig.getName() );
409         config.triggerChange( prefix + ".location", repoConfig.getLocation() );
410         config.triggerChange( prefix + ".layout", repoConfig.getLayout() );
411     }
412
413     protected void saveRemoteRepositoryConfig( String id, String name, String url, String layout )
414     {
415         RemoteRepositoryConfiguration repoConfig = new RemoteRepositoryConfiguration();
416
417         repoConfig.setId( id );
418         repoConfig.setName( name );
419         repoConfig.setLayout( layout );
420         repoConfig.setUrl( url );
421
422         int count = config.getConfiguration().getRemoteRepositories().size();
423         config.getConfiguration().addRemoteRepository( repoConfig );
424
425         String prefix = "remoteRepositories.remoteRepository(" + count + ")";
426         config.triggerChange( prefix + ".id", repoConfig.getId() );
427         config.triggerChange( prefix + ".name", repoConfig.getName() );
428         config.triggerChange( prefix + ".url", repoConfig.getUrl() );
429         config.triggerChange( prefix + ".layout", repoConfig.getLayout() );
430     }
431
432     protected File saveTargetedRepositoryConfig( String id, String originalPath, String targetPath, String layout )
433         throws IOException
434     {
435         File repoLocation = getTestFile( targetPath );
436         FileUtils.deleteDirectory( repoLocation );
437         copyDirectoryStructure( getTestFile( originalPath ), repoLocation );
438
439         saveRemoteRepositoryConfig( id, "Target Repo-" + id, targetPath, layout );
440
441         return repoLocation;
442     }
443
444     /**
445      * {@inheritDoc}
446      * @see org.codehaus.plexus.spring.PlexusInSpringTestCase#getConfigLocation()
447      */
448     @Override
449     protected String getSpringConfigLocation()
450     {
451         return "org/apache/maven/archiva/proxy/spring-context.xml";
452     }
453
454     @Override
455     protected void setUp()
456         throws Exception
457     {
458         super.setUp();
459
460         config = (MockConfiguration) lookup( ArchivaConfiguration.class.getName(), "mock" );
461
462         // Setup source repository (using default layout)
463         String repoPath = "target/test-repository/managed/" + getName();
464         File repoLocation = getTestFile( repoPath );
465
466         managedDefaultRepository = createRepository( ID_DEFAULT_MANAGED, "Default Managed Repository", repoPath,
467                                                      "default" );
468
469         managedDefaultDir = new File( managedDefaultRepository.getRepoRoot() );
470
471         ManagedRepositoryConfiguration repoConfig = managedDefaultRepository.getRepository();
472
473         config.getConfiguration().addManagedRepository( repoConfig );
474
475         // Setup source repository (using legacy layout)
476         repoLocation = getTestFile( REPOPATH_LEGACY_MANAGED_TARGET );
477         FileUtils.deleteDirectory( repoLocation );
478         copyDirectoryStructure( getTestFile( REPOPATH_LEGACY_MANAGED ), repoLocation );
479
480         managedLegacyRepository = createRepository( ID_LEGACY_MANAGED, "Legacy Managed Repository",
481                                                     REPOPATH_LEGACY_MANAGED_TARGET, "legacy" );
482
483         managedLegacyDir = new File( managedLegacyRepository.getRepoRoot() );
484
485         repoConfig = managedLegacyRepository.getRepository();
486
487         config.getConfiguration().addManagedRepository( repoConfig );
488
489         // Setup target (proxied to) repository.
490         saveRemoteRepositoryConfig( ID_PROXIED1, "Proxied Repository 1", new File( REPOPATH_PROXIED1 ).toURL()
491             .toExternalForm(), "default" );
492
493         // Setup target (proxied to) repository.
494         saveRemoteRepositoryConfig( ID_PROXIED2, "Proxied Repository 2", new File( REPOPATH_PROXIED2 ).toURL()
495             .toExternalForm(), "default" );
496
497         // Setup target (proxied to) repository using legacy layout.
498         saveRemoteRepositoryConfig( ID_LEGACY_PROXIED, "Proxied Legacy Repository", new File( REPOPATH_PROXIED_LEGACY )
499             .toURL().toExternalForm(), "legacy" );
500
501         // Setup the proxy handler.
502         proxyHandler = (RepositoryProxyConnectors) lookup( RepositoryProxyConnectors.class.getName() );
503
504         // Setup the wagon mock.
505         wagonMockControl = MockControl.createNiceControl( Wagon.class );
506         wagonMock = (Wagon) wagonMockControl.getMock();
507         WagonDelegate delegate = (WagonDelegate) lookup( Wagon.ROLE, "test" );
508         delegate.setDelegate( wagonMock );
509
510         System.out.println( "\n.\\ " + getName() + "() \\._________________________________________\n" );
511     }
512
513     /**
514      * Copy the specified resource directory from the src/test/repository/managed/ to
515      * the testable directory under target/test-repository/managed/${testName}/
516      *
517      * @param resourceDir
518      * @throws IOException
519      */
520     protected void setupTestableManagedRepository( String resourcePath )
521         throws IOException
522     {
523         String resourceDir = resourcePath;
524
525         if ( !resourcePath.endsWith( "/" ) )
526         {
527             int idx = resourcePath.lastIndexOf( '/' );
528             resourceDir = resourcePath.substring( 0, idx );
529         }
530
531         File sourceRepoDir = new File( REPOPATH_DEFAULT_MANAGED );
532         File sourceDir = new File( sourceRepoDir, resourceDir );
533
534         File destRepoDir = managedDefaultDir;
535         File destDir = new File( destRepoDir, resourceDir );
536
537         // Cleanout destination dirs.
538         if ( destDir.exists() )
539         {
540             FileUtils.deleteDirectory( destDir );
541         }
542
543         // Make the destination dir.
544         destDir.mkdirs();
545
546         // Test the source dir.
547         if ( !sourceDir.exists() )
548         {
549             // This is just a warning.
550             System.err.println( "[WARN] Skipping setup of testable managed repository, source dir does not exist: "
551                 + sourceDir );
552         }
553         else
554         {
555
556             // Test that the source is a dir.
557             if ( !sourceDir.isDirectory() )
558             {
559                 fail( "Unable to setup testable managed repository, source is not a directory: " + sourceDir );
560             }
561
562             // Copy directory structure.
563             copyDirectoryStructure( sourceDir, destDir );
564         }
565     }
566
567     protected void setManagedNewerThanRemote( File managedFile, File remoteFile )
568     {
569         assertTrue( "Managed File should exist: ", managedFile.exists() );
570         assertTrue( "Remote File should exist: ", remoteFile.exists() );
571
572         managedFile.setLastModified( remoteFile.lastModified() + 55000 );
573     }
574
575     protected void setManagedOlderThanRemote( File managedFile, File remoteFile )
576     {
577         assertTrue( "Managed File should exist: ", managedFile.exists() );
578         assertTrue( "Remote File should exist: ", remoteFile.exists() );
579
580         managedFile.setLastModified( remoteFile.lastModified() - 55000 );
581     }
582
583     protected void assertNotModified( File file, long expectedModificationTime )
584     {
585         assertEquals( "File <" + file.getAbsolutePath() + "> not have been modified.",
586                       expectedModificationTime, file.lastModified() );
587     }
588
589     protected void assertNotExistsInManagedLegacyRepo( File file )
590         throws Exception
591     {
592         String managedLegacyPath = managedLegacyDir.getCanonicalPath();
593         String testFile = file.getCanonicalPath();
594
595         assertTrue( "Unit Test Failure: File <" + testFile
596             + "> should be have been defined within the legacy managed path of <" + managedLegacyPath + ">", testFile
597             .startsWith( managedLegacyPath ) );
598
599         assertFalse( "File < " + testFile + "> should not exist in managed legacy repository.", file.exists() );
600     }
601
602     protected void assertNotExistsInManagedDefaultRepo( File file )
603         throws Exception
604     {
605         String managedDefaultPath = managedDefaultDir.getCanonicalPath();
606         String testFile = file.getCanonicalPath();
607
608         assertTrue( "Unit Test Failure: File <" + testFile
609             + "> should be have been defined within the managed default path of <" + managedDefaultPath + ">", testFile
610             .startsWith( managedDefaultPath ) );
611
612         assertFalse( "File < " + testFile + "> should not exist in managed default repository.", file.exists() );
613     }
614
615     protected static Date getFutureDate()
616         throws ParseException
617     {
618         Calendar cal = Calendar.getInstance();
619         cal.add( Calendar.YEAR, 1 );
620         return cal.getTime();
621     }
622
623     protected static Date getPastDate()
624         throws ParseException
625     {
626         return new SimpleDateFormat( "yyyy-MM-dd", Locale.US ).parse( "2000-01-01" );
627     }
628 }