Forum Discussion

ANkumar's avatar
ANkumar
New Contributor
12 years ago

Javascript examples

Hi,

Can anybody share some javascript examples form the starting point to execution.

3 Replies

  • Gurbakhsish's avatar
    Gurbakhsish
    Occasional Contributor

    After investing few hours on this topic, I am able to run few scripts in javascript, they are too basic scripts, but can be used to perform subtle actions.

     

    1. Script to run a test step at testcase tear down - 
     
    Prerequisites - have  a test step inside a testcase and disable it, following testcase teardown script will execute the test step 
     
    For me, Add a priority is a test step in the test case, which should return anything positive, and Delete Priority test step is a test step that will be executed at teat down.
     
    if( context.expand( "${Add a priority#Response#$.status}" ) > 400 ) {
        var s = testRunner.getTestCase().getTestStepByName("Delete Priority").run(testRunner, context).status;   
        if (s == "OK"){
            log.info("Deleted test data - Priority id - "+ context.expand( "${Add a priority#Response#$.data.id}" ));
        }
    }
     
    2. Setup script for a testsuite
     
    To run a testcase at very beginning of a testsuite, which will create some test data. Add that test case to the test suite and disable it.
     
    runner.getTestSuite().getTestCaseByName("Setup - Add an article").run(context.properties, false);
     
    3. Assert a value from the response
     
    var total_count = context.expand( "${Retrieve cases#Response#$.total_count}" );
    var result = true;
    var entry_id,case_id;
    for (i = 0;i<total_count;i++){
    entry_id = context.expand( "${Retrieve cases#Response#$.data["+i+"].id}" );
    case_id = context.expand( "${Add a case#Response#$.data.id}" );
    if ( entry_id == case_id){
    result = false;break;
    }
    }
    if(result){throw "Assertion Failed"};
  • tona3743's avatar
    tona3743
    New Contributor
    It doesn't look like you're gonna get support for this question.
    I also can't get even a single line of javascript to work.
    They state that javascript was added for these who are used to javascript, but it looks like its easier to learn groovy than make this crappy feature of soapUI work.