Skip to content

Regression

com.sun.ts.tests.jstl.spec.sql.transaction.JSTLClient.positiveTxRollbackLifeCycleTest (from tags-tck)

Failing for the past 1 build (Since #155 )
Took 0 ms.

Error Message

test result: Failed. Illegal access to test: com.sun.ts.lib.deliverable.PropertyNotSetException: No value found for jimage.dir. Please check your jte file for an appropiate value

Stacktrace

test result: Failed. Illegal access to test: com.sun.ts.lib.deliverable.PropertyNotSetException: No value found for jimage.dir. Please check your jte file for an appropiate value

Standard Output

#Test Results (version 2)
#Wed Sep 29 10:28:26 UTC 2021
#-----testdescription-----
$file=/home/jenkins/agent/workspace/jakartaee-tck_master/tags-tck/src/com/sun/ts/tests/jstl/spec/sql/transaction/JSTLClient.java
$root=/home/jenkins/agent/workspace/jakartaee-tck_master/tags-tck/src
assertion_ids=JSTL\:SPEC\:61  The  < sql\:transaction> action establishes a\n\t\t\t\ttransaction context for its  < sql\:query> and  < sql\:update>\n\t\t\t\tsubtags.\nJSTL\:SPEC\:61.1  The 'dataSource' attribute specifies the DataSource\n\t\t\t\t\t\tassociated with the database to query.\nJSTL\:SPEC\:61.1.1  The result of the evaluated expression can be of\n\t\t\t\t\t\t\t\ttype String.\nJSTL\:SPEC\:61.2  The 'isolation' attribute specifies the transaciton\n\t\t\t\t\t\tisolation level.\nJSTL\:SPEC\:61.2.1  The result of the evaluated expression must be of\n\t\t\t\t\t\t\t\ttype String.\nJSTL\:SPEC\:61.2.2  A value of 'read_committed' sets the transaction\n\t\t\t\t\t\t\t\tisolation level to TRANSACTION_READ_COMMITTED.\nJSTL\:SPEC\:61.2.3  A value of 'read_uncommitted' sets the transaction\n\t\t\t\t\t\t\t\tisolation level to TRANSACTION_READ_UNCOMMITTED.\nJSTL\:SPEC\:61.2.4  A value of 'repeatable_read' sets the transaction\n\t\t\t\t\t\t\t\tisolation level to TRANSACTION_REPEATABLE_READ.\nJSTL\:SPEC\:61.2.5  A value of 'serializable' sets the transaction\n\t\t\t\t\t\t\t\tisolation level to TRANSACTION_SERIALIZABLE.\nJSTL\:SPEC\:61.2.6  If the evaluated expression is not of type String,\n\t\t\t\t\t\t\t\tan Exception is thrown.\nJSTL\:SPEC\:61.2.7  If the isolation level is not specified, it is the\n\t\t\t\t\t\t\t\tisolation level the DataSource has been configured with.\nJSTL\:SPEC\:61.3  Any nested  < sql\:query> and  < sql\:update> actions\n\t\t\t\t\t\tmust not specify a 'dataSource' attribute.\nJSTL\:SPEC\:61.4  If 'dataSource' is null, a JspException is thrown.\nJSTL\:SPEC\:61.5  The tag handler of the  < sql\:transaction> action\n\t\t\t\t\t\tmust perform the following steps in it's lifecycle methods\:\nJSTL\:SPEC\:61.5.1  doStartTag()\:\nJSTL\:SPEC\:61.5.1.1  Determine the transaction isolation level of the\n\t\t\t\t\t\t\t\t\t\tDBMS (using the Connection method getTransactionIsolation()).\nJSTL\:SPEC\:61.5.1.1.1  If transactions are not supported, an exception\n\t\t\t\t\t\t\t\t\t\t\t\tis raised causing the transaction to fail.\nJSTL\:SPEC\:61.5.1.1.2  For any other transaction isolation level, the\n\t\t\t\t\t\t\t\t\t\t\t\tauto-commit mode is disabled by calling setAutoCommit(false) \n\t\t\t\t\t\t\t\t\t\t\t\ton the connection.\nJSTL\:SPEC\:61.5.1.2  If the 'isolation' attribute is specified, the\n\t\t\t\t\t\t\t\t\t\tcurrent transaction isolation level is save and set to the \n\t\t\t\t\t\t\t\t\t\tspecified level (using the Connection method\n\t\t\t\t\t\t\t\t\t\tsetTransactionIsolation()).\nJSTL\:SPEC\:61.5.2  doEndTag()\:\nJSTL\:SPEC\:61.5.2.1  Calls the cConnection method commit().\nJSTL\:SPEC\:61.5.3  doCatch()\:\nJSTL\:SPEC\:61.5.3.1  Calls the Connection method rollback().\nJSTL\:SPEC\:61.5.4  doFinally()\:\nJSTL\:SPEC\:61.5.4.1  If a transaction isolation level has been saved,\n\t\t\t\t\t\t\t\t\t\tit is restored using the Connection meghod \n\t\t\t\t\t\t\t\t\t\tsetTransactionIsolation().\nJSTL\:SPEC\:61.5.4.2  Enables auto-commit mode by calling\n\t\t\t\t\t\t\t\t\t\tsetAutoCommit(true) on the Connection.\nJSTL\:SPEC\:61.5.4.3  Closes the connection.\nJSTL\:SPEC\:61.6  Any exception occurring during the execution of this\n\t\t\t\t\t\taction must be caught and rethrown after the transaction has been \n\t\t\t\t\t\trolled back.\nJSTL\:SPEC\:61.7  A connection is obtained by the action using the\n\t\t\t\t\t\tfollowing algorithm\:\nJSTL\:SPEC\:61.7.1  If the 'dataSource' attribute is given, the\n\t\t\t\t\t\t\t\tConnection object is obtained through getConnection() on the \n\t\t\t\t\t\t\t\tspecified DataSource and release before the end of the tag.\nJSTL\:SPEC\:61.7.1.1  If 'dataSource' resolves to a String, it is\n\t\t\t\t\t\t\t\t\t\tinterpreted as a JNDI path to a DataSource resource.\nJSTL\:SPEC\:61.7.2  If the 'dataSource' attribute is missing, the\n\t\t\t\t\t\t\t\tDataSource from which to obtain the Connection is retrieved from \n\t\t\t\t\t\t\t\tthe 'javax.servlet.jsp.jstl.sql.dataSource scoped variable.\nJSTL\:SPEC\:61.7.2.1  The Connection object is obtained through\n\t\t\t\t\t\t\t\t\t\tgetConnection() on the specified DataSource and released \n\t\t\t\t\t\t\t\t\t\tbefore the tag completes.\nJSTL\:SPEC\:61.8  If an exception is caused by the body content, it must\n\t\t\t\t\t\tbe propagated.\nJSTL\:SPEC\:61.9  If an exception is caused by the action, it must be\n\t\t\t\t\t\tpropagated.
classname=com.sun.ts.tests.jstl.spec.sql.transaction.JSTLClient
direction=forward
finder=cts
id=positiveTxRollbackLifeCycleTest
keywords=all jstl javaee javaee_web_profile positiveTxRollbackLifeCycleTest novehicle forward
service_eetest=no
testName=positiveTxRollbackLifeCycleTest
testProps=\ webServerHost  webServerPort  ts_home  jstl.db.url  jstl.db.user  jstl.db.password  jstl.db.driver
test_directory=com/sun/ts/tests/jstl/spec/sql/transaction

#-----environment-----
TS_HOME=/home/jenkins/agent/workspace/jakartaee-tck_master/tags-tck/bin/xml/../..
harness.executeMode=2
harness.log.delayseconds=1
harness.log.port=2000
harness.log.traceflag=true
harness.socket.retry.count=10
harness.temp.directory=${ts.home}/tmp
jstl.db.driver=org.apache.derby.jdbc.ClientDriver
jstl.db.name=derbyDB
jstl.db.password=cts1
jstl.db.port=1527
jstl.db.server=localhost
jstl.db.url=jdbc\:derby\://${jstl.db.server}\:${jstl.db.port}/${jstl.db.name};create\=true
jstl.db.user=cts1
porting.ts.url.class.1=com.sun.ts.lib.implementation.sun.common.SunRIURL
ts.home=/home/jenkins/agent/workspace/jakartaee-tck_master/tags-tck/bin/xml/../..
ts_home=${TS_HOME}
webServerHost=localhost
webServerPort=8080

#-----testresult-----
description=file\:/home/jenkins/agent/workspace/jakartaee-tck_master/tags-tck/src/com/sun/ts/tests/jstl/spec/sql/transaction/JSTLClient.java\#positiveTxRollbackLifeCycleTest
end=Wed Sep 29 10\:28\:26 UTC 2021
environment=ts_unix
execStatus=Failed. Illegal access to test\: com.sun.ts.lib.deliverable.PropertyNotSetException\: No value found for jimage.dir. Please check your jte file for an appropiate value
harnessLoaderMode=Classpath Loader
harnessVariety=Full Bundle
javatestOS=Linux 5.12.7-300.fc34.x86_64 (amd64)
javatestVersion=5.0
script=com.sun.ts.lib.harness.TSScript
sections=script_messages TestRun
start=Wed Sep 29 10\:28\:26 UTC 2021
test=com/sun/ts/tests/jstl/spec/sql/transaction/JSTLClient.java\#positiveTxRollbackLifeCycleTest
timeoutSeconds=600
totalTime=3
work=/home/jenkins/agent/workspace/jakartaee-tck_master/tags-tckwork/tags-tck/com/sun/ts/tests/jstl/spec/sql/transaction

#section:script_messages
----------messages:(0/0)----------

#section:TestRun
----------messages:(0/0)----------
----------log:(0/0)----------
result: Failed. Illegal access to test: com.sun.ts.lib.deliverable.PropertyNotSetException: No value found for jimage.dir. Please check your jte file for an appropiate value


test result: Failed. Illegal access to test: com.sun.ts.lib.deliverable.PropertyNotSetException: No value found for jimage.dir. Please check your jte file for an appropiate value