mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-06-02 17:35:18 +00:00
git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@2005 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
115 lines
3.8 KiB
Java
115 lines
3.8 KiB
Java
/*
|
|
* Copyright (C) 2005 Alfresco, Inc.
|
|
*
|
|
* Licensed under the Mozilla Public License version 1.1
|
|
* with a permitted attribution clause. You may obtain a
|
|
* copy of the License at
|
|
*
|
|
* http://www.alfresco.org/legal/license.txt
|
|
*
|
|
* 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.alfresco.repo.content;
|
|
|
|
import java.util.Date;
|
|
|
|
import junit.framework.TestSuite;
|
|
|
|
import org.alfresco.service.cmr.repository.ContentReader;
|
|
import org.alfresco.service.cmr.repository.ContentWriter;
|
|
import org.alfresco.util.BaseSpringTest;
|
|
import org.quartz.JobDataMap;
|
|
import org.quartz.JobExecutionContext;
|
|
import org.quartz.JobExecutionException;
|
|
import org.quartz.Scheduler;
|
|
import org.quartz.SchedulerFactory;
|
|
import org.quartz.impl.StdSchedulerFactory;
|
|
import org.quartz.impl.calendar.BaseCalendar;
|
|
import org.quartz.spi.TriggerFiredBundle;
|
|
import org.springframework.scheduling.quartz.SimpleTriggerBean;
|
|
|
|
/**
|
|
* Content store cleanup job unit test
|
|
*
|
|
* @author Roy Wetherall
|
|
*/
|
|
public class ContentStoreCleanupJobTest extends BaseSpringTest
|
|
{
|
|
private SimpleTriggerBean simpleTriggerBean;
|
|
private JobExecutionContext jobExecutionContext;
|
|
private ContentStoreCleanupJob job;
|
|
|
|
private ContentStore contentStore;
|
|
private String url;
|
|
|
|
/**
|
|
* This can be removed once the class being tested actually has a remote
|
|
* chance of working.
|
|
*/
|
|
public static TestSuite suite()
|
|
{
|
|
return new TestSuite();
|
|
}
|
|
|
|
/**
|
|
* On setup in transaction
|
|
*/
|
|
@Override
|
|
protected void onSetUpInTransaction() throws Exception
|
|
{
|
|
this.contentStore = (ContentStore)this.applicationContext.getBean("fileContentStore");
|
|
this.simpleTriggerBean = (SimpleTriggerBean)this.applicationContext.getBean("fileContentStoreCleanerTrigger");
|
|
|
|
SchedulerFactory factory = new StdSchedulerFactory();
|
|
Scheduler scheduler = factory.getScheduler();
|
|
|
|
// Set the protect hours to 0 for the purpose of this test
|
|
JobDataMap jobDataMap = this.simpleTriggerBean.getJobDetail().getJobDataMap();
|
|
jobDataMap.put("protectHours", "0");
|
|
this.simpleTriggerBean.getJobDetail().setJobDataMap(jobDataMap);
|
|
|
|
this.job = new ContentStoreCleanupJob();
|
|
TriggerFiredBundle triggerFiredBundle = new TriggerFiredBundle(
|
|
this.simpleTriggerBean.getJobDetail(),
|
|
this.simpleTriggerBean,
|
|
new BaseCalendar(),
|
|
false,
|
|
new Date(),
|
|
new Date(),
|
|
new Date(),
|
|
new Date());
|
|
|
|
this.jobExecutionContext = new JobExecutionContext(scheduler, triggerFiredBundle, job);
|
|
|
|
ContentWriter contentWriter = this.contentStore.getWriter(null, null);
|
|
contentWriter.putContent("This is some content that I am going to delete.");
|
|
this.url = contentWriter.getContentUrl();
|
|
}
|
|
|
|
/**
|
|
* Test execute method
|
|
*/
|
|
public void testExecute()
|
|
{
|
|
try
|
|
{
|
|
ContentReader before = this.contentStore.getReader(this.url);
|
|
assertTrue(before.exists());
|
|
|
|
this.job.execute(this.jobExecutionContext);
|
|
|
|
ContentReader after = this.contentStore.getReader(this.url);
|
|
assertFalse(after.exists());
|
|
}
|
|
catch (JobExecutionException exception)
|
|
{
|
|
fail("Exception raised!");
|
|
}
|
|
}
|
|
}
|