]> source.dussan.org Git - archiva.git/blob
8767cacceb43237913a62a72632ade9c8472f450
[archiva.git] /
1 package org.apache.archiva.webdav;
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 com.gargoylesoftware.htmlunit.WebRequest;
24 import com.gargoylesoftware.htmlunit.WebResponse;
25 import org.apache.archiva.configuration.ProxyConnectorConfiguration;
26 import org.apache.archiva.configuration.RemoteRepositoryConfiguration;
27 import org.apache.archiva.policies.CachedFailuresPolicy;
28 import org.apache.archiva.policies.ChecksumPolicy;
29 import org.apache.archiva.policies.ReleasesPolicy;
30 import org.apache.archiva.policies.SnapshotsPolicy;
31 import org.apache.commons.io.FileUtils;
32 import org.eclipse.jetty.server.Server;
33 import org.eclipse.jetty.server.handler.ContextHandlerCollection;
34 import org.eclipse.jetty.servlet.DefaultServlet;
35 import org.eclipse.jetty.servlet.ServletContextHandler;
36 import org.eclipse.jetty.servlet.ServletHolder;
37 import org.junit.After;
38 import org.junit.Before;
39
40 import java.io.File;
41 import java.nio.charset.Charset;
42
43 /**
44  * AbstractRepositoryServletProxiedTestCase
45  *
46  */
47 public abstract class AbstractRepositoryServletProxiedTestCase
48     extends AbstractRepositoryServletTestCase
49 {
50     class RemoteRepoInfo
51     {
52         public String id;
53
54         public String url;
55
56         public String context;
57
58         public Server server;
59
60         public File root;
61
62         public RemoteRepositoryConfiguration config;
63     }
64
65     protected static final long ONE_SECOND = ( 1000 /* milliseconds */ );
66
67     protected static final long ONE_MINUTE = ( ONE_SECOND * 60 );
68
69     protected static final long ONE_HOUR = ( ONE_MINUTE * 60 );
70
71     protected static final long ONE_DAY = ( ONE_HOUR * 24 );
72
73     protected static final long OVER_ONE_HOUR = ( ONE_HOUR + ONE_MINUTE );
74
75     protected static final long OVER_ONE_DAY = ( ONE_DAY + ONE_HOUR );
76
77     protected static final long OLDER = ( -1 );
78
79     protected static final long NEWER = 0;
80
81     protected static final int EXPECT_MANAGED_CONTENTS = 1;
82
83     protected static final int EXPECT_REMOTE_CONTENTS = 2;
84
85     protected static final int EXPECT_NOT_FOUND = 3;
86
87     protected static final boolean HAS_MANAGED_COPY = true;
88
89     protected static final boolean NO_MANAGED_COPY = false;
90
91     protected RemoteRepoInfo remoteCentral;
92
93     protected RemoteRepoInfo remoteSnapshots;
94
95     @Before
96     @Override
97     public void setUp()
98         throws Exception
99     {
100         super.setUp();
101         startRepository();
102     }
103
104     @Override
105     @After
106     public void tearDown()
107         throws Exception
108     {
109         shutdownServer( remoteCentral );
110         shutdownServer( remoteSnapshots );
111         super.tearDown();
112     }
113
114     protected RemoteRepoInfo createServer( String id )
115         throws Exception
116     {
117         RemoteRepoInfo repo = new RemoteRepoInfo();
118         repo.id = id;
119         repo.context = "/" + id;
120         repo.root = new File( "target/remote-repos/" + id + "/" );
121
122         // Remove exising root contents.
123         if ( repo.root.exists() )
124         {
125             FileUtils.deleteDirectory( repo.root );
126         }
127
128         // Establish root directory.
129         if ( !repo.root.exists() )
130         {
131             repo.root.mkdirs();
132         }
133
134         repo.server = new Server( 0 );
135         ContextHandlerCollection contexts = new ContextHandlerCollection();
136         repo.server.setHandler( contexts );
137
138         ServletContextHandler context = new ServletContextHandler();
139         context.setContextPath( repo.context );
140         context.setResourceBase( repo.root.getAbsolutePath() );
141         context.setAttribute( "dirAllowed", true );
142         context.setAttribute( "maxCacheSize", 0 );
143
144         ServletHolder sh = new ServletHolder( DefaultServlet.class );
145         context.addServlet( sh, "/" );
146
147         contexts.addHandler( context );
148
149         repo.server.start();
150
151         int port = repo.server.getConnectors()[0].getLocalPort();
152         repo.url = "http://localhost:" + port + repo.context;
153         log.info( "Remote HTTP Server started on {}", repo.url );
154
155         repo.config = createRemoteRepository( repo.id, "Testable [" + repo.id + "] Remote Repo", repo.url );
156
157         return repo;
158     }
159
160     protected void assertServerSetupCorrectly( RemoteRepoInfo remoteRepo )
161         throws Exception
162     {
163         //WebConversation wc = new WebConversation();
164         WebRequest request = new GetMethodWebRequest( remoteRepo.url );
165         WebResponse response = getServletUnitClient().getResponse( request );
166         assertResponseOK( response );
167     }
168
169     private void setupConnector( String repoId, RemoteRepoInfo remoteRepo, String releasesPolicy,
170                                  String snapshotsPolicy )
171     {
172         ProxyConnectorConfiguration connector = new ProxyConnectorConfiguration();
173         connector.setSourceRepoId( repoId );
174         connector.setTargetRepoId( remoteRepo.id );
175         connector.addPolicy( ProxyConnectorConfiguration.POLICY_RELEASES, releasesPolicy );
176         connector.addPolicy( ProxyConnectorConfiguration.POLICY_SNAPSHOTS, snapshotsPolicy );
177         connector.addPolicy( ProxyConnectorConfiguration.POLICY_CHECKSUM, ChecksumPolicy.IGNORE );
178         connector.addPolicy( ProxyConnectorConfiguration.POLICY_CACHE_FAILURES, CachedFailuresPolicy.NO );
179
180         archivaConfiguration.getConfiguration().addProxyConnector( connector );
181     }
182
183     protected void shutdownServer( RemoteRepoInfo remoteRepo )
184     {
185         if ( remoteRepo != null )
186         {
187             if ( remoteRepo.server != null )
188             {
189                 if ( remoteRepo.server.isRunning() )
190                 {
191                     try
192                     {
193                         remoteRepo.server.stop();
194                         // int graceful = remoteRepo.server.getGracefulShutdown();
195                         // System.out.println( "server set to graceful shutdown: " + graceful );
196                         // remoteRepo = null;
197                     }
198                     catch ( Exception e )
199                     {
200                         e.printStackTrace( System.err );
201                     }
202                 }
203             }
204         }
205     }
206
207     protected File populateRepo( RemoteRepoInfo remoteRepo, String path, String contents )
208         throws Exception
209     {
210         File destFile = new File( remoteRepo.root, path );
211         if (destFile.exists())
212         {
213             destFile.delete();
214         }
215         destFile.getParentFile().mkdirs();
216         FileUtils.writeStringToFile( destFile, contents, Charset.defaultCharset()  );
217         return destFile;
218     }
219
220     protected void setupCentralRemoteRepo()
221         throws Exception
222     {
223         remoteCentral = createServer( "central" );
224
225         assertServerSetupCorrectly( remoteCentral );
226
227         RemoteRepositoryConfiguration remoteRepositoryConfiguration =
228             archivaConfiguration.getConfiguration().getRemoteRepositoriesAsMap().get( remoteCentral.id );
229         if ( remoteRepositoryConfiguration != null )
230         {
231             archivaConfiguration.getConfiguration().removeRemoteRepository( remoteRepositoryConfiguration );
232         }
233
234         archivaConfiguration.getConfiguration().addRemoteRepository( remoteCentral.config );
235         setupCleanRepo( remoteCentral.root );
236     }
237
238     protected void setupConnector( String repoId, RemoteRepoInfo remoteRepo )
239     {
240         setupConnector( repoId, remoteRepo, ReleasesPolicy.ALWAYS, SnapshotsPolicy.ALWAYS );
241     }
242
243     protected void setupReleaseConnector( String managedRepoId, RemoteRepoInfo remoteRepo, String releasePolicy )
244     {
245         setupConnector( managedRepoId, remoteRepo, releasePolicy, SnapshotsPolicy.ALWAYS );
246     }
247
248     protected void setupSnapshotConnector( String managedRepoId, RemoteRepoInfo remoteRepo, String snapshotsPolicy )
249     {
250         setupConnector( managedRepoId, remoteRepo, ReleasesPolicy.ALWAYS, snapshotsPolicy );
251     }
252
253     protected void setupSnapshotsRemoteRepo()
254         throws Exception
255     {
256         remoteSnapshots = createServer( "snapshots" );
257
258         assertServerSetupCorrectly( remoteSnapshots );
259         RemoteRepositoryConfiguration remoteRepositoryConfiguration =
260             archivaConfiguration.getConfiguration().getRemoteRepositoriesAsMap().get( remoteSnapshots.id );
261         if ( remoteRepositoryConfiguration != null )
262         {
263             archivaConfiguration.getConfiguration().removeRemoteRepository( remoteRepositoryConfiguration );
264         }
265         archivaConfiguration.getConfiguration().addRemoteRepository( remoteSnapshots.config );
266         setupCleanRepo( remoteSnapshots.root );
267     }
268
269
270 }