org.odpi.openmetadata.accessservices.assetowner.fvt.AssetOwnerOMASFVTSuite Maven / Gradle / Ivy
The newest version!
/* SPDX-License-Identifier: Apache-2.0 */
/* Copyright Contributors to the ODPi Egeria project. */
package org.odpi.openmetadata.accessservices.assetowner.fvt;
import org.odpi.openmetadata.accessservices.assetowner.fvt.assets.CreateAssetTest;
import org.odpi.openmetadata.accessservices.assetowner.fvt.clientconstructors.ClientConstructorTest;
import org.odpi.openmetadata.accessservices.assetowner.fvt.connections.CreateConnectionTest;
import org.odpi.openmetadata.accessservices.assetowner.fvt.errorhandling.InvalidParameterTest;
import org.odpi.openmetadata.accessservices.assetowner.fvt.validmetadatavalues.ValidMetadataValuesTest;
import org.odpi.openmetadata.fvt.utilities.FVTResults;
import org.odpi.openmetadata.fvt.utilities.FVTSuiteBase;
import org.odpi.openmetadata.http.HttpHelper;
import java.io.IOException;
import static java.lang.System.exit;
/**
* AssetOwnerOMASFVT provides the main program for the Asset Owner OMAS
* Functional Verification Tests (FVTs).
*/
public class AssetOwnerOMASFVTSuite extends FVTSuiteBase
{
/**
* Run the FVT Suite.
*
* @param args user input
*/
public static void main(String[] args)
{
int exitCode;
try
{
String url = getUrl(args);
String serverName = getServerName(args);
String userId = getUserId(args);
AssetOwnerOMASFVTSuite fvtSuite = new AssetOwnerOMASFVTSuite();
exitCode = fvtSuite.performFVT(serverName, url, userId);
}
catch (IOException error)
{
System.out.println("Error getting user input");
error.printStackTrace();
exitCode = -99;
}
exit(exitCode);
}
/**
* Run all the defined tests and capture the results.
*
* @param serverName name of the server to connect to
* @param serverPlatformRootURL the network address of the server running the OMAS REST servers
* @param userId calling user
* @return combined results of running test
*/
@Override
public int performFVT(String serverName,
String serverPlatformRootURL,
String userId)
{
HttpHelper.noStrictSSL();
int returnCode = 0;
FVTResults results;
results = ClientConstructorTest.performFVT(serverName, serverPlatformRootURL);
if (! results.isSuccessful())
{
returnCode --;
}
results.printResults(serverName);
results = InvalidParameterTest.performFVT(serverName, serverPlatformRootURL, userId);
if (! results.isSuccessful())
{
returnCode --;
}
results.printResults(serverName);
results = CreateAssetTest.performFVT(serverName, serverPlatformRootURL, userId);
if (! results.isSuccessful())
{
returnCode --;
}
results.printResults(serverName);
results = CreateConnectionTest.performFVT(serverName, serverPlatformRootURL, userId);
if (! results.isSuccessful())
{
returnCode --;
}
results.printResults(serverName);
results = ValidMetadataValuesTest.performFVT(serverName, serverPlatformRootURL, userId);
if (! results.isSuccessful())
{
returnCode --;
}
results.printResults(serverName);
return returnCode;
}
}