br.eti.kinoshita.testlinkjavaapi.TestProjectService Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of testlink-java-api Show documentation
Show all versions of testlink-java-api Show documentation
TestLink Java API to interface with TestLink PHP XML-RPC API.
/*
* The MIT License
*
* Copyright (c) <2010>
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*/
package br.eti.kinoshita.testlinkjavaapi;
import java.util.HashMap;
import java.util.Map;
import org.apache.xmlrpc.XmlRpcException;
import org.apache.xmlrpc.client.XmlRpcClient;
import br.eti.kinoshita.testlinkjavaapi.model.Attachment;
import br.eti.kinoshita.testlinkjavaapi.model.TestLinkMethods;
import br.eti.kinoshita.testlinkjavaapi.model.TestLinkParams;
import br.eti.kinoshita.testlinkjavaapi.model.TestLinkResponseParams;
import br.eti.kinoshita.testlinkjavaapi.model.TestLinkTables;
import br.eti.kinoshita.testlinkjavaapi.model.TestPlan;
import br.eti.kinoshita.testlinkjavaapi.model.TestProject;
import br.eti.kinoshita.testlinkjavaapi.util.Util;
/**
* This class is responsible for managing test projects.
*
* @author Bruno P. Kinoshita - http://www.kinoshita.eti.br
* @since 1.9.0-1
*/
class TestProjectService
extends BaseService
{
/**
* @param xmlRpcClient XML RPC Client.
* @param devKey TestLink User DevKey.
*/
public TestProjectService( XmlRpcClient xmlRpcClient, String devKey )
{
super( xmlRpcClient, devKey );
}
/**
* Creates a Test Project.
*
* @return Created Test Project object.
*/
@SuppressWarnings("unchecked")
protected TestProject createTestProject(
String testProjectName,
String testProjectPrefix,
String notes,
Boolean enableRequirements,
Boolean enableTestPriority,
Boolean enableAutomation,
Boolean enableInventory,
Boolean isActive,
Boolean isPublic
)
throws TestLinkAPIException
{
TestProject testProject = null;
Integer id = 0;
testProject = new TestProject(
id,
testProjectName,
testProjectPrefix,
notes,
enableRequirements,
enableTestPriority,
enableAutomation,
enableInventory,
isActive,
isPublic);
try
{
Map executionData = Util.getTestProjectMap(testProject);
Object response = this.executeXmlRpcCall(
TestLinkMethods.createTestProject.toString(), executionData);
Object[] responseArray = (Object[])response;
Map responseMap = (Map)responseArray[0];
id = Util.getInteger(responseMap, TestLinkResponseParams.id.toString());
testProject.setId( id );
}
catch ( XmlRpcException xmlrpcex )
{
throw new TestLinkAPIException(
"Error creating test project: " + xmlrpcex.getMessage(), xmlrpcex);
}
return testProject;
}
@SuppressWarnings("unchecked")
protected TestProject getTestProjectByName(String projectName)
throws TestLinkAPIException
{
TestProject testProject = null;
try
{
Map executionData = new HashMap();
executionData.put(TestLinkParams.testProjectName.toString(), projectName);
Object response = this.executeXmlRpcCall(
TestLinkMethods.getTestProjectByName.toString(), executionData);
Object[] responseArray = (Object[])response;
Map responseMap = (Map)responseArray[0];
testProject = Util.getTestProject( responseMap );
}
catch ( XmlRpcException xmlrpcex )
{
throw new TestLinkAPIException(
"Error retrieving test project: " + xmlrpcex.getMessage(), xmlrpcex);
}
return testProject;
}
/**
*
* @return
* @throws TestLinkAPIException
*/
@SuppressWarnings("unchecked")
protected TestProject[] getProjects()
throws TestLinkAPIException
{
TestProject[] projects = null;
try
{
Map executionData = new HashMap();
Object response = this.executeXmlRpcCall(
TestLinkMethods.getProjects.toString(), executionData);
Object[] responseArray = (Object[])response;
projects = new TestProject[responseArray.length];
for (int i = 0; i < responseArray.length; i++)
{
Map projectMap = (Map)responseArray[i];
TestProject testProject = Util.getTestProject(projectMap);
projects[i] = testProject;
}
}
catch ( XmlRpcException xmlrpcex )
{
throw new TestLinkAPIException(
"Error retrieving test projects: " + xmlrpcex.getMessage(), xmlrpcex);
}
return projects;
}
/**
* Retrieves Test Plans associated to a Test Project.
*
* @param projectId Test Project id.
* @return Associated Test Plans.
* @throws TestLinkAPIException
*/
@SuppressWarnings("unchecked")
protected TestPlan[] getProjectTestPlans(Integer projectId)
throws TestLinkAPIException
{
TestPlan[] testPlans = null;
try
{
Map executionData = new HashMap();
executionData.put(TestLinkParams.testProjectId.toString(), projectId);
Object response = this.executeXmlRpcCall(
TestLinkMethods.getProjectTestPlans.toString(), executionData);
Object[] responseArray = (Object[])response;
testPlans = new TestPlan[responseArray.length];
for (int i = 0; i < responseArray.length; i++)
{
Map planMap = (Map)responseArray[i];
TestPlan testPlan = Util.getTestPlan(planMap);
testPlans[i] = testPlan;
}
}
catch ( XmlRpcException xmlrpcex )
{
throw new TestLinkAPIException(
"Error retrieving test plans: " + xmlrpcex.getMessage(), xmlrpcex);
}
return testPlans;
}
/**
* @param testProjectId
* @param title
* @param description
* @param fileName
* @param fileType
* @param content
* @return
* @throws TestLinkAPIException
*/
@SuppressWarnings("unchecked")
protected Attachment uploadTestProjectAttachment(
Integer testProjectId,
String title,
String description,
String fileName,
String fileType,
String content
)
throws TestLinkAPIException
{
Attachment attachment = null;
Integer id = 0;
attachment = new Attachment(
id,
testProjectId,
TestLinkTables.nodesHierarchy.toString(),
title,
description,
fileName,
null,
fileType,
content
);
try
{
Map executionData = Util.getTestProjectAttachmentMap(attachment);
Object response = this.executeXmlRpcCall(
TestLinkMethods.uploadTestProjectAttachment.toString(), executionData);
Map responseMap = (Map)response;
id = Util.getInteger(responseMap, TestLinkResponseParams.id.toString());
attachment.setId(id);
}
catch ( XmlRpcException xmlrpcex )
{
throw new TestLinkAPIException(
"Error uploading attachment for test project: " + xmlrpcex.getMessage(), xmlrpcex);
}
return attachment;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy