/*
* 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.support.dnd.handlers;
import java.util.HashSet;
import java.util.Set;
import com.eviware.soapui.impl.wsdl.WsdlProject;
import com.eviware.soapui.impl.wsdl.WsdlTestSuite;
import com.eviware.soapui.impl.wsdl.testcase.WsdlTestCase;
import com.eviware.soapui.impl.wsdl.teststeps.WsdlTestStep;
import com.eviware.soapui.model.iface.Interface;
import com.eviware.soapui.model.support.ModelSupport;
import com.eviware.soapui.support.UISupport;
public class TestCaseToProjectDropHandler extends AbstractAfterModelItemDropHandler<WsdlTestCase, WsdlProject>
{
public TestCaseToProjectDropHandler()
{
super( WsdlTestCase.class, WsdlProject.class );
}
@Override
boolean canCopyAfter( WsdlTestCase source, WsdlProject target )
{
return true;
}
@Override
boolean canMoveAfter( WsdlTestCase source, WsdlProject target )
{
return true;
}
@Override
boolean copyAfter( WsdlTestCase testCase, WsdlProject target )
{
WsdlTestSuite testSuite = getTargetTestSuite( target, "Copy TestCase" );
if( testSuite == null )
return false;
testCase = TestCaseToTestSuiteDropHandler.copyTestCase( testCase, testSuite, -1 );
if( testCase != null )
UISupport.select( testCase );
return testCase != null;
}
private WsdlTestSuite getTargetTestSuite( WsdlProject target, String title )
{
String name = "TestSuite 1";
if( target.getTestSuiteCount() > 0 )
{
String[] names = ModelSupport.getNames( target.getTestSuiteList(), new String[] { "<Create New>" } );
name = UISupport.prompt( "Specify target TestSuite for TestCase", title, names );
if( name == null )
return null;
}
WsdlTestSuite testSuite = target.getTestSuiteByName( name );
if( testSuite == null )
{
name = UISupport.prompt( "Specify name for new TestSuite", title, "TestSuite "
+ ( target.getTestSuiteCount() + 1 ) );
if( name == null )
return null;
testSuite = target.addNewTestSuite( name );
}
Set<Interface> requiredInterfaces = new HashSet<Interface>();
for( int i = 0; i < testSuite.getTestCaseCount(); i++ )
{
WsdlTestCase testCase = testSuite.getTestCaseAt( i );
for( int y = 0; y < testCase.getTestStepCount(); y++ )
{
WsdlTestStep testStep = testCase.getTestStepAt( y );
requiredInterfaces.addAll( testStep.getRequiredInterfaces() );
}
}
if( !DragAndDropSupport.importRequiredInterfaces( target, requiredInterfaces, title ) )
return null;
else
return testSuite;
}
@Override
boolean moveAfter( WsdlTestCase testCase, WsdlProject target )
{
WsdlTestSuite testSuite = getTargetTestSuite( target, "Move TestCase" );
if( testSuite == null )
return false;
testCase = TestCaseToTestSuiteDropHandler.moveTestCase( testCase, testSuite, -1 );
if( testCase != null )
UISupport.select( testCase );
return testCase != null;
}
@Override
String getCopyAfterInfo( WsdlTestCase source, WsdlProject target )
{
return "Copy TestCase [" + source.getName() + "] to TestSuite in Project [" + target.getName() + "]";
}
@Override
String getMoveAfterInfo( WsdlTestCase source, WsdlProject target )
{
return "Move TestCase [" + source.getName() + "] to TestSuite in Project [" + target.getName() + "]";
}
}