blob: a6ae984e07b1596b521704184f444f21ca0eea61 [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.bgservlets.impl.storage;
import static org.junit.Assert.fail;
import java.util.Hashtable;
import java.util.UUID;
import java.util.regex.Pattern;
import junitx.util.PrivateAccessor;
import org.apache.sling.settings.SlingSettingsService;
import org.jmock.Expectations;
import org.jmock.Mockery;
import org.junit.Before;
import org.junit.Test;
import org.osgi.service.component.ComponentContext;
public class JobStorageImplTest {
private JobStorageImpl storage;
private final Mockery mockery = new Mockery();
private final String instanceId = UUID.randomUUID().toString();
@Before
public void setup() throws NoSuchFieldException {
storage = new JobStorageImpl();
final Hashtable<String, Object> props = new Hashtable<String, Object>();
props.put("job.storage.path", "/var/test");
final ComponentContext ctx = mockery.mock(ComponentContext.class);
mockery.checking(new Expectations() {{
allowing(ctx).getProperties();
will(returnValue(props));
}});
final SlingSettingsService sss = mockery.mock(SlingSettingsService.class);
mockery.checking(new Expectations() {{
allowing(sss).getSlingId();
will(returnValue(instanceId));
}});
PrivateAccessor.setField(storage, "slingSettings", sss);
storage.activate(ctx);
}
private void assertPath(String regex, String actual) {
if(!Pattern.compile(regex).matcher(actual).matches()) {
fail("Path " + actual + " does not match expected regex " + regex);
}
}
@Test
public void testNextPath() {
for(int i=1 ; i<10; i++) {
assertPath("/var/test/" + instanceId + "/2.*/" + i + "$", storage.getNextPath());
}
}
}