1 package org.apache.archiva.policies;
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
12 * http://www.apache.org/licenses/LICENSE-2.0
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
22 import junit.framework.TestCase;
23 import org.apache.archiva.policies.urlcache.UrlFailureCache;
24 import org.junit.Test;
25 import org.junit.runner.RunWith;
26 import org.springframework.test.context.ContextConfiguration;
28 import javax.inject.Inject;
29 import javax.inject.Named;
31 import java.util.Properties;
32 import org.apache.archiva.test.utils.ArchivaSpringJUnit4ClassRunner;
35 * CachedFailuresPolicyTest
39 @RunWith( ArchivaSpringJUnit4ClassRunner.class )
40 @ContextConfiguration( locations = { "classpath*:/META-INF/spring-context.xml", "classpath*:/spring-context.xml" } )
41 public class CachedFailuresPolicyTest
47 private UrlFailureCache urlFailureCache;
50 @Named( value = "preDownloadPolicy#cache-failures" )
51 DownloadPolicy downloadPolicy;
53 private DownloadPolicy lookupPolicy()
56 return downloadPolicy;
59 private File getFile()
61 return new File( "target/cache-failures/" + getName() + ".txt" );
64 private Properties createRequest()
66 Properties request = new Properties();
72 public void testPolicyNo()
75 DownloadPolicy policy = lookupPolicy();
76 File localFile = getFile();
77 Properties request = createRequest();
79 request.setProperty( "url", "http://a.bad.hostname.maven.org/path/to/resource.txt" );
81 policy.applyPolicy( CachedFailuresPolicy.NO, request, localFile );
84 @Test( expected = PolicyViolationException.class )
85 public void testPolicyYes()
89 DownloadPolicy policy = lookupPolicy();
90 File localFile = getFile();
91 Properties request = createRequest();
93 String url = "http://a.bad.hostname.maven.org/path/to/resource"+ System.currentTimeMillis() +".txt";
95 request.setProperty( "url", url );
98 policy.applyPolicy( CachedFailuresPolicy.YES, request, localFile );
99 // status Yes Not In cache
103 urlFailureCache.cacheFailure( url );
105 request.setProperty( "url", url );
107 policy.applyPolicy( CachedFailuresPolicy.YES, request, localFile );