blob: 2d6074895705d2469429ce79eb01e0f568d4c190 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2016 Chalmers | University of Gothenburg, rt-labs and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Chalmers | University of Gothenburg and rt-labs - initial API and implementation and/or initial documentation
*******************************************************************************/
package org.eclipse.capra.handler.hudson;
import java.util.Collections;
import java.util.List;
import org.eclipse.capra.core.adapters.ArtifactMetaModelAdapter;
import org.eclipse.capra.core.adapters.Connection;
import org.eclipse.capra.core.handlers.AbstractArtifactHandler;
import org.eclipse.capra.core.helpers.ExtensionPointHelper;
import org.eclipse.core.resources.IResourceDelta;
import org.eclipse.emf.ecore.EObject;
import org.eclipse.mylyn.builds.internal.core.TestElement;
/**
* A handler to allow tracing to and from test elements handled by the
* continuous integration server Hudson via the integrated Mylyn facilities.
*/
public class TestElementHandler extends AbstractArtifactHandler<TestElement> {
@Override
public EObject createWrapper(TestElement test, EObject artifactModel) {
ArtifactMetaModelAdapter adapter = ExtensionPointHelper.getArtifactWrapperMetaModelAdapter().get();
// TODO Need to get the URI for where the test is
EObject wrapper = adapter.createArtifact(artifactModel, this.getClass().getName(), test.getLabel(),
test.getLabel(), test.getLabel());
return wrapper;
}
@Override
public TestElement resolveWrapper(EObject wrapper) {
// TODO Auto-generated method stub
return null;
}
@Override
public String getDisplayName(TestElement test) {
return test.getLabel();
}
@Override
public String generateMarkerMessage(IResourceDelta delta, String wrapperUri) {
// TODO Auto-generated method stub
return null;
}
@Override
public List<Connection> addInternalLinks(EObject investigatedElement, List<String> selectedRelationshipTypes) {
// Method currently left empty to wait for user requirements of relevant
// internal links for Test elements
return Collections.emptyList();
}
@Override
public boolean isThereAnInternalTraceBetween(EObject first, EObject second) {
return false;
}
}