blob: de79e508a1494452315a1508c408f0e7724e2d75 [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.
*/
package org.apache.jackrabbit.oak.plugins.index.search.update;
import java.util.concurrent.TimeUnit;
import org.apache.jackrabbit.oak.stats.Clock;
import org.junit.Test;
public class TimedRefreshPolicyTest {
private final Clock clock = new Clock.Virtual();
private final RecordingRunnable refreshCallback = new RecordingRunnable();
@Test
public void dirtyAndFirstCheck() throws Exception{
clock.waitUntil(System.currentTimeMillis());
TimedRefreshPolicy policy = new TimedRefreshPolicy(clock, TimeUnit.SECONDS, 1);
policy.refreshOnWriteIfRequired(refreshCallback);
refreshCallback.assertNotInvokedAndReset();
policy.updated();
policy.refreshOnWriteIfRequired(refreshCallback);
refreshCallback.assertInvokedAndReset();
policy.refreshOnWriteIfRequired(refreshCallback);
refreshCallback.assertNotInvokedAndReset();
}
@Test
public void dirtyAndNotElapsedTimed() throws Exception{
clock.waitUntil(System.currentTimeMillis());
TimedRefreshPolicy policy = new TimedRefreshPolicy(clock, TimeUnit.SECONDS, 1);
policy.updated();
policy.refreshOnWriteIfRequired(refreshCallback);
refreshCallback.assertInvokedAndReset();
policy.refreshOnWriteIfRequired(refreshCallback);
refreshCallback.assertNotInvokedAndReset();
policy.updated();
//Given time has not elapsed it should still be false
policy.refreshOnWriteIfRequired(refreshCallback);
refreshCallback.assertNotInvokedAndReset();
}
@Test
public void dirtyAndElapsedTime() throws Exception{
clock.waitUntil(System.currentTimeMillis());
TimedRefreshPolicy policy = new TimedRefreshPolicy(clock, TimeUnit.SECONDS, 1);
policy.updated();
policy.refreshOnWriteIfRequired(refreshCallback);
refreshCallback.assertInvokedAndReset();
policy.refreshOnWriteIfRequired(refreshCallback);
refreshCallback.assertNotInvokedAndReset();
policy.updated();
//Given time has not elapsed it should still be false
//in both reader and writer mode
policy.refreshOnWriteIfRequired(refreshCallback);
refreshCallback.assertNotInvokedAndReset();
policy.refreshOnWriteIfRequired(refreshCallback);
refreshCallback.assertNotInvokedAndReset();
//Let the refresh delta time elapse
long refreshDelta = TimeUnit.SECONDS.toMillis(1) + 1;
clock.waitUntil(System.currentTimeMillis() + refreshDelta);
policy.refreshOnWriteIfRequired(refreshCallback);
refreshCallback.assertInvokedAndReset();
policy.refreshOnWriteIfRequired(refreshCallback);
refreshCallback.assertNotInvokedAndReset();
policy.updated();
//Do similar check for read
clock.waitUntil(clock.getTime() + refreshDelta);
policy.refreshOnReadIfRequired(refreshCallback);
refreshCallback.assertInvokedAndReset();
policy.refreshOnReadIfRequired(refreshCallback);
refreshCallback.assertNotInvokedAndReset();
}
}