[infinispan-issues] [JBoss JIRA] (ISPN-1673) Max entries logic broken

Galder Zamarreño (Commented) (JIRA) jira-events at lists.jboss.org
Thu Jan 5 07:32:09 EST 2012


    [ https://issues.jboss.org/browse/ISPN-1673?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12654024#comment-12654024 ] 

Galder Zamarreño commented on ISPN-1673:
----------------------------------------

Btw, I believe this worked fine with 5.0.0.FINAL, so seems to be have been introduced in the 5.1 series.
                
> Max entries logic broken
> ------------------------
>
>                 Key: ISPN-1673
>                 URL: https://issues.jboss.org/browse/ISPN-1673
>             Project: Infinispan
>          Issue Type: Bug
>          Components: Eviction
>    Affects Versions: 5.1.0.CR2
>            Reporter: Galder Zamarreño
>            Assignee: Vladimir Blagojevic
>            Priority: Blocker
>             Fix For: 5.1.0.CR3
>
>
> The following test:
> {code}@Test(groups = "functional", testName = "eviction.MaxEntriesTest")
> public class MaxEntriesTest extends SingleCacheManagerTest {
>    @Override
>    protected EmbeddedCacheManager createCacheManager() throws Exception {
>       ConfigurationBuilder builder = TestCacheManagerFactory.getDefaultCacheConfiguration(false);
>       builder.eviction().maxEntries(4).strategy(EvictionStrategy.FIFO).build();
>       return new DefaultCacheManager(builder.build());
>    }
>    public void test000() {
>       cache.put(1, "1");
>       assert cache.size() == 1;
>       cache.put(2, "2");
>       assert cache.size() == 2;
>       cache.put(3, "3");
>       assert cache.size() == 3 : "Size is: " + cache.size();
>    }
>    
> }{code}
> Fails with:
> {code}java.lang.AssertionError: Size is: 2{code}
> @Vladimir, is this related to some of your container changes?

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.jboss.org/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

       



More information about the infinispan-issues mailing list