View Javadoc
1   /*
2    * ====================================================================
3    * Licensed to the Apache Software Foundation (ASF) under one
4    * or more contributor license agreements.  See the NOTICE file
5    * distributed with this work for additional information
6    * regarding copyright ownership.  The ASF licenses this file
7    * to you under the Apache License, Version 2.0 (the
8    * "License"); you may not use this file except in compliance
9    * with the License.  You may obtain a copy of the License at
10   *
11   *   http://www.apache.org/licenses/LICENSE-2.0
12   *
13   * Unless required by applicable law or agreed to in writing,
14   * software distributed under the License is distributed on an
15   * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16   * KIND, either express or implied.  See the License for the
17   * specific language governing permissions and limitations
18   * under the License.
19   * ====================================================================
20   *
21   * This software consists of voluntary contributions made by many
22   * individuals on behalf of the Apache Software Foundation.  For more
23   * information on the Apache Software Foundation, please see
24   * <http://www.apache.org/>.
25   *
26   */
27  package org.apache.hc.client5.http.impl.cache;
28  
29  
30  import java.net.URI;
31  
32  import org.junit.jupiter.api.Assertions;
33  import org.junit.jupiter.api.BeforeEach;
34  import org.junit.jupiter.api.Test;
35  
36  public class TestFileResourceFactory {
37  
38      CacheKeyGenerator keyGenerator;
39  
40      @BeforeEach
41      public void setUp() {
42          keyGenerator = new CacheKeyGenerator();
43      }
44  
45      @Test
46      public void testViaValueLookup() throws Exception {
47          final String requestId = keyGenerator.generateKey(new URI("http://localhost/stuff"));
48  
49          Assertions.assertEquals(
50                  "blah%20blah@http%3A%2F%2Flocalhost%3A80%2Fstuff",
51                  FileResourceFactory.generateUniqueCacheFileName(requestId, "blah blah", null, 0, 0));
52          Assertions.assertEquals(
53                  "blah-blah@http%3A%2F%2Flocalhost%3A80%2Fstuff",
54                  FileResourceFactory.generateUniqueCacheFileName(requestId, "blah-blah", null, 0, 0));
55          Assertions.assertEquals(
56                  "blah%40blah@http%3A%2F%2Flocalhost%3A80%2Fstuff",
57                  FileResourceFactory.generateUniqueCacheFileName(requestId, "blah@blah", null, 0, 0));
58          Assertions.assertEquals(
59                  "039058c6f2c0cb492c533b0a4d14ef77cc0f78abccced5287d84a1a2011cfb81@http%3A%2F%2Flocalhost%3A80%2Fstuff",
60                  FileResourceFactory.generateUniqueCacheFileName(requestId, null, new byte[]{1, 2, 3}, 0, 3));
61          Assertions.assertEquals(
62                  "039058c6f2c0cb492c533b0a4d14ef77cc0f78abccced5287d84a1a2011cfb81@http%3A%2F%2Flocalhost%3A80%2Fstuff",
63                  FileResourceFactory.generateUniqueCacheFileName(requestId, null, new byte[]{1, 2, 3, 4, 5}, 0, 3));
64          Assertions.assertEquals(
65                  "http%3A%2F%2Flocalhost%3A80%2Fstuff",
66                  FileResourceFactory.generateUniqueCacheFileName(requestId, null, null, 0, 0));
67      }
68  
69  }