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 "EclipseLink/Development/DBWS/ParseDDLDS/Testing"

(Parsing DDL for Metadata: Testing)
(Parsing DDL for Metadata: Testing)
 
(11 intermediate revisions by the same user not shown)
Line 5: Line 5:
 
   .source-xml {padding:1em;border:1px solid black; background-color: white;}
 
   .source-xml {padding:1em;border:1px solid black; background-color: white;}
 
   .source-text {padding:1em;border:1px dashed black; background-color: white;}
 
   .source-text {padding:1em;border:1px dashed black; background-color: white;}
 +
  .VERSION { font-size: small; font-family : arial, sans-serif; }
 +
  .NORM  { color: black;  background-color: transparent;}
 +
  .FIFO  { color: purple; background-color: transparent;}
 +
  .CHAR  { color: yellow; background-color: transparent;}
 +
  .DIR  { color: blue;  background-color: transparent;}  .BLOCK { color: yellow; background-color: transparent;}
 +
  .LINK  { color: aqua;  background-color: transparent;}
 +
  .SOCK  { color: fuchsia;background-color: transparent;}
 +
  .EXEC  { color: green;  background-color: transparent;}
 
</css>
 
</css>
  
Line 10: Line 18:
 
This page provides links to the Wiki pages for testing the Oracle DDL Parser
 
This page provides links to the Wiki pages for testing the Oracle DDL Parser
  
The git repository is located at <tt>git://git.eclipse.org/gitroot/eclipselink/oracleddlparser.test.git</tt>
+
The git repository is located at [http://git.eclipse.org/c/eclipselink/oracleddlparser.test.git <tt>git://git.eclipse.org/gitroot/eclipselink/oracleddlparser.test.git</tt>]
The tests are laid out as follows:
+
 
<source lang="text">
+
The tests are laid out as follows:<br>
─ org
+
<b class="DIR">src</b><br>
    └── eclipse
+
&nbsp; └── <b class="DIR">org.eclipse.persistence.tools.oracleddl.test</b><br>
        └── persistence
+
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; ├── <b class="NORM">AllTests.java</b><br>
            └── tools
+
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; ├── <b class="NORM">TestHelper.java</b><br>
                └── oracleddl
+
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; ├── <b class="DIR">databasetypebuilder</b><br>
                    └── test
+
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; │   ├── <b class="NORM">DatabaseTypeBuilderTestSuite.java</b><br>
                        ├── AllTests.java
+
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; │   ├── <b class="NORM">IOTTableDDLTestSuite.java</b><br>
                        ├── TestHelper.java
+
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; │   ├── <b class="NORM">TableDDLTestSuite.java</b><br>
                        ├── databasetypebuilder
+
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; │   └── <b class="NORM">TransformsTestSuite.java</b><br>
                        │   ├── DatabaseTypeBuilderTestSuite.java
+
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; ├── <b class="DIR">ddlparser</b><br>
                        │   ├── IOTTableDDLTestSuite.java
+
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; │   └── <b class="NORM">DDLParserTest.java</b><br>
                        │   ├── TableDDLTestSuite.java
+
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; └── <b class="DIR">visit</b><br>
                        │   └── TransformsTestSuite.java
+
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; ├── <b class="NORM">FunctionTypeTest.java</b><br>
                        ├── ddlparser
+
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; ├── <b class="NORM">FunctionTypeVisitor.java</b><br>
                        │   └── DDLParserTest.java
+
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; ├── <b class="NORM">IntervalTypeTest.java</b><br>
                        └── visit
+
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; ├── <b class="NORM">IntervalVisitor.java</b><br>
                            ├── FunctionTypeTest.java
+
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; ├── <b class="NORM">PrecisionTypeTest.java</b><br>
                            ├── FunctionTypeVisitor.java
+
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; ├── <b class="NORM">PrecisionTypeVisitor.java</b><br>
                            ├── IntervalTypeTest.java
+
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; ├── <b class="NORM">ProcedureTypeTest.java</b><br>
                            ├── IntervalVisitor.java
+
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; ├── <b class="NORM">ProcedureTypeVisitor.java</b><br>
                            ├── PrecisionTypeTest.java
+
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; ├── <b class="NORM">SizedTypeTest.java</b><br>
                            ├── PrecisionTypeVisitor.java
+
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; ├── <b class="NORM">SizedTypeVisitor.java</b><br>
                            ├── ProcedureTypeTest.java
+
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; ├── <b class="NORM">TableTypeTest.java</b><br>
                            ├── ProcedureTypeVisitor.java
+
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; ├── <b class="NORM">TableTypeVisitor.java</b><br>
                            ├── SizedTypeTest.java
+
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; └── <b class="NORM">VisitorsTestSuite.java</b><br>
                            ├── SizedTypeVisitor.java
+
                            ├── TableTypeTest.java
+
                            ├── TableTypeVisitor.java
+
                            └── VisitorsTestSuite.java
+
</source>
+
  
 
=== Links ===
 
=== Links ===
*[http://wiki.eclipse.org/EclipseLink/Development/DBWS/ParseDDLDS/Testing/VisitMethods Visit Method Testing]
+
*[http://wiki.eclipse.org/EclipseLink/Development/DBWS/ParseDDLDS/Testing/VisitMethods Visitor Testing]

Latest revision as of 14:17, 12 August 2011


Parsing DDL for Metadata: Testing

This page provides links to the Wiki pages for testing the Oracle DDL Parser

The git repository is located at git://git.eclipse.org/gitroot/eclipselink/oracleddlparser.test.git

The tests are laid out as follows:
src
  └── org.eclipse.persistence.tools.oracleddl.test
        ├── AllTests.java
        ├── TestHelper.java
        ├── databasetypebuilder
        │   ├── DatabaseTypeBuilderTestSuite.java
        │   ├── IOTTableDDLTestSuite.java
        │   ├── TableDDLTestSuite.java
        │   └── TransformsTestSuite.java
        ├── ddlparser
        │   └── DDLParserTest.java
        └── visit
            ├── FunctionTypeTest.java
            ├── FunctionTypeVisitor.java
            ├── IntervalTypeTest.java
            ├── IntervalVisitor.java
            ├── PrecisionTypeTest.java
            ├── PrecisionTypeVisitor.java
            ├── ProcedureTypeTest.java
            ├── ProcedureTypeVisitor.java
            ├── SizedTypeTest.java
            ├── SizedTypeVisitor.java
            ├── TableTypeTest.java
            ├── TableTypeVisitor.java
            └── VisitorsTestSuite.java

Links

Back to the top