hp-quality-center

Rails App Integration with HPQC (HP Quality Centre)

僤鯓⒐⒋嵵緔 提交于 2019-12-12 03:22:38
问题 I wanted to integrate hp quality centre to a rails app which is developed and deployed on a linux system. I found that it uses the OTA (Open Test Architecture API). However it been specified that it uses a OTAclient dll for doing the activities of the api. I would like to know if there is any documentation of such an integration been done (hpqc+rails on a linux system) ? Is it possible to attain this integration.. Any gems or plugins...? 回答1: Unfortunately the OTAclient.dll requires a number

Jenkins QC plugin Can't create TDConnection Object

你说的曾经没有我的故事 提交于 2019-12-12 03:16:45
问题 I'm attempting to use the Jenkins QC plugin, but when I build on jenkins i'm getting the following console errors Started by user anonymous Building in workspace C:\Users\builder.jenkins\workspace\QC Plugin [QC Plugin] $ cscript /nologo "C:\Users\builder.jenkins\workspace\QC Plugin\runTestSet.vbs" http:// * ** * ** Caine test test qcreport-test-4.xml 100 RUN_PLANNED_HOST C:\Users\builder.jenkins\workspace\QC Plugin\runTestSet.vbs(163, 5) Microsoft VBScript runtime error: ActiveX component can

Adding testcase results to Quality Center Run from a outside Python Script

孤街醉人 提交于 2019-12-11 22:49:33
问题 I want to try to add all the step details - Expected, Actual, Status, etc. to a QC Run for a testcase of a TestSet from a Python Script living outside the Quality Center. I have come till here (code given below) and I don't know how to add Step Expected and Step Actual Result. If anyone knows how do it, please help me out!! Please, I don't want any QTP solutions. Thanks, Code- # Script name - add_tsrun.py # C:\Python27\python.exe # This script lives locally on a Windows machine that has -

ALM C# application

ⅰ亾dé卋堺 提交于 2019-12-11 21:26:00
问题 I am using Interop.TDAPIOLELib dll to connect to ALM (application lifecycle managment). In order to connect to the project i am using TDConnection but when executing this line _connection = new TDAPIOLELib.TDConnection(); i get this exception Retrieving the COM class factory for component with CLSID {C5CBD7B2-490C-45F5-8C40-B8C3D108E6D7} failed due to the following error: 80040154 Class not registered (Exception from HRESULT: 0x80040154 (REGDB_E_CLASSNOTREG)). This code was working fine

How to connect HP Quality Center using C# and ASP.net

一世执手 提交于 2019-12-10 19:27:42
问题 I am looking to connect HP quality center using C# and ASP.net. Can someone please suggest me a way to connect it using .net web application. Also, do i need to do any installation on my server where my application is hosted? Below is some java code i found, I want something like this //Connect to QC ITDConnection itdc= ClassFactory.createTDConnection(); System.out.println(itdc.connected()); itdc.initConnectionEx("http://QC.com/qcbin"); System.out.println(itdc.connected()); itdc

How to use 'Export to HP ALM' Addin for Excel using Macro or VbScript

点点圈 提交于 2019-12-10 11:47:21
问题 I am trying to find a way to automate uploading manual testcases in excel to ALM. I have been using the ' Export to HP ALM ' Addin. However, This process is manual as you need to select the range and follow the wizard like steps of this Addin. Is there anyway to use this Addin using Macro/vbscript ? or is there any way to use the same map name used in this addin through OTA ? Update 1: Found a way for the above question ( the answer is posted below ) However, I need to speed up the process i

HP ALM 11 Upload attachment using PHP and cURL

旧时模样 提交于 2019-12-09 05:48:26
I need to upload an attachment to a test in HP's ALM 11. To do so, I have created a custom PHP function based in cURL to use the REST API of ALM. This is the code: public function attachment($project, $domain, $entity, $id, $filename) { $qc = $this->qc_cookie; $ckfile = $this->ckfile; $eol = "\n\n"; $mime_boundary=md5(time()); $file_to_upload = '--'.$mime_boundary. $eol; $file_to_upload .= 'Content-Disposition: form-data; name="filename"'; $file_to_upload .= $eol; $file_to_upload .= $filename; $file_to_upload .= $eol; $file_to_upload .= $eol; $file_to_upload .= '--'.$mime_boundary. $eol; $file

HP ALM 11 Upload attachment using PHP and cURL

两盒软妹~` 提交于 2019-12-08 03:54:43
问题 I need to upload an attachment to a test in HP's ALM 11. To do so, I have created a custom PHP function based in cURL to use the REST API of ALM. This is the code: public function attachment($project, $domain, $entity, $id, $filename) { $qc = $this->qc_cookie; $ckfile = $this->ckfile; $eol = "\n\n"; $mime_boundary=md5(time()); $file_to_upload = '--'.$mime_boundary. $eol; $file_to_upload .= 'Content-Disposition: form-data; name="filename"'; $file_to_upload .= $eol; $file_to_upload .= $filename

HP ALM REST API login using PHP CURL

久未见 提交于 2019-11-29 04:59:11
I'm new to REST and I'm trying to develop a web app that will connect with JIRA from one sid (already covered) and with HP's ALM from the other side. what I'm attempting to accomplish right now is basic authentication to ALM with PHP but can't seem to progress. here is my code: $handle=curl_init('http://192.168.1.7:8081'); $headers = array( 'Accept: application/xml', 'Content-Type: application/xml', 'Authorization: Basic YWRtaW46MTIzNA==', ); $username='admin'; $password='1234'; $url = 'http://192.168.1.7:8081/qcbin/authentication-point/login.jsp'; curl_setopt_array( $handle, array( CURLOPT

HP ALM REST API login using PHP CURL

廉价感情. 提交于 2019-11-27 18:51:41
问题 I'm new to REST and I'm trying to develop a web app that will connect with JIRA from one sid (already covered) and with HP's ALM from the other side. what I'm attempting to accomplish right now is basic authentication to ALM with PHP but can't seem to progress. here is my code: $handle=curl_init('http://192.168.1.7:8081'); $headers = array( 'Accept: application/xml', 'Content-Type: application/xml', 'Authorization: Basic YWRtaW46MTIzNA==', ); $username='admin'; $password='1234'; $url = 'http: