Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "EclipseLink/Development/DBWS/ParseDDLDS/Testing/VisitMethods"

(New page: __NOTOC__ <css> .source-sql {padding:1em;border:1px solid black; background-color: white;} .source-plsql {padding:1em;border:1px solid black; background-color: white;} .source-java5 ...)
 
Line 23: Line 23:
 
| Implemented
 
| Implemented
 
|-
 
|-
| FunctionType
+
| FunctionTypeTestSuite
 
| FunctionType, DatabaseType, ProcedureType, ArgumentType, ArgumentTypeDirection
 
| FunctionType, DatabaseType, ProcedureType, ArgumentType, ArgumentTypeDirection
 
| Yes
 
| Yes
 
|-
 
|-
| Interval
+
| IntervalTestSuite
 
| IntervalDayToSecond,&nbsp;IntervalYearToMonth
 
| IntervalDayToSecond,&nbsp;IntervalYearToMonth
 
| Yes
 
| Yes
 
|-
 
|-
| PrecisionType
+
| PrecisionTypeTestSuite
 
| DecimalType, DoubleType, FloatType, NumericType, RealType&nbsp;
 
| DecimalType, DoubleType, FloatType, NumericType, RealType&nbsp;
 
| Yes
 
| Yes
 
|-
 
|-
| ProcedureType
+
| ProcedureTypeTestSuite
 
| ProcedureType, ArgumentType, ArgumentTypeDirection, DatabaseType
 
| ProcedureType, ArgumentType, ArgumentTypeDirection, DatabaseType
 
| Yes
 
| Yes
 
|-
 
|-
| SizedType
+
| SizedTypeTestSuite
 
| BinaryType, BlobType, CharType, ClobType, LongRawType, LongType, NCharType, NClobType, NVarChar2Type, RawType, URowIdType, VarChar2Type, VarCharType
 
| BinaryType, BlobType, CharType, ClobType, LongRawType, LongType, NCharType, NClobType, NVarChar2Type, RawType, URowIdType, VarChar2Type, VarCharType
 
| Yes
 
| Yes
 
|-
 
|-
| TableType
+
| TableTypeTestSuite
 
| TableType, FieldType, DatabaseType
 
| TableType, FieldType, DatabaseType
 
| Yes
 
| Yes
 
|}
 
|}

Revision as of 08:57, 11 August 2011


Parsing DDL for Metadata: Visit Method Testing

Tests

The purpose of the following tests is to ensure that all visit methods in a given chain are called. The tests verify that all data set in the model can be retrieved successfully.

The tests reside in the org.eclipse.persistence.tools.oracleddl.test.metadata.visit package.


Test Covers Implemented
FunctionTypeTestSuite FunctionType, DatabaseType, ProcedureType, ArgumentType, ArgumentTypeDirection Yes
IntervalTestSuite IntervalDayToSecond, IntervalYearToMonth Yes
PrecisionTypeTestSuite DecimalType, DoubleType, FloatType, NumericType, RealType  Yes
ProcedureTypeTestSuite ProcedureType, ArgumentType, ArgumentTypeDirection, DatabaseType Yes
SizedTypeTestSuite BinaryType, BlobType, CharType, ClobType, LongRawType, LongType, NCharType, NClobType, NVarChar2Type, RawType, URowIdType, VarChar2Type, VarCharType Yes
TableTypeTestSuite TableType, FieldType, DatabaseType Yes

Back to the top