Package com.eviware.soapui.security

Source Code of com.eviware.soapui.security.CrossSiteScriptingTest

/*
*  soapUI, copyright (C) 2004-2011 eviware.com
*
*  soapUI is free software; you can redistribute it and/or modify it under the
*  terms of version 2.1 of the GNU Lesser General Public License as published by
*  the Free Software Foundation.
*
*  soapUI is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
*  even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
*  See the GNU Lesser General Public License for more details at gnu.org.
*/

package com.eviware.soapui.security;

import org.junit.Before;
import org.junit.Test;

import com.eviware.soapui.SoapUI;
import com.eviware.soapui.config.SecurityScanConfig;
import com.eviware.soapui.security.scan.CrossSiteScriptingScan;
import com.eviware.soapui.support.types.StringToObjectMap;

/**
* @author dragica.soldo
*
*/
public class CrossSiteScriptingTest extends AbstractSecurityTestCaseWithMockService
{

  /**
   *
   * @throws java.lang.Exception
   */
  @Before
  public void setUp() throws Exception
  {
    super.setUp();
    testStepName = "HTTP Test Request";
    securityCheckType = CrossSiteScriptingScan.TYPE;
    securityCheckName = CrossSiteScriptingScan.NAME;
  }

  @Override
  protected void addSecurityScanConfig( SecurityScanConfig securityScanConfig )
  {

    SoapUI.getSoapUICore().getSecurityScanRegistry().getFactory( securityCheckType )
        .buildSecurityScan( testStep, securityScanConfig, null );

  }

  @Test
  public void testParameterShouldBeExposed()
  {

    SecurityTestRunnerImpl testRunner = new SecurityTestRunnerImpl( createSecurityTest(), new StringToObjectMap() );

    testRunner.start( false );
    // String message =
    // testRunner.getSecurityTest().getSecurityTestLog().getElementAt( 0
    // ).getMessage();
    // assertTrue( message, message.contains( "is exposed in the response" )
    // );
    assert true;

  }

  @Test
  public void testLogTestEnded()
  {
    SecurityTestRunnerImpl testRunner = new SecurityTestRunnerImpl( createSecurityTest(), new StringToObjectMap() );

    testRunner.start( false );
    try
    {
      // String message =
      // testRunner.getSecurityTest().getSecurityTestLog().getElementAt( 1
      // ).getMessage();
      // assertTrue(
      // "Security Scan Failed because there is more than one expected warning in the log!",
      // message
      // .startsWith( "SecurityTest ended" ) );
    }
    catch( IndexOutOfBoundsException ioobe )
    {
      SoapUI.log( "ignoring exception: " + ioobe.getMessage() );
    }

  }

  @Test
  public void testFinished()
  {
    SecurityTestRunnerImpl testRunner = new SecurityTestRunnerImpl( createSecurityTest(), new StringToObjectMap() );

    testRunner.start( false );

    // assertTrue( "Test Step failed so as SecurityScan",
    // !testRunner.getStatus().equals( SecurityTestRunner.Status.FINISHED ) );
    assertTrue( true );
  }

}
TOP

Related Classes of com.eviware.soapui.security.CrossSiteScriptingTest

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.