Skip to main content

Notice: This Wiki is now read only and edits are no longer possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "Dali 3.3 RC1 Release"

Line 7: Line 7:
 
|'''Bug No.'''||'''Description'''||'''Test Steps'''||'''Test Step Results'''
 
|'''Bug No.'''||'''Description'''||'''Test Steps'''||'''Test Step Results'''
  
 +
|-
 +
| 407652
 +
| Generate entities from tables wizard does not generate entities implementing java.io.Serializable
 +
| Create a Java project
 +
| Java project is created successfully
 +
|-
 +
| ...
 +
| ...
 +
| R-Click on Java project select configure > Convert to JPA Project...
 +
| Modify Faceted Project dialog appears
 +
|-
 +
| ...
 +
| ...
 +
| Leave defaults and click on Next and then Finish buttons.
 +
| Project is updated to JPA
 +
|-
 +
| ...
 +
| ,,,
 +
| R-click on JPA project select JPA Tools > Generate Entities From Tables...
 +
| Generate Custom Entities
 +
|-
 +
| ...
 +
| ...
 +
| Select a few tables and then click on Finish button
 +
| Verify entities are created successfully, without error. Also verify that the entities implement serializable
 
|-
 
|-
 
| 408149
 
| 408149

Revision as of 13:21, 28 May 2013

Dali 3.3

Dali 3.3 RC1 Release Manual Testing

Manual Testing for 3.3 RC1 Release
Bug No. Description Test Steps Test Step Results
407652 Generate entities from tables wizard does not generate entities implementing java.io.Serializable Create a Java project Java project is created successfully
... ... R-Click on Java project select configure > Convert to JPA Project... Modify Faceted Project dialog appears
... ... Leave defaults and click on Next and then Finish buttons. Project is updated to JPA
... ,,, R-click on JPA project select JPA Tools > Generate Entities From Tables... Generate Custom Entities
... ... Select a few tables and then click on Finish button Verify entities are created successfully, without error. Also verify that the entities implement serializable
408149 Missing key in jpt_jaxb_eclipselink_core_validation_description.properties Download latest Dali build All pre-reqs and build were downloaded successfully
... ... Open org.eclipse.jpt.jaxb.eclipselink.core jar file from the plugins directory All files appear in winzip dialog
... ... Open jpt_jaxb_eclipselink_core_validation_description.properties with wordpad Verify OXM_FILE__NOT_LATEST_VERSION= appears on line 18 in the .properties file
408172 2.1 is default facet version for JAXB facet Select File > New > Other New dialog appears
... ... Select JAXB > JAXB Project and click on Next button JAXB Project page appears and verify that 2.2 appears as the default for JAXB version
408174 [EclipseLink] StringIndexOutOfBoundsException when typing new java type in oxm.xml Create a new JAXB 2.2 EL2.5 project JAXB project is created successfully
... ... Create a new package, R-Click on New package and select EclipseLink MOXy OXM File New EclipseLink MOXy OXM File dialog appears and oxm.xml appears as default for file name
... ... Click on Finish button Verify oxm.xml file is created successfully without error
... ... Go to Source and enter null java-type name and Save
         <java-types>

<java-type name=""></java-type> </java-types>

Verify no errors appear in Error log
... ... Update source to have blank <java-type></java-type> and Save Verify no errors appear in Error log
... ... Update source to have a name <java-type name=test></java-type> and Save Verify error in problems pane stating that name must be specified is removed

Back to the top