Search found 9 matches

by SQADude
Sat Jul 30, 2011 12:08 am
Forum: TestLink 1.9
Topic: Import testcases from Testlink 1.7.4 to 1.9.2
Replies: 1
Views: 3342

Import testcases from Testlink 1.7.4 to 1.9.2

We upgraded our Testlink from v1.7.4 to v1.9.2. We copied the testcases by Exporting them from v1.7.4. This puts the testcases in an XML file. Then we imported the XML files into v1.9.2 However, there are a couple of problems when we did this. 1) The database schema has changed from v1.7.4 to v1.9.2...
by SQADude
Tue Feb 09, 2010 7:32 pm
Forum: XML-RPC API
Topic: Dev Key for Python users
Replies: 6
Views: 13859

This is the output from the SQL DB: mysql> select * from users; +----+-------+----------------------------------+---------+------------------+----------+---------------+--------+------------------------+--------+------------+ | id | login | password | role_id | email | first | last | locale | defaul...
by SQADude
Tue Feb 02, 2010 12:04 am
Forum: XML-RPC API
Topic: Where are the database files for Testlink kept on a system?
Replies: 1
Views: 4500

Answer:

Nevermind.

It's at /var/lib/mysql/testlink for my platform.
by SQADude
Mon Feb 01, 2010 10:50 pm
Forum: XML-RPC API
Topic: Dev Key for Python users
Replies: 6
Views: 13859

Re: do you need to do more than just provide a valid devKey?

In order to get a devKey I had to log into mysql and add one to my user account myself see SQL below: UPDATE users SET script_key="11111111111111111111111111111111" WHERE id="6" sfunk and others: I edited the users DB for testlink and added a string for the " script_key &qu...
by SQADude
Mon Feb 01, 2010 6:10 am
Forum: XML-RPC API
Topic: Where are the database files for Testlink kept on a system?
Replies: 1
Views: 4500

Where are the database files for Testlink kept on a system?

I am running Testlink on an Ubuntu 8.10 platform. The testlink location was installed at /var/www/testlink. I want to edit the Testlink database and I think it's a good idea to back up the database files first before I monkey around with them. But where exactly are the database files for the MySQL d...
by SQADude
Mon Feb 01, 2010 6:08 am
Forum: XML-RPC API
Topic: Dev Key for Python users
Replies: 6
Views: 13859

The name of the database?

sfunk,

could you (or anyone else?) tell me the database that I need to edit to be able to get a devKey for the API?

I can get by with simple MySQL commands but I don't know the names of the database tables of Testlink's DB.

Anyone know them?


Thanx.
by SQADude
Thu Jan 28, 2010 9:28 pm
Forum: XML-RPC API
Topic: Retrieving Dev Key Programmatically
Replies: 1
Views: 4611

Anybody know if the original poster's request is possible?

Can someone get a DevKey programmatically thru Python?

Or is the only way as sfunk said?
http://www.teamst.org/phpBB2/viewtopic.php?t=1262
by SQADude
Wed Jan 20, 2010 4:39 am
Forum: XML-RPC API
Topic: List of API functions for Python?
Replies: 1
Views: 4498

List of API functions for Python?

Hello, I examined the sampleClient script for Python in the /lib/api area. I only see two functions for the xmlrpclib connection for testlink in Python: reportTCResult() about() I am pretty sure there are others. Where can I get a list of functions that are defined thru xmlrpclib for the Python API?
by SQADude
Wed Jan 20, 2010 4:37 am
Forum: XML-RPC API
Topic: How to get/set builds in Testlink thru API using Python?
Replies: 1
Views: 6579

How to get/set builds in Testlink thru API using Python?

I am writing a script that will report our nightly test results into Testlink. The test results will map to individual testcases. However, I need a way to get or set the build in testlink. The nightly test will generate a unique build number that will be obtained thru a system call to SGVN. This bui...