blob: 6b4d2d4bf8ed39999ef3cefc46acdff2c7f1a708 [file] [log] [blame]
/*
* Copyright (c) 2012, 2020 Oracle and/or its affiliates. All rights reserved.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0,
* or the Eclipse Distribution License v. 1.0 which is available at
* http://www.eclipse.org/org/documents/edl-v10.php.
*
* SPDX-License-Identifier: EPL-2.0 OR BSD-3-Clause
*/
// Contributors:
// David McCann - April 12, 2012 - 2.4 - Initial implementation
package dbws.testing.invalidpackage;
//javase imports
import static org.junit.Assert.assertTrue;
import java.util.List;
import javax.wsdl.WSDLException;
import org.junit.BeforeClass;
import org.junit.Test;
import dbws.testing.DBWSTestSuite;
/**
* Tests exception handling for an invalid input.
*
*/
public class InvalidPackageTestSuite extends DBWSTestSuite {
private static String USER = System.getProperty(DATABASE_USERNAME_KEY, DEFAULT_DATABASE_USERNAME);
private static String WARNING_MSG_1 = "WARNING: No packages were found matching the following: [" + USER + ".A_NON_EXISTENT_PACKAGE]";
private static String WARNING_MSG_2 = "WARNING: No procedures were found matching the following: [A_NON_EXISTENT_PACKAGE.CREATE_EMP]";
@BeforeClass
public static void setUp() throws WSDLException {
DBWS_BUILDER_XML_USERNAME =
"<?xml version=\"1.0\" encoding=\"UTF-8\"?>" +
"<dbws-builder xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\">" +
"<properties>" +
"<property name=\"projectName\">InvalidPackage</property>" +
"<property name=\"logLevel\">off</property>" +
"<property name=\"username\">";
DBWS_BUILDER_XML_PASSWORD =
"</property><property name=\"password\">";
DBWS_BUILDER_XML_URL =
"</property><property name=\"url\">";
DBWS_BUILDER_XML_DRIVER =
"</property><property name=\"driver\">";
DBWS_BUILDER_XML_PLATFORM =
"</property><property name=\"platformClassname\">";
DBWS_BUILDER_XML_MAIN =
"</property>" +
"</properties>" +
"<plsql-procedure " +
"name=\"Bah\" " +
"catalogPattern=\"A_NON_EXISTENT_PACKAGE\" " +
"procedurePattern=\"CREATE_EMP\" " +
"/>" +
"</dbws-builder>";
builder = null;
DBWSTestSuite.setUp(".", true, false);
}
@Test
public void testWarningLogs() {
assertTrue("No WARNINGs logged", dbwsLogger.hasWarnings());
List<String> warnings = dbwsLogger.getWarnings();
assertTrue("Expected [2] WARNINGs, but was [" + warnings.size() + "]", warnings.size() == 2);
assertTrue("Expected WARNING message '" + WARNING_MSG_1 + "', but was '" + warnings.get(0) + "'", WARNING_MSG_1.equalsIgnoreCase(warnings.get(0)));
assertTrue("Expected WARNING message '" + WARNING_MSG_2 + "', but was '" + warnings.get(1) + "'", WARNING_MSG_2.equalsIgnoreCase(warnings.get(1)));
}
}