I have checked all over Forum but couldn't find an answer to my question.
I am using Testlink 1.9.5 installed with BitNami Stack and also integrated it with JIRA. I could successfully create bugs with a click from TestLink. Two issues I am facing.
1. The title of the Bug has some unwanted information . For eg: a Bug title is created as below.
NT-2473 : [Open] : /Cinte/Initial Test Suite/CT--2:Preparing VM2 - Executed ON (ISO FORMAT): 2013-02-17 19:35:16
I don't need the information in bold in the Title of the bug. I tried commenting off the code in jirasoapInterface.class.php as below.
Code: Select all
function buildSummaryHTMLString($issue)
{
$summary = $issue->summary;
/**$strDueDate = $this->helperParseDate($issue->duedate);
if( !is_null($strDueDate) )
{
$summary .= "<b> [$strDueDate] </b> ";
}**/
return $summary;
In fact I would like to customize the entire title before it is saved and triggered email notifications. Could someone please guide me with correct steps?
2. Whenever a Bug is created from Testlink the 'Reported by' field in JIRA always get populated with the user name value stored in the Issue tracker management config. Instead, I would like to see the name of the user who executed the Test in Testlink appeared in JIRA against the "Reported By' field. Is it possible? If yes, could someone please help to configure it?
Many thanks
Jibsss...