blob: fe91928d12cc981226111fc8bf2263327e9b635c [file] [log] [blame]
/* $Id$ */
/**
* 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.manifoldcf.filesystem_tests;
import org.apache.manifoldcf.core.interfaces.*;
import org.apache.manifoldcf.agents.interfaces.*;
import org.apache.manifoldcf.crawler.interfaces.*;
import org.apache.manifoldcf.crawler.system.ManifoldCF;
import java.io.*;
import java.util.*;
/** This is a test which checks to see if document expiration works properly. */
public class ExpirationTester
{
protected org.apache.manifoldcf.crawler.tests.ManifoldCFInstance instance;
public ExpirationTester(org.apache.manifoldcf.crawler.tests.ManifoldCFInstance instance)
{
this.instance = instance;
}
public void setupTestArea()
throws Exception
{
File f = new File("testdata");
FileHelper.removeDirectory(f);
FileHelper.createDirectory(f);
}
public void teardownTestArea()
throws Exception
{
File f = new File("testdata");
FileHelper.removeDirectory(f);
}
public void executeTest()
throws Exception
{
// Hey, we were able to install the file system connector etc.
// Now, create a local test job and run it.
IThreadContext tc = ThreadContextFactory.make();
// Create a basic file system connection, and save it.
IRepositoryConnectionManager mgr = RepositoryConnectionManagerFactory.make(tc);
IRepositoryConnection conn = mgr.create();
conn.setName("File Connection");
conn.setDescription("File Connection");
conn.setClassName("org.apache.manifoldcf.crawler.connectors.filesystem.FileConnector");
conn.setMaxConnections(100);
// Now, save
mgr.save(conn);
// Create a basic null output connection, and save it.
IOutputConnectionManager outputMgr = OutputConnectionManagerFactory.make(tc);
IOutputConnection outputConn = outputMgr.create();
outputConn.setName("Null Connection");
outputConn.setDescription("Null Connection");
outputConn.setClassName("org.apache.manifoldcf.agents.output.nullconnector.NullConnector");
outputConn.setMaxConnections(100);
// Now, save
outputMgr.save(outputConn);
// Create a job.
IJobManager jobManager = JobManagerFactory.make(tc);
IJobDescription job = jobManager.createJob();
job.setDescription("Test Job");
job.setConnectionName("File Connection");
job.setOutputConnectionName("Null Connection");
job.setType(job.TYPE_SPECIFIED);
job.setStartMethod(job.START_DISABLE);
job.setHopcountMode(job.HOPCOUNT_ACCURATE);
// 60-second expiration for all documents..
job.setExpiration(new Long(60000L));
// Infinite rescan interval.
job.setInterval(null);
// Continuous job.
job.setType(IJobDescription.TYPE_CONTINUOUS);
// Now, set up the document specification.
DocumentSpecification ds = job.getSpecification();
// Crawl everything underneath the 'testdata' area
File testDataFile = new File("testdata").getCanonicalFile();
if (!testDataFile.exists())
throw new ManifoldCFException("Test data area not found! Looking in "+testDataFile.toString());
if (!testDataFile.isDirectory())
throw new ManifoldCFException("Test data area not a directory! Looking in "+testDataFile.toString());
SpecificationNode sn = new SpecificationNode("startpoint");
sn.setAttribute("path",testDataFile.toString());
SpecificationNode n = new SpecificationNode("include");
n.setAttribute("type","file");
n.setAttribute("match","*");
sn.addChild(sn.getChildCount(),n);
n = new SpecificationNode("include");
n.setAttribute("type","directory");
n.setAttribute("match","*");
sn.addChild(sn.getChildCount(),n);
ds.addChild(ds.getChildCount(),sn);
// Set up the output specification.
OutputSpecification os = job.getOutputSpecification();
// Null output connections have no output specification, so this is a no-op.
// Save the job.
jobManager.save(job);
// Create the test data files.
FileHelper.createFile(new File("testdata/test1.txt"),"This is a test file");
FileHelper.createFile(new File("testdata/test2.txt"),"This is another test file");
FileHelper.createDirectory(new File("testdata/testdir"));
FileHelper.createFile(new File("testdata/testdir/test3.txt"),"This is yet another test file");
FileHelper.createDirectory(new File("testdata/testdir/seconddir"));
FileHelper.createFile(new File("testdata/testdir/seconddir/test4.txt"),"Lowest test file");
// Now, start the job, and wait until it is running.
jobManager.manualStart(job.getID());
instance.waitJobRunningNative(jobManager,job.getID(),30000L);
JobStatus status;
// Now we wait, and we should see 7 documents eventually.
long startTime = System.currentTimeMillis();
while (System.currentTimeMillis() < startTime + 120000L)
{
status = jobManager.getStatus(job.getID());
if (status.getDocumentsProcessed() == 7)
break;
ManifoldCF.sleep(1000L);
}
// At this point there should be 7 documents.
// OK, documents should expire starting a minute later. The number of documents will go quickly to zero after this time.
// So all we need to do is confirm that the job stops within 2 minutes.
instance.waitJobInactiveNative(jobManager,job.getID(),180000L);
status = jobManager.getStatus(job.getID());
if (status.getDocumentsProcessed() != 0)
throw new ManifoldCFException("Wrong number of documents processed - expected 0, saw "+new Long(status.getDocumentsProcessed()).toString());
// Now, delete the job.
jobManager.deleteJob(job.getID());
instance.waitJobDeletedNative(jobManager,job.getID(),120000L);
// Cleanup is automatic by the base class, so we can feel free to leave jobs and connections lying around.
}
}