Search found 16 matches

by kcurran
Tue Jul 21, 2009 7:29 pm
Forum: TestLink 1.8 (OBSOLETE => EOL)[LOCKED]
Topic: Automated excecution of testcases
Replies: 19
Views: 34489

Our automation reports the test results in a specific test plan.

Each automation run creates a new build within the test plan.

The automation updates the test case(s) result( referencing the test case name in the test plan which are well known names between Testlink and the automation application.)
by kcurran
Tue Jul 14, 2009 2:09 pm
Forum: TestLink 1.8 (OBSOLETE => EOL)[LOCKED]
Topic: Automated excecution of testcases
Replies: 19
Views: 34489

We have been using the XMLRPC interface to update automated results in TL. We use the Perl XMLRPC::Lite module to accomplish this.
by kcurran
Mon Apr 20, 2009 8:32 pm
Forum: TestLink 1.8 (OBSOLETE => EOL)[LOCKED]
Topic: Adding a new "Status" beside Pass, Fail, Blocked
Replies: 38
Views: 129752

Yes, you're right. You do need to change the colour in the style sheet and add the displayable text in the strings file. I've added a new status that works for reports, charts, etc and did not need to modify any other code but the custom config. Here is what I added for a new status called ready_to_...
by kcurran
Mon Apr 20, 2009 7:19 pm
Forum: TestLink 1.8 (OBSOLETE => EOL)[LOCKED]
Topic: Adding a new "Status" beside Pass, Fail, Blocked
Replies: 38
Views: 129752

Adding a new result status is very easy and can be localized to your custom config file. There was no need for code changes.
by kcurran
Wed Mar 11, 2009 8:30 pm
Forum: TestLink 1.8 (OBSOLETE => EOL)[LOCKED]
Topic: Results->Charts Presentation after adding new statuses
Replies: 4
Views: 6041

I found that after defining the new status in my custom_config, I needed to added the addition statements. For a complete detail, here is what I defined for a status of ready_to_run $tlCfg->results['status_code'] = array ( "failed" => 'f', "blocked" => 'b', "passed" => ...
by kcurran
Tue Mar 10, 2009 7:58 pm
Forum: TestLink 1.8 (OBSOLETE => EOL)[LOCKED]
Topic: 1.8 RC5 Execute Tree State colours
Replies: 4
Views: 5646

With RC5, there is no block of colour to the left of the testcase, the complete test case name is coloured.

I'd add a screen shot to the discussion but I can't figure out how
by kcurran
Tue Mar 10, 2009 1:44 pm
Forum: TestLink 1.8 (OBSOLETE => EOL)[LOCKED]
Topic: JIRA 3.13 and TL 1.8RC5
Replies: 7
Views: 8689

Here are the options I used: //Set the bug tracking system Interface to JIRA 3.1.1 /** The DB host to use when connecting to the JIRA db */ define('BUG_TRACK_DB_HOST', 'hostname'); /** The name of the database that contains the jira tables */ define('BUG_TRACK_DB_NAME', 'jiradb_3_13_2'); /** The DB ...
by kcurran
Mon Mar 09, 2009 6:44 pm
Forum: TestLink 1.8 (OBSOLETE => EOL)[LOCKED]
Topic: 1.8 RC5 Execute Tree State colours
Replies: 4
Views: 5646

I guess I wasn't clear on my thoughts. I was interested if other users agreed with my view and if so, could the default colours be changed.
by kcurran
Fri Mar 06, 2009 9:53 pm
Forum: TestLink 1.8 (OBSOLETE => EOL)[LOCKED]
Topic: 1.8 RC5 Execute Tree State colours
Replies: 4
Views: 5646

1.8 RC5 Execute Tree State colours

I do not like the pastel colours used in the execute tree. I would prefer that the colours be the same as in the Test Result dialog.

Basically, if the failed result is red then it should be red in the tree not pink.
by kcurran
Fri Mar 06, 2009 9:42 pm
Forum: TestLink 1.8 (OBSOLETE => EOL)[LOCKED]
Topic: JIRA 3.13 and TL 1.8RC5
Replies: 7
Views: 8689

Jira 3.13.2 ( mysql) and 1.8 RC5 is working for me
by kcurran
Wed Feb 18, 2009 9:45 pm
Forum: XML-RPC API
Topic: getTestCaseIdByName returns large number of instances
Replies: 2
Views: 5908

When I run the same mysql as in testcase.class.php for get_by_name, I am returned 8135 entries from the query Here is the sample of the sql, I used mysql> select distinct NHA.id,NHA.name,NHB.parent_id,TCV.tc_external_id from nodes_hierarchy NHA, nodes_hierarchy NHB, tcversions TCV where NHA.name = '...
by kcurran
Wed Feb 18, 2009 8:41 pm
Forum: TestLink 1.8 (OBSOLETE => EOL)[LOCKED]
Topic: Changing executed test cases
Replies: 4
Views: 6187

These options are defined in the config.inc.php file. To change them, you should follow best practices and make the changes in custom_config.inc.php.
by kcurran
Wed Feb 18, 2009 5:36 pm
Forum: XML-RPC API
Topic: getTestCaseIdByName returns large number of instances
Replies: 2
Views: 5908

getTestCaseIdByName returns large number of instances

Using 1.8rc4 api

When I look at the response to a getTestCaseIdByName, I see 8000 plus instances of the testcase, all with a different external id. This doesn't make seen to me. Why would there be so many external ids associated with a test case I just created yesterday
by kcurran
Mon Feb 16, 2009 2:49 pm
Forum: TestLink 1.8 (OBSOLETE => EOL)[LOCKED]
Topic: Changing executed test cases
Replies: 4
Views: 6187

There are 2 options you can configure depending on what you want to do. // ENABLED -> user can edit executed tc versions // DISABLED -> editing of executed tc versions is blocked. [STANDARD BEHAVIOUR] $tlCfg->testcase_cfg->can_edit_executed = ENABLED; // 1 -> user can edit execution notes, on old ex...
by kcurran
Wed Feb 11, 2009 5:31 pm
Forum: TestLink 1.8 (OBSOLETE => EOL)[LOCKED]
Topic: Adding new result status
Replies: 0
Views: 3824

Adding new result status

After adding a new result status via the custom_config.inc.php file, I found that I needed to modify themes/default/css/testlink.css to handle the colours in the execute tree and history of the test case execution ( colour code the status). I would prefer to handle this css change some where else (l...