blob: 400e61516f5e77e812c3f75c1a1f28de81ac5574 [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.sling.installer.provider.jcr.impl;
import java.lang.reflect.Field;
import java.util.Collection;
import java.util.Dictionary;
import java.util.Hashtable;
import org.apache.sling.commons.testing.jcr.EventHelper;
import org.apache.sling.installer.api.OsgiInstaller;
import org.apache.sling.installer.provider.jcr.impl.JcrInstaller.StoppableThread;
import org.apache.sling.jcr.api.SlingRepository;
import org.jmock.Expectations;
import org.jmock.Mockery;
import org.osgi.framework.BundleContext;
import org.osgi.service.component.ComponentContext;
/** JcrInstall test utilities */
class MiscUtil {
static final Mockery mockery = new Mockery();
public static String SEARCH_PATHS [] = { "/libs/", "/apps/" };
public static String RUN_MODES [] = { "dev", "staging" };
/** Set a non-public Field */
static void setField(Object target, String fieldName, Object value) throws SecurityException, NoSuchFieldException, IllegalArgumentException, IllegalAccessException {
final Field f = target.getClass().getDeclaredField(fieldName);
f.setAccessible(true);
f.set(target, value);
}
/** Return a JcrInstaller setup for testing */
static synchronized JcrInstaller getJcrInstaller(SlingRepository repository,
OsgiInstaller osgiInstaller) throws Exception {
final JcrInstaller installer = new JcrInstaller();
setField(installer, "repository", repository);
setField(installer, "installer", osgiInstaller);
setField(installer, "settings", new MockSettings(RUN_MODES));
installer.activate(getMockComponentContext());
Thread.sleep(1000);
return installer;
}
private static ComponentContext COMPONENT_CONTEXT;
static ComponentContext getMockComponentContext() {
if ( COMPONENT_CONTEXT == null ) {
// Setup fake ComponentContext to allow JcrInstaller to start
final ComponentContext cc = mockery.mock(ComponentContext.class);
final BundleContext bc = mockery.mock(BundleContext.class);
final Dictionary<String, Object> emptyDict = new Hashtable<String, Object>();
mockery.checking(new Expectations() {{
allowing(cc).getProperties();
will(returnValue(emptyDict));
allowing(cc).getBundleContext();
will(returnValue(bc));
allowing(bc).getProperty(with(any(String.class)));
will(returnValue(null));
allowing(bc).registerService(with(any(String.class)), with(any(Object.class)), with(any(Dictionary.class)));
will(returnValue(null));
}});
COMPONENT_CONTEXT = cc;
}
return COMPONENT_CONTEXT;
}
static private void waitForCycles(JcrInstaller installer, long initialCycleCount, int expectedCycles, long timeoutMsec) throws Exception {
final long endTime = System.currentTimeMillis() + timeoutMsec;
long cycles = 0;
while(System.currentTimeMillis() < endTime) {
cycles = installer.getCounters()[JcrInstaller.RUN_LOOP_COUNTER] - initialCycleCount;
if(cycles >= expectedCycles) {
return;
}
}
throw new Exception("did not get " + expectedCycles + " installer cycles in " + timeoutMsec + " msec, got " + cycles);
}
/** Get the WatchedFolders of supplied JcrInstaller */
@SuppressWarnings({ "unchecked"})
static Collection<WatchedFolder> getWatchedFolders(JcrInstaller installer) throws Exception {
// get background thread
final Field threadField = installer.getClass().getDeclaredField("backgroundThread");
threadField.setAccessible(true);
final JcrInstaller.StoppableThread thread = (StoppableThread) threadField.get(installer);
// get configuration from thread
final Field configField = thread.getClass().getDeclaredField("cfg");
configField.setAccessible(true);
final InstallerConfig cfg = (InstallerConfig) configField.get(thread);
return cfg.getWatchedFolders();
}
/** Wait long enough for all changes in content to be processed by JcrInstaller */
static void waitAfterContentChanges(EventHelper eventHelper, JcrInstaller installer) throws Exception {
final long startCycles = installer.getCounters()[JcrInstaller.RUN_LOOP_COUNTER];
// First wait for all JCR events to be delivered
eventHelper.waitForEvents(5000L);
// RescanTimer causes a SCAN_DELAY_MSEC wait after JCR events are received
Thread.sleep(RescanTimer.SCAN_DELAY_MSEC * 4);
// And wait for a few JcrInstaller run cycles
MiscUtil.waitForCycles(installer, startCycles, 2, 10000L);
}
/** Wait until installer thread exits */
static void waitForInstallerThread(JcrInstaller installer, long timeoutMsec) throws Exception {
final long endTime = System.currentTimeMillis() + timeoutMsec;
while(System.currentTimeMillis() < endTime) {
if(installer.getCounters()[JcrInstaller.RUN_LOOP_COUNTER] == -1) {
return;
}
}
throw new Exception("JcrInstaller thread did not signal its end (timeout=" + timeoutMsec + " msec)");
}
}