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