blob: a99b3abc8406f7cd802ecf19214c5e791ae4ab79 [file] [log] [blame]
/*
* ====================================================================
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
* ====================================================================
*
* This software consists of voluntary contributions made by many
* individuals on behalf of the Apache Software Foundation. For more
* information on the Apache Software Foundation, please see
* <http://www.apache.org/>.
*
*/
package org.apache.hc.client5.http.impl.cache;
import static org.mockito.ArgumentMatchers.isA;
import static org.mockito.Mockito.mock;
import static org.mockito.Mockito.reset;
import static org.mockito.Mockito.verify;
import static org.mockito.Mockito.when;
import java.io.File;
import java.util.Date;
import org.apache.hc.client5.http.HttpRoute;
import org.apache.hc.client5.http.cache.HttpCacheStorage;
import org.apache.hc.client5.http.cache.ResourceFactory;
import org.apache.hc.client5.http.sync.ExecRuntime;
import org.apache.hc.client5.http.protocol.HttpClientContext;
import org.apache.hc.client5.http.sync.ExecChain;
import org.apache.hc.client5.http.sync.ExecChainHandler;
import org.apache.hc.client5.http.sync.methods.HttpGet;
import org.apache.hc.client5.http.utils.DateUtils;
import org.apache.hc.core5.http.ClassicHttpRequest;
import org.apache.hc.core5.http.ClassicHttpResponse;
import org.apache.hc.core5.http.HttpHost;
import org.apache.hc.core5.http.message.BasicClassicHttpResponse;
import org.junit.After;
import org.junit.Assert;
import org.junit.Before;
import org.junit.Test;
public class TestHttpCacheJiraNumber1147 {
private File cacheDir;
private void removeCache() {
if (this.cacheDir != null) {
final File[] files = this.cacheDir.listFiles();
for (final File cacheFile : files) {
cacheFile.delete();
}
this.cacheDir.delete();
this.cacheDir = null;
}
}
@Before
public void setUp() throws Exception {
cacheDir = File.createTempFile("cachedir", "");
if (cacheDir.exists()) {
cacheDir.delete();
}
cacheDir.mkdir();
}
@After
public void cleanUp() {
removeCache();
}
@Test
public void testIssue1147() throws Exception {
final CacheConfig cacheConfig = CacheConfig.custom()
.setSharedCache(true)
.setMaxObjectSize(262144) //256kb
.build();
final ResourceFactory resourceFactory = new FileResourceFactory(cacheDir);
final HttpCacheStorage httpCacheStorage = new ManagedHttpCacheStorage(cacheConfig);
final ExecChain mockExecChain = mock(ExecChain.class);
final ExecRuntime mockEndpoint = mock(ExecRuntime.class);
final HttpHost target = new HttpHost("somehost", 80);
final HttpRoute route = new HttpRoute(target);
final ClassicHttpRequest get = new HttpGet("http://somehost/");
final HttpClientContext context = HttpClientContext.create();
final Date now = new Date();
final Date tenSecondsAgo = new Date(now.getTime() - 10 * 1000L);
final ClassicHttpResponse response = new BasicClassicHttpResponse(200, "OK");
response.setEntity(HttpTestUtils.makeBody(128));
response.setHeader("Content-Length", "128");
response.setHeader("ETag", "\"etag\"");
response.setHeader("Cache-Control", "public, max-age=3600");
response.setHeader("Last-Modified", DateUtils.formatDate(tenSecondsAgo));
when(mockExecChain.proceed(
isA(ClassicHttpRequest.class),
isA(ExecChain.Scope.class))).thenReturn(response);
final BasicHttpCache cache = new BasicHttpCache(resourceFactory, httpCacheStorage, cacheConfig);
final ExecChainHandler t = createCachingExecChain(cache, cacheConfig);
final ExecChain.Scope scope = new ExecChain.Scope(route, get, mockEndpoint, context);
final ClassicHttpResponse response1 = t.execute(get, scope, mockExecChain);
Assert.assertEquals(200, response1.getCode());
IOUtils.consume(response1.getEntity());
verify(mockExecChain).proceed(isA(ClassicHttpRequest.class), isA(ExecChain.Scope.class));
removeCache();
reset(mockExecChain);
when(mockExecChain.proceed(isA(ClassicHttpRequest.class), isA(ExecChain.Scope.class))).thenReturn(response);
final ClassicHttpResponse response2 = t.execute(get, scope, mockExecChain);
Assert.assertEquals(200, response2.getCode());
IOUtils.consume(response2.getEntity());
verify(mockExecChain).proceed(
isA(ClassicHttpRequest.class),
isA(ExecChain.Scope.class));
}
protected ExecChainHandler createCachingExecChain(final BasicHttpCache cache, final CacheConfig config) {
return new CachingExec(cache, config);
}
}