All Downloads are FREE. Search and download functionalities are using the official Maven repository.

aQute.bnd.ant.TestTask Maven / Gradle / Ivy

package aQute.bnd.ant;

import java.io.*;
import java.util.*;

import org.apache.tools.ant.*;

import aQute.bnd.build.*;
import aQute.bnd.build.Project;

public class TestTask extends BaseTask {

	private boolean	continuous	= false;
	private String	runFiles	= null;
	private File dir = null;

	@Override
	public void execute() throws BuildException {

		try {
			// Prepare list of projects...
			List projects;
			File baseDir = getProject().getBaseDir();
			Project baseProject = Workspace.getProject(baseDir);
			if (runFiles == null) {
				projects = Collections.singletonList(baseProject);
			} else {
				StringTokenizer tokenizer = new StringTokenizer(runFiles, ",");
				projects = new LinkedList();
				while (tokenizer.hasMoreTokens()) {
					String runFilePath = tokenizer.nextToken().trim();
					Project runProject;
					if (".".equals(runFilePath)) {
						runProject = baseProject;
					} else {
						File runFile = new File(baseDir, runFilePath);
						if (!runFile.isFile())
							throw new BuildException(String.format("Run file %s does not exist (or is not a file).",
									runFile.getAbsolutePath()));
						runProject = new Project(baseProject.getWorkspace(), baseDir, runFile);
						runProject.setParent(baseProject);
					}
					projects.add(runProject);
				}
			}

			// Bnd #372: clear projects first, to ensure projects with multiple 
			// runfiles do not clear previous results... 
			for (Project project : projects) {
				project.clear();
			}

			// Test them
			for (Project project : projects) {
				executeProject(project);
			}
		}
		catch (Exception e) {
			e.printStackTrace();
			throw new BuildException(e);
		}
	}

	private void executeProject(Project project) throws Exception {
		System.out.println("Testing " + project.getPropertiesFile());

		ProjectTester tester = project.getProjectTester();
		tester.setContinuous(continuous);
		if (dir != null) tester.setCwd(dir);
		tester.prepare();

		if (report(project))
			throw new BuildException("Failed to initialise for testing.");

		int errors = tester.test();
		if (errors == 0) {
			System.err.println("All tests passed");
		} else {
			if (errors > 0) {
				System.err.println(errors + " Error(s)");
			} else
				System.err.println("Error " + errors);
			throw new BuildException("Tests failed");
		}

		if (report(project))
			throw new BuildException("Tests failed");
	}

	public void setRunfiles(String runFiles) {
		this.runFiles = runFiles;
	}
	
	public void setDir(File dir) {
		this.dir = dir;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy