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