ttomcat-1778514358873.zip-extract/apache-tomcat-11.0.18-src/test/org/apache/tomcat/util/collections/TestConcurrentLruCache.java

Path
ttomcat-1778514358873.zip-extract/apache-tomcat-11.0.18-src/test/org/apache/tomcat/util/collections/TestConcurrentLruCache.java
Status
scanned
Type
file
Name
TestConcurrentLruCache.java
Extension
.java
Programming language
Java
Mime type
text/plain
File type
ASCII text, with CRLF line terminators
Tag

      
    
Rootfs path

      
    
Size
2906 (2.8 KB)
MD5
f7a9510515a31f65f8c5399f52b2dc45
SHA1
b39679bfa6f0c8942e9650e9301cadd2a518068e
SHA256
4b4b82ae5ed10b62397c9baa738d08ac0513bd866be62d09dd1a8f188bc0371e
SHA512

      
    
SHA1_git
5900149e5e7978d82ab4050121ecf847a1944dab
Is binary

      
    
Is text
True
Is archive

      
    
Is media

      
    
Is legal

      
    
Is manifest

      
    
Is readme

      
    
Is top level

      
    
Is key file

      
    
TestConcurrentLruCache.java | 2.8 KB |

/* * 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. */ package org.apache.tomcat.util.collections; import org.junit.Assert; import org.junit.Test; public class TestConcurrentLruCache { @Test public void testLimit() { ConcurrentLruCache<String> cache = getStartingCache(); cache.add("D"); Assert.assertFalse(cache.contains("A")); Assert.assertTrue(cache.contains("B")); Assert.assertTrue(cache.contains("C")); Assert.assertTrue(cache.contains("D")); } @Test public void testLRU() { ConcurrentLruCache<String> cache = getStartingCache(); cache.contains("A"); cache.add("D"); Assert.assertTrue(cache.contains("A")); Assert.assertFalse(cache.contains("B")); Assert.assertTrue(cache.contains("C")); Assert.assertTrue(cache.contains("D")); } @Test public void testIncreaseLimit() { ConcurrentLruCache<String> cache = getStartingCache(); cache.setLimit(4); cache.add("D"); Assert.assertTrue(cache.contains("A")); Assert.assertTrue(cache.contains("B")); Assert.assertTrue(cache.contains("C")); Assert.assertTrue(cache.contains("D")); cache.add("E"); Assert.assertFalse(cache.contains("A")); Assert.assertTrue(cache.contains("B")); Assert.assertTrue(cache.contains("C")); Assert.assertTrue(cache.contains("D")); Assert.assertTrue(cache.contains("E")); } @Test public void testReduceLimit() { ConcurrentLruCache<String> cache = getStartingCache(); cache.contains("A"); cache.setLimit(2); Assert.assertTrue(cache.contains("A")); Assert.assertFalse(cache.contains("B")); Assert.assertTrue(cache.contains("C")); } private ConcurrentLruCache<String> getStartingCache() { ConcurrentLruCache<String> cache = new ConcurrentLruCache<>(3); cache.add("A"); cache.add("B"); cache.add("C"); return cache; } }
Detected license expression
apache-2.0
Detected license expression (SPDX)
Apache-2.0
Percentage of license text
39.14
Copyrights

      
    
Holders

      
    
Authors

      
    
License detections License expression License expression SPDX
apache_2_0-4bde3f57-78aa-4201-96bf-531cba09e7de apache-2.0 Apache-2.0
URL Start line End line
http://www.apache.org/licenses/LICENSE-2.0 9 9