]> source.dussan.org Git - archiva.git/blob
2c9995c0b9c1dba3117595d69893e90097ddcdf8
[archiva.git] /
1 package org.apache.archiva.policies;
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 org.apache.archiva.policies.urlcache.UrlFailureCache;
24 import org.apache.archiva.test.utils.ArchivaSpringJUnit4ClassRunner;
25 import org.junit.Test;
26 import org.junit.runner.RunWith;
27 import org.springframework.test.context.ContextConfiguration;
28
29 import javax.inject.Inject;
30 import javax.inject.Named;
31 import java.nio.file.Path;
32 import java.nio.file.Paths;
33 import java.util.Properties;
34
35 /**
36  * CachedFailuresPolicyTest
37  *
38  *
39  */
40 @RunWith( ArchivaSpringJUnit4ClassRunner.class )
41 @ContextConfiguration( locations = { "classpath*:/META-INF/spring-context.xml", "classpath*:/spring-context.xml" } )
42 public class CachedFailuresPolicyTest
43     extends TestCase
44 {
45
46
47     @Inject
48     private UrlFailureCache urlFailureCache;
49
50     @Inject
51     @Named( value = "preDownloadPolicy#cache-failures" )
52     DownloadPolicy downloadPolicy;
53
54     private DownloadPolicy lookupPolicy()
55         throws Exception
56     {
57         return downloadPolicy;
58     }
59
60     private Path getFile()
61     {
62         return Paths.get( "target/cache-failures/" + getName() + ".txt" );
63     }
64
65     private Properties createRequest()
66     {
67         Properties request = new Properties();
68
69         return request;
70     }
71
72     @Test
73     public void testPolicyNo()
74         throws Exception
75     {
76         DownloadPolicy policy = lookupPolicy();
77         Path localFile = getFile();
78         Properties request = createRequest();
79
80         request.setProperty( "url", "http://a.bad.hostname.maven.org/path/to/resource.txt" );
81
82         policy.applyPolicy( CachedFailuresPolicy.NO, request, localFile );
83     }
84
85     @Test( expected = PolicyViolationException.class )
86     public void testPolicyYes()
87         throws Exception
88     {
89
90         DownloadPolicy policy = lookupPolicy();
91         Path localFile = getFile();
92         Properties request = createRequest();
93         // make unique name
94         String url = "http://a.bad.hostname.maven.org/path/to/resource"+ System.currentTimeMillis() +".txt";
95         
96         request.setProperty( "url", url );
97
98         // should not fail
99         policy.applyPolicy( CachedFailuresPolicy.YES, request, localFile );
100         // status Yes Not In cache
101
102         // Yes in Cache
103         
104         urlFailureCache.cacheFailure( url );
105
106         request.setProperty( "url", url );
107
108         policy.applyPolicy( CachedFailuresPolicy.YES, request, localFile );       
109     }
110 }