[JBoss JIRA] (JBIDE-10277) test failure in org.hibernate.eclipse.console.test
by Nick Boldt (Created) (JIRA)
test failure in org.hibernate.eclipse.console.test
--------------------------------------------------
Key: JBIDE-10277
URL: https://issues.jboss.org/browse/JBIDE-10277
Project: Tools (JBoss Tools)
Issue Type: Bug
Components: hibernate
Affects Versions: 3.3.0.M5
Reporter: Nick Boldt
Assignee: Dmitry Geraskov
Fix For: 3.3.0.M5
Test failing for the past 4 builds:
https://hudson.qa.jboss.com/hudson/job/jbosstools-3.3_trunk.component--hi...
{code}
java.lang.IllegalStateException: zip file closed
at java.util.zip.ZipFile.ensureOpen(ZipFile.java:415)
at java.util.zip.ZipFile.getEntry(ZipFile.java:160)
at java.util.jar.JarFile.getEntry(JarFile.java:208)
at java.util.jar.JarFile.getJarEntry(JarFile.java:191)
at sun.misc.URLClassPath$JarLoader.getResource(URLClassPath.java:757)
at sun.misc.URLClassPath$JarLoader.findResource(URLClassPath.java:735)
at sun.misc.URLClassPath$1.next(URLClassPath.java:196)
at sun.misc.URLClassPath$1.hasMoreElements(URLClassPath.java:206)
at java.net.URLClassLoader$3$1.run(URLClassLoader.java:416)
at java.security.AccessController.doPrivileged(Native Method)
at java.net.URLClassLoader$3.next(URLClassLoader.java:413)
at java.net.URLClassLoader$3.hasMoreElements(URLClassLoader.java:438)
at sun.misc.CompoundEnumeration.next(CompoundEnumeration.java:27)
at sun.misc.CompoundEnumeration.hasMoreElements(CompoundEnumeration.java:36)
at org.hibernate.eclipse.console.utils.OpenMappingUtilsEjb3.enumDocuments(OpenMappingUtilsEjb3.java:65)
at org.hibernate.eclipse.console.utils.OpenMappingUtils$1.execute(OpenMappingUtils.java:544)
at org.hibernate.console.execution.DefaultExecutionContext.execute(DefaultExecutionContext.java:63)
at org.hibernate.console.ConsoleConfiguration.execute(ConsoleConfiguration.java:72)
at org.hibernate.eclipse.console.utils.OpenMappingUtils.searchInEjb3MappingFiles(OpenMappingUtils.java:542)
at org.hibernate.eclipse.console.utils.OpenMappingUtils.searchFileToOpen(OpenMappingUtils.java:628)
at org.hibernate.eclipse.console.actions.OpenMappingAction.run(OpenMappingAction.java:130)
at org.hibernate.eclipse.console.test.mappingproject.OpenMappingFileTest.openTest(OpenMappingFileTest.java:111)
at org.hibernate.eclipse.console.test.mappingproject.OpenMappingFileTest.testOpenMappingFileTest(OpenMappingFileTest.java:46)
at sun.reflect.GeneratedMethodAccessor95.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:597)
{code}
https://hudson.qa.jboss.com/hudson/job/jbosstools-3.3_trunk.component--hi...
Also failing in overall tests job:
http://hudson.qa.jboss.com/hudson/job/jbosstools-3.3_trunk.tests/1122/tes...
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.jboss.org/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira
14 years, 2 months
[JBoss JIRA] (JBIDE-10148) Query parameter is necessary for QueryExporter but is not required by polugins
by Dmitry Geraskov (Created) (JIRA)
Query parameter is necessary for QueryExporter but is not required by polugins
------------------------------------------------------------------------------
Key: JBIDE-10148
URL: https://issues.jboss.org/browse/JBIDE-10148
Project: Tools (JBoss Tools)
Issue Type: Bug
Components: hibernate
Affects Versions: 3.3.0.M4
Reporter: Dmitry Geraskov
Assignee: Dmitry Geraskov
Fix For: 3.3.0.Beta2
The exception is thrown when run QueryExporter from ui without "query" parameter set:
org.hibernate.hql.ast.QuerySyntaxException: unexpected end of subtree []
at org.hibernate.hql.ast.QuerySyntaxException.convert(QuerySyntaxException.java:54)
at org.hibernate.hql.ast.QuerySyntaxException.convert(QuerySyntaxException.java:47)
at org.hibernate.hql.ast.ErrorCounter.throwQueryException(ErrorCounter.java:82)
at org.hibernate.hql.ast.QueryTranslatorImpl.analyze(QueryTranslatorImpl.java:261)
at org.hibernate.hql.ast.QueryTranslatorImpl.doCompile(QueryTranslatorImpl.java:185)
at org.hibernate.hql.ast.QueryTranslatorImpl.compile(QueryTranslatorImpl.java:136)
at org.hibernate.engine.query.HQLQueryPlan.<init>(HQLQueryPlan.java:101)
at org.hibernate.engine.query.HQLQueryPlan.<init>(HQLQueryPlan.java:80)
at org.hibernate.engine.query.QueryPlanCache.getHQLQueryPlan(QueryPlanCache.java:98)
at org.hibernate.impl.AbstractSessionImpl.getHQLQueryPlan(AbstractSessionImpl.java:156)
at org.hibernate.impl.AbstractSessionImpl.createQuery(AbstractSessionImpl.java:135)
at org.hibernate.impl.SessionImpl.createQuery(SessionImpl.java:1760)
at org.hibernate.tool.hbm2x.QueryExporter.doStart(QueryExporter.java:36)
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.jboss.org/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira
14 years, 2 months
[JBoss JIRA] Created: (JBDS-1508) Calculate properly font size when displaying version information on Splashscreen
by Vlado Pakan (JIRA)
Calculate properly font size when displaying version information on Splashscreen
--------------------------------------------------------------------------------
Key: JBDS-1508
URL: https://issues.jboss.org/browse/JBDS-1508
Project: Developer Studio (JBoss Developer Studio)
Issue Type: Feature Request
Components: ui/branding
Affects Versions: 4.0.0.CR1
Environment: JBDS 4.0.0.v20110116-1048-H515-CR1
Reporter: Vlado Pakan
Priority: Minor
Currently is font size of version text displayed on JBDS splash screen hardcoded. It's fine until version text is not too long. When complete build id is displayed ( when property -DSHOW_BUILDID_ON_STARTUP=true is specified when starting eclipse) than version text is too long and is displayed only partially.
Logic how to calculate displayed text dimensions is already in source code so we need to find out maximal rectangle which can version text occupy and upon that dimensions properly calculate font size used for version text.
--
This message is automatically generated by JIRA.
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
14 years, 2 months