org.odpi.openmetadata.accessservices.subjectarea.fvt.RunAllFVTOn2Servers Maven / Gradle / Ivy
Show all versions of subject-area-fvt Show documentation
/* SPDX-License-Identifier: Apache-2.0 */
/* Copyright Contributors to the ODPi Egeria project. */
package org.odpi.openmetadata.accessservices.subjectarea.fvt;
import org.odpi.openmetadata.frameworks.connectors.ffdc.InvalidParameterException;
import org.odpi.openmetadata.frameworks.connectors.ffdc.PropertyServerException;
import org.odpi.openmetadata.frameworks.connectors.ffdc.UserNotAuthorizedException;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
/**
* FVT resource to call subject area term client API FVT resources on 2 in memory servers names Server1 and
* Server2.
*/
public class RunAllFVTOn2Servers
{
public static void main(String args[])
{
try
{
String url = RunAllFVTOn2Servers.getUrl(args);
RunAllFVT.performFVT(url, FVTConstants.SERVER_NAME1, FVTConstants.USERID);
RunAllFVT.performFVT(url, FVTConstants.SERVER_NAME2, FVTConstants.USERID);
System.out.println("FVT ran successfully");
} catch (IOException e1)
{
System.out.println("Error getting user input");
} catch (SubjectAreaFVTCheckedException e) {
System.out.println("ERROR: " + e.getMessage() );
} catch (UserNotAuthorizedException | InvalidParameterException | PropertyServerException e) {
System.out.println("ERROR: " + e.getMessage() + " Suggested action: " + e.getReportedUserAction());
}
}
/**
* This method gets the url that the tests will use to issue calls to the server.
*
* If arguments are supplied then the first parameter is used as a url.
*
* If no url is supplied then prompt the user to enter a valid url, enter means to use the default url.
*
* @param args arguments supplied
* @return the url to use on the calls to the server
* @throws IOException IO exception occurred while getting input from the user.
*/
public static String getUrl(String args[]) throws IOException
{
String url = null;
if (args.length > 0)
{
url = args[0];
} else
{
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
System.out.print("Enter a URL. Press enter to get the default (" + FVTConstants.DEFAULT_URL + ".)):");
url = br.readLine();
if (url.equals(""))
{
url = FVTConstants.DEFAULT_URL;
}
}
return url;
}
}