See <https://builds.apache.org/job/ODE-1.x/537/changes>
Changes: [sathwik] ODE-1028: Integrated new ODE Web Console ------------------------------------------ [...truncated 1761 lines...] create table STORE_PROCESS_PROP (propId varchar(255) not null, data clob, name varchar(255) not null, primary key (propId, name)); create table STORE_VERSIONS (ID integer not null, VERSION bigint, primary key (ID)); create table BPEL_ACTIVITY_RECOVERY (ID bigint not null, PIID bigint, AID bigint, CHANNEL varchar(255), REASON varchar(255), DATE_TIME timestamp, DETAILS blob, ACTIONS varchar(255), RETRIES integer, INSERT_TIME timestamp, MLOCK integer not null, primary key (ID)); create table BPEL_CORRELATION_PROP (ID bigint not null, NAME varchar(255), NAMESPACE varchar(255), VALUE varchar(255), CORR_SET_ID bigint, INSERT_TIME timestamp, MLOCK integer not null, primary key (ID)); create table BPEL_CORRELATION_SET (ID bigint not null, VALUE varchar(255), CORR_SET_NAME varchar(255), SCOPE_ID bigint, PIID bigint, PROCESS_ID bigint, INSERT_TIME timestamp, MLOCK integer not null, primary key (ID)); create table BPEL_CORRELATOR (ID bigint not null, CID varchar(255), PROCESS_ID bigint, INSERT_TIME timestamp, MLOCK integer not null, primary key (ID)); create table BPEL_CORRELATOR_MESSAGE_CKEY (ID bigint not null, CKEY varchar(255), CORRELATOR_MESSAGE_ID bigint, INSERT_TIME timestamp, MLOCK integer not null, primary key (ID)); create table BPEL_EVENT (ID bigint not null, IID bigint, PID bigint, TSTAMP timestamp, TYPE varchar(255), DETAIL clob, DATA blob, SID bigint, INSERT_TIME timestamp, MLOCK integer not null, primary key (ID)); create table BPEL_FAULT (ID bigint not null, FAULTNAME varchar(255), DATA blob, EXPLANATION varchar(4000), LINE_NUM integer, AID integer, INSERT_TIME timestamp, MLOCK integer not null, primary key (ID)); create table BPEL_INSTANCE (ID bigint not null, INSTANTIATING_CORRELATOR bigint, FAULT bigint, JACOB_STATE_DATA blob, PREVIOUS_STATE smallint, PROCESS_ID bigint, STATE smallint, LAST_ACTIVE_DT timestamp, SEQUENCE bigint, FAILURE_COUNT integer, FAILURE_DT timestamp, INSERT_TIME timestamp, MLOCK integer not null, primary key (ID)); create table BPEL_MESSAGE (ID bigint not null, MEX bigint, TYPE varchar(255), MESSAGE_DATA blob, MESSAGE_HEADER blob, INSERT_TIME timestamp, MLOCK integer not null, primary key (ID)); create table BPEL_MESSAGE_EXCHANGE (ID bigint not null, PORT_TYPE varchar(255), CHANNEL_NAME varchar(255), CLIENTKEY varchar(255), ENDPOINT blob, CALLBACK_ENDPOINT blob, REQUEST bigint, RESPONSE bigint, INSERT_DT timestamp, OPERATION varchar(255), STATE varchar(255), PROCESS bigint, PIID bigint, DIR char(255), PLINK_MODELID integer, PATTERN varchar(255), CORR_STATUS varchar(255), FAULT_TYPE varchar(255), FAULT_EXPL varchar(255), CALLEE varchar(255), PARTNERLINK bigint, PIPED_ID varchar(255), SUBSCRIBER_COUNT integer, INSERT_TIME timestamp, MLOCK integer not null, primary key (ID)); create table BPEL_MEX_PROPS (MEX bigint not null, VALUE varchar(8000), NAME varchar(255) not null, primary key (MEX, NAME)); create table BPEL_PLINK_VAL (ID bigint not null, PARTNER_LINK varchar(100) not null, PARTNERROLE varchar(100), MYROLE_EPR_DATA blob, PARTNERROLE_EPR_DATA blob, PROCESS bigint, SCOPE bigint, SVCNAME varchar(255), MYROLE varchar(100), MODELID integer, MYSESSIONID varchar(255), PARTNERSESSIONID varchar(255), INSERT_TIME timestamp, MLOCK integer not null, primary key (ID)); create table BPEL_PROCESS (ID bigint not null, PROCID varchar(255) not null unique, deployer varchar(255), deploydate timestamp, type_name varchar(255), type_ns varchar(255), version bigint, ACTIVE_ boolean, guid varchar(255), INSERT_TIME timestamp, MLOCK integer not null, primary key (ID)); create table BPEL_SCOPE (ID bigint not null, PIID bigint, PARENT_SCOPE_ID bigint, STATE varchar(255) not null, NAME varchar(255) not null, MODELID integer, INSERT_TIME timestamp, MLOCK integer not null, primary key (ID)); create table BPEL_SELECTORS (ID bigint not null, PIID bigint not null, SELGRPID varchar(255) not null, IDX integer not null, CORRELATION_KEY varchar(255) not null, PROC_TYPE varchar(255) not null, ROUTE_POLICY varchar(255), CORRELATOR bigint not null, INSERT_TIME timestamp, MLOCK integer not null, primary key (ID), unique (CORRELATION_KEY, CORRELATOR)); create table BPEL_UNMATCHED (ID bigint not null, MEX bigint, CORRELATION_KEY varchar(255), CORRELATOR bigint not null, INSERT_TIME timestamp, MLOCK integer not null, primary key (ID)); create table BPEL_XML_DATA (ID bigint not null, DATA blob, NAME varchar(255) not null, SIMPLE_VALUE varchar(255), SCOPE_ID bigint, PIID bigint, IS_SIMPLE_TYPE boolean, INSERT_TIME timestamp, MLOCK integer not null, primary key (ID)); create table VAR_PROPERTY (ID bigint not null, XML_DATA_ID bigint, PROP_VALUE varchar(255), PROP_NAME varchar(255) not null, INSERT_TIME timestamp, MLOCK integer not null, primary key (ID)); create sequence hibernate_seqhilo; CREATE INDEX IDX_CORRELATOR_CID on BPEL_CORRELATOR (CID); CREATE INDEX IDX_BPEL_CORRELATOR_PROCESS_ID on BPEL_CORRELATOR(PROCESS_ID); CREATE INDEX IDX_BPEL_CORRELATOR_MSG_CKEY on BPEL_CORRELATOR_MESSAGE_CKEY (CKEY); CREATE INDEX IDX_SELECTOR_SELGRPID on BPEL_SELECTORS (SELGRPID); CREATE INDEX IDX_SELECTOR_CKEY on BPEL_SELECTORS (CORRELATION_KEY); CREATE INDEX IDX_SELECTOR_CORRELATOR on BPEL_SELECTORS (CORRELATOR); CREATE INDEX IDX_SELECTOR_INSTANCE on BPEL_SELECTORS (PIID); CREATE INDEX IDX_BPEL_SELECTORS_PROC_TYPE on BPEL_SELECTORS(PROC_TYPE); CREATE INDEX IDX_UNMATCHED_CORRELATOR on BPEL_UNMATCHED (CORRELATOR); CREATE INDEX IDX_UNMATCHED_CKEY on BPEL_UNMATCHED (CORRELATION_KEY); CREATE INDEX IDX_UNMATCHED_CORRELATOR_CKEY on BPEL_UNMATCHED (CORRELATOR,CORRELATION_KEY); CREATE INDEX IDX_UNMATCHED_MEX on BPEL_UNMATCHED (MEX); CREATE INDEX IDX_XMLDATA_IID on BPEL_XML_DATA (PIID); CREATE INDEX IDX_XMLDATA_SID on BPEL_XML_DATA (SCOPE_ID); CREATE INDEX IDX_XMLDATA_NAME on BPEL_XML_DATA (NAME); CREATE INDEX IDX_XMLDATA_NAME_SID on BPEL_XML_DATA (NAME, SCOPE_ID); CREATE INDEX IDX_EVENT_IID on BPEL_EVENT (IID); CREATE INDEX IDX_EVENT_PID on BPEL_EVENT (PID); CREATE INDEX IDX_CORR_SET_NAME on BPEL_CORRELATION_SET (CORR_SET_NAME); CREATE INDEX IDX_CORR_SET_SCOPE_ID on BPEL_CORRELATION_SET (SCOPE_ID); CREATE INDEX IDX_BPEL_INSTANCE_PROCESS_ID on BPEL_INSTANCE (PROCESS_ID); CREATE INDEX IDX_BPEL_INSTANCE_STATE on BPEL_INSTANCE (STATE); CREATE INDEX IDX_BPEL_PROCESS_TYPE_NAME on BPEL_PROCESS (type_name); CREATE INDEX IDX_BPEL_PROCESS_TYPE_NS on BPEL_PROCESS (type_ns); CREATE INDEX IDX_PLINK_VAL_PROCESS_IDX on BPEL_PLINK_VAL (PROCESS); CREATE INDEX IDX_PLINK_VAL_SCOPE on BPEL_PLINK_VAL (SCOPE); CREATE INDEX IDX_PLINK_VAL_MODELID on BPEL_PLINK_VAL (MODELID); CREATE INDEX IDX_VARPROP_XMLDATA on VAR_PROPERTY (XML_DATA_ID); CREATE INDEX IDX_VARPROP_NAME on VAR_PROPERTY (PROP_NAME); CREATE INDEX IDX_VARPROP_VALUE on VAR_PROPERTY (PROP_VALUE); CREATE INDEX IDX_MESSAGE_MEX on BPEL_MESSAGE(MEX); CREATE INDEX IDX_MESSAGE_EXCHANGE_PIID on BPEL_MESSAGE_EXCHANGE(PIID); CREATE INDEX IDX_SCOPE_PIID on BPEL_SCOPE(PIID);Packaging ode-dao-hibernate-db-1.3.7-SNAPSHOT.zip Running tests in ode:jbi Trying to override old definition of datatype junit [junit] Testsuite: org.apache.ode.jbi.CommunicationJbiTest [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 23.291 sec [junit] ------------- Standard Output --------------- [junit] 18:54:14,492 INFO [ClassPathXmlApplicationContext] Refreshing org.apache.xbean.spring.context.ClassPathXmlApplicationContext@34d9558d: display name [org.apache.xbean.spring.context.ClassPathXmlApplicationContext@34d9558d]; startup date [Thu Sep 29 18:54:14 UTC 2016]; root of context hierarchy [junit] 18:54:14,610 INFO [XBeanXmlBeanDefinitionReader] Loading XML bean definitions from class path resource [smx-base.xml] [junit] 18:54:14,920 INFO [XBeanXmlBeanDefinitionReader] Loading XML bean definitions from class path resource [CommunicationJbiTest/smx.xml] [junit] 18:54:14,931 INFO [XBeanXmlBeanDefinitionReader] Loading XML bean definitions from class path resource [jndi-entries.xml] [junit] 18:54:15,295 INFO [ClassPathXmlApplicationContext] Bean factory for application context [org.apache.xbean.spring.context.ClassPathXmlApplicationContext@34d9558d]: org.springframework.beans.factory.support.DefaultListableBeanFactory@35ea1ccf [junit] 18:54:15,621 WARN [EndpointRegistry] Disabled endpoint processor 'org.apache.servicemix.jbi.framework.support.WSDL2Processor': java.lang.NoClassDefFoundError: org/apache/woden/WSDLReader [junit] 18:54:15,760 INFO [jetty] Logging to org.apache.servicemix.http.jetty.JCLLogger@7840e96c via org.apache.servicemix.http.jetty.JCLLogger [junit] 18:54:15,818 INFO [JBIContainer] ServiceMix 3.3 JBI Container (ServiceMix) is starting [junit] 18:54:15,818 INFO [JBIContainer] For help or more information please see: http://servicemix.apache.org/ [junit] 18:54:15,845 INFO [ComponentMBeanImpl] Initializing component: #SubscriptionManager# [junit] 18:54:15,851 INFO [DeploymentService] Restoring service assemblies [junit] 18:54:15,851 INFO [ComponentMBeanImpl] Initializing component: ms-eip [junit] 18:54:15,867 INFO [ComponentMBeanImpl] Initializing component: http [junit] 18:54:16,050 INFO [jetty] jetty-6.1.12rc1 [junit] 18:54:16,082 INFO [jetty] Started SelectChannelConnector@localhost:8198 [junit] 18:54:16,145 INFO [JBIContainer] ServiceMix JBI Container (ServiceMix) started [junit] 18:54:17,666 INFO [ComponentMBeanImpl] Initializing component: ODE [junit] 18:54:21,289 INFO [ComponentMBeanImpl] Starting component: ODE [junit] 18:54:21,364 INFO [ComponentMBeanImpl] Initializing component: ID:172.17.0.2-157774cbc92-0:0 [junit] 18:54:21,364 INFO [ComponentMBeanImpl] Starting component: ID:172.17.0.2-157774cbc92-0:0 [junit] 18:54:36,535 INFO [ClassPathXmlApplicationContext] Closing org.apache.xbean.spring.context.ClassPathXmlApplicationContext@34d9558d: display name [org.apache.xbean.spring.context.ClassPathXmlApplicationContext@34d9558d]; startup date [Thu Sep 29 18:54:14 UTC 2016]; root of context hierarchy [junit] 18:54:36,536 INFO [JBIContainer] Shutting down ServiceMix JBI Container (ServiceMix) stopped [junit] 18:54:36,537 INFO [JBIContainer] Waiting for complete shutdown of the components and service assemblies [junit] 18:54:37,664 WARN [HttpConnection] HttpConnectionManager is null. Connection cannot be released. [junit] 18:54:37,667 INFO [JBIContainer] Components and service assemblies have been shut down [junit] 18:54:37,669 INFO [JBIContainer] Deactivating component #SubscriptionManager# [junit] 18:54:37,670 INFO [JBIContainer] ServiceMix JBI Container (ServiceMix) stopped [junit] ------------- ---------------- --------------- [junit] [junit] Testcase: testCommunication took 23.275 sec [junit] Testsuite: org.apache.ode.jbi.DigestJbiTest [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 2.885 sec [junit] [junit] Testcase: testDigest took 2.882 sec [junit] Testsuite: org.apache.ode.jbi.EmptyRespJbiTest [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 2.51 sec [junit] [junit] Testcase: testEmptyResp took 2.504 sec [junit] Testsuite: org.apache.ode.jbi.ExtVarJbiTest [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 2.525 sec [junit] [junit] Testcase: testExtVar took 2.52 sec [junit] Testsuite: org.apache.ode.jbi.HelloWorldJbiTest [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 1.935 sec [junit] [junit] Testcase: testHelloWold took 1.93 sec [junit] Testsuite: org.apache.ode.jbi.MagicSessionExternalJbiTest [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 3.039 sec [junit] [junit] Testcase: testMagicSessionExternal took 3.034 sec [junit] Testsuite: org.apache.ode.jbi.MagicSessionJbiTest [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 3.033 sec [junit] [junit] Testcase: testMagicSession took 3.019 sec [junit] Testsuite: org.apache.ode.jbi.OnEventAlarmJbiTest [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 4.056 sec [junit] [junit] Testcase: testOnEventAlarm took 4.051 sec [junit] Testsuite: org.apache.ode.jbi.RetireJbiTest [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 2.664 sec [junit] [junit] Testcase: testRetire took 2.661 sec [junit] Testsuite: org.apache.ode.jbi.SpringPropertiesJbiTest [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 1.888 sec [junit] [junit] Testcase: test took 1.884 sec [junit] Testsuite: org.apache.ode.jbi.msgmap.JbiWsdl11WrapperMapperTest [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.018 sec [junit] ------------- Standard Output --------------- [junit] Retrieving document at '/workspace/jbi/target/test/resources/test.wsdl'. [junit] ------------- ---------------- --------------- [junit] [junit] Testcase: testFault took 0.015 sec Packaging ode-jbi-1.3.7-SNAPSHOT.jar Packaging ode-jbi-1.3.7-SNAPSHOT.zip Compiling ode:jbi-karaf-commands into /workspace/jbi-karaf-commands/target/classes Compiling ode:jbi-karaf-examples:ping-pong-osgi into /workspace/distro/src/examples-jbi/maven2/ping-pong-osgi/target/classes Compiling ode:jbi-bundle into /workspace/jbi-bundle/target/classes Note: Some input files use or override a deprecated API. Note: Recompile with -Xlint:deprecation for details. Compiling ode:tomee into /workspace/tomee/target/classes Packaging ode-tools-1.3.7-SNAPSHOT.jar Compiling ode:axis2:test into /workspace/axis2/target/test/classes Note: /workspace/axis2/src/test/java/org/apache/ode/axis2/SoapMessageConverterTest.java uses or overrides a deprecated API. Note: Recompile with -Xlint:deprecation for details. Note: /workspace/axis2/src/test/java/org/apache/ode/axis2/httpbinding/HttpMethodConverterTest.java uses unchecked or unsafe operations. Note: Recompile with -Xlint:unchecked for details. Running tests in ode:axis2 Trying to override old definition of datatype junit [junit] Testsuite: org.apache.ode.axis2.ODEServerTest [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 0.574 sec [junit] ------------- Standard Error ----------------- [junit] SLF4J: Failed to load class "org.slf4j.impl.StaticLoggerBinder". [junit] SLF4J: Defaulting to no-operation (NOP) logger implementation [junit] SLF4J: See http://www.slf4j.org/codes.html#StaticLoggerBinder for further details. [junit] ------------- ---------------- --------------- [junit] [junit] Testcase: testNonExistingRootDir took 0.078 sec [junit] Testcase: testNonExistingConfigDir took 0.006 sec [junit] Testsuite: org.apache.ode.axis2.SoapMessageConverterTest [junit] Tests run: 7, Failures: 0, Errors: 0, Time elapsed: 0.954 sec [junit] ------------- Standard Output --------------- [junit] Retrieving document at 'file:/workspace/axis2/target/test/resources/test1.wsdl'. [junit] Retrieving document at 'file:/workspace/axis2/target/test/resources/HelloWorld.wsdl'. [junit] Retrieving document at 'file:/workspace/axis2/target/test/resources/test1.wsdl'. [junit] Retrieving document at 'file:/workspace/axis2/target/test/resources/HelloWorld.wsdl'. [junit] Retrieving document at 'file:/workspace/axis2/target/test/resources/test1.wsdl'. [junit] Retrieving document at 'file:/workspace/axis2/target/test/resources/HelloWorld.wsdl'. [junit] Retrieving document at 'file:/workspace/axis2/target/test/resources/test1.wsdl'. [junit] Retrieving document at 'file:/workspace/axis2/target/test/resources/HelloWorld.wsdl'. [junit] Retrieving document at 'file:/workspace/axis2/target/test/resources/test1.wsdl'. [junit] Retrieving document at 'file:/workspace/axis2/target/test/resources/HelloWorld.wsdl'. [junit] Retrieving document at 'file:/workspace/axis2/target/test/resources/test1.wsdl'. [junit] Retrieving document at 'file:/workspace/axis2/target/test/resources/HelloWorld.wsdl'. [junit] Retrieving document at 'file:/workspace/axis2/target/test/resources/test1.wsdl'. [junit] Retrieving document at 'file:/workspace/axis2/target/test/resources/HelloWorld.wsdl'. [junit] <?xml version="1.0" encoding="UTF-8"?> [junit] <message><TestPart xmlns="" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:foo="urn:/bar" xmlns:ns1="http://ode/bpel/unit-test.wsdl">ns1:Hello</TestPart></message> [junit] testCreateSOAPRequest: <?xml version='1.0' encoding='utf-8'?><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"><soapenv:Body> [junit] <getObjectId xmlns="http://documentum.com/ws/2005/services" foo="bar"> [junit] <someFooBar /> [junit] <barbaz xmlns="" /> [junit] </getObjectId> [junit] </soapenv:Body></soapenv:Envelope> [junit] testParseRequest: <?xml version='1.0' encoding='utf-8'?><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"><soapenv:Header><DocumentumSecurityToken xmlns="http://documentum.com/ws/2005/services">SEKREET</DocumentumSecurityToken></soapenv:Header><soapenv:Body> [junit] <getObjectId xmlns="http://documentum.com/ws/2005/services" foo="bar"> [junit] <someFooBar /> [junit] <barbaz xmlns="" /> [junit] </getObjectId> [junit] </soapenv:Body></soapenv:Envelope> [junit] <?xml version="1.0" encoding="UTF-8"?> [junit] <message><parameters><getObjectId foo="bar" xmlns="http://documentum.com/ws/2005/services" xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> [junit] <someFooBar/> [junit] <barbaz xmlns=""/> [junit] </getObjectId></parameters></message> [junit] ------------- ---------------- --------------- [junit] [junit] Testcase: testBadPortName took 0.103 sec [junit] Testcase: testHelloWorldRequest took 0.462 sec [junit] Testcase: testCreateSOAPRequest took 0.372 sec [junit] Testcase: testCreateSOAPRequestFail took 0.001 sec [junit] Testcase: testParseRequest took 0.007 sec [junit] Testcase: testGetSoapAction took 0 sec [junit] Testcase: testBadServiceName took 0 sec [junit] Testsuite: org.apache.ode.axis2.httpbinding.HttpBindingValidatorTest [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.079 sec [junit] [junit] Testcase: testAll took 0.074 sec [junit] Testsuite: org.apache.ode.axis2.httpbinding.HttpHelperTest [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 0.01 sec [junit] [junit] Testcase: testIsXml took 0.005 sec [junit] Testcase: testIsText took 0.001 sec [junit] Testsuite: org.apache.ode.axis2.httpbinding.HttpMethodConverterTest [junit] Tests run: 3, Failures: 0, Errors: 0, Time elapsed: 0.138 sec [junit] [junit] Testcase: testHello took 0.096 sec [junit] Testcase: testGetTag took 0.024 sec [junit] Testcase: testGetTagWithNoPart took 0.014 sec [junit] Testsuite: org.apache.ode.axis2.util.UrlEncodedTransformerTest [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 0.009 sec [junit] [junit] Testcase: testComplexType took 0.001 sec [junit] Testcase: testSimple took 0 sec [junit] Testsuite: org.apache.ode.axis2.util.UrlReplacementTransformerTest [junit] Tests run: 4, Failures: 0, Errors: 0, Time elapsed: 0.017 sec [junit] [junit] Testcase: testWithMixnMatch took 0.001 sec [junit] Testcase: testComplexType took 0 sec [junit] Testcase: testWithParentheses took 0.003 sec [junit] Testcase: testWithBraces took 0.005 sec Packaging ode-axis2-1.3.7-SNAPSHOT.jar Downloading org.apache.ode:ode-console:jar:0.1.0-SNAPSHOT Buildr aborted! RuntimeError : Failed to download org.apache.ode:ode-console:jar:0.1.0-SNAPSHOT, tried the following repositories: http://repo1.maven.org/maven2/ http://people.apache.org/~vanto/m2/ (See full trace by running task with --trace) Build step 'Execute shell' marked build as failure Recording fingerprints Archiving artifacts Compressed 20.47 MB of artifacts by 82.6% relative to #536 Recording fingerprints Recording test results TestNG Reports Processing: START Looking for TestNG results report in workspace using pattern: **/reports/testng/testng-results.xml Did not find any matching files. Updating ODE-1028