Forum Discussion

sowmyaqa05's avatar
sowmyaqa05
New Contributor
3 years ago

SOAPUI XML based test suite integrating with GitLab

Hi,

I'm working on XML based WSDL and I have written some testsuite and would like to run those in Gitlab Pipeline. Is there a way that SOAPUI based XML test cases are run on pipeine?

I tried the maven but i always ending up with readyAPI but in my case mne is pure XML Webservice. Any suggestion will help.

 

Thanks

3 Replies

    • sowmyaqa05's avatar
      sowmyaqa05
      New Contributor

      My gitlab yml looks as below format. 

      Test_job_1:
           tags:
             - test
           script:
             - echo Testing test runner
             - cd ".\SoapUI-5.6.0\bin\"
             - cmd.exe /C testrunner.bat
      

       Can you tell me which command you are referring here.

      • pgbakalanka's avatar
        pgbakalanka
        New Contributor

        Try this. my runner is a Windows. I have installed all the required softwares and working fine for me.

         

         
        Test_job_1: 
          script: 
            - "echo Testing test runner"
            - "cmd.exe"
            - "cd /"
            - "dir"
            - "cd C:\\Software\\SmartBear\\SoapUI-5.6.0\\bin"
            - "dir"
            - "cmd.exe /C testrunner.bat -Genv=CERT -r \"$CI_PROJECT_DIR\\SMS_LGN_Regression.xml\""
          tags: 
            - "SMSQE,JAVA,Windows,Maven"