Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

EL TCK signature test , version and documentation update #1214

Merged
merged 6 commits into from
Jan 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions el/docs/userguide/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -28,18 +28,18 @@
<groupId>org.glassfish</groupId>
<artifactId>tck_el</artifactId>
<packaging>pom</packaging>
<version>5.0.0</version>
<name>Eclipse Foundation Technology Compatibility Kit User's Guide for Jakarta Expression Language for Jakarta EE, Release 5.0</name>
<version>6.0.0</version>
<name>Eclipse Foundation Technology Compatibility Kit User's Guide for Jakarta Expression Language for Jakarta EE, Release 6.0</name>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<site.output.dir>${project.build.directory}/staging</site.output.dir>
<maven.site.skip>true</maven.site.skip>
<asciidoctorj.version>2.4.2</asciidoctorj.version>
<asciidoctorj.diagram.version>2.1.0</asciidoctorj.diagram.version>
<asciidoctorj.maven.plugin.version>2.1.0</asciidoctorj.maven.plugin.version>
<asciidoctorj.maven.plugin.version>2.2.4</asciidoctorj.maven.plugin.version>
<asciidoctorj.pdf.version>1.5.3</asciidoctorj.pdf.version>
<jbake.maven.plugin.version>0.3.3</jbake.maven.plugin.version>
<jbake.maven.plugin.version>2.7.0-rc.7</jbake.maven.plugin.version>
<freemarker.version>2.3.30</freemarker.version>
<!-- status: DRAFT, BETA, etc., or blank for final -->
<status></status>
Expand Down Expand Up @@ -82,8 +82,8 @@
<configuration>
<rules>
<requireJavaVersion>
<version>[1.8.0,)</version>
<message>You need JDK8 or newer</message>
<version>[17,)</version>
<message>You need JDK17 or newer</message>
</requireJavaVersion>
</rules>
</configuration>
Expand Down
2 changes: 1 addition & 1 deletion el/docs/userguide/src/main/jbake/content/attributes.conf
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
:MavenVersion: 3.6.3+
:JakartaEEVersion: 11
:excludeListFileName: docs/TCK-Exclude-List.txt
:TCKPackageName: jakarta-expression-language-tck-5.0.0.zip
:TCKPackageName: jakarta-expression-language-tck-6.0.0.zip
// Directory names used in examples in using.adoc.
:sigTestDirectoryExample: com/sun/ts/tests/signaturetest/el
:singleTestDirectoryExample: com/sun/ts/tests/el/api/client
Expand Down
32 changes: 25 additions & 7 deletions el/docs/userguide/src/main/jbake/content/using-examples.inc
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,31 @@ mvn verify

Example 5-1 {TechnologyShortName} TCK Signature Tests

To run the {TechnologyShortName} TCK signature tests, enter the
following commands:

[source,subs="attributes"]
----
mvn verify -Dit.test=com.sun.ts.tests.el.signaturetest.**
----
To run the {TechnologyShortName} TCK signature tests, use the
sigtest-maven-plugin in the TCK runner as below.

=======================================================================
<plugin>
<groupId>org.netbeans.tools</groupId>
<artifactId>sigtest-maven-plugin</artifactId>
<version>1.5</version>
<configuration>
<sigfile>path-to-sig-file-provided-with-TCK</sigfile>
<packages>jakarta.el</packages>
<classes>path-to-api-jar</classes>
<report>target/sig-report.txt</report>
</configuration>
<executions>
<execution>
<id>sigtest</id>
<goals>
<goal>check</goal>
</goals>
<phase>verify</phase>
</execution>
</executions>
</plugin>
=======================================================================

[[GCMBV]]

Expand Down
33 changes: 28 additions & 5 deletions el/docs/userguide/src/main/jbake/content/using.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ Executing Tests
5 Executing Tests
-----------------

The {TechnologyShortName} TCK uses the Junit and Jboss Arquillian
frameworks to execute the tests.
The {TechnologyShortName} TCK uses the Junit
framework to execute the tests.

This chapter includes the following topics:

Expand Down Expand Up @@ -148,9 +148,32 @@ mvn verify -DexcludedGroups={groupsExample}
The tests in the group +{groupsExample}+ is exclued from the run.
Multiple groups can be separated by comma.

[[GBFVK]][[Running-Signature-Test]]

5.3 Running Signature Test
~~~~~~~~~~~~~~~~~~~~~~~~~~

sigtest-maven-plugin is used to run the EL signature test. Please refer the
sample provided in the platform TCK repository.

[NOTE]
=======================================================================

Use below configuration while using sigtest-maven-plugin with goal as `check`.

<configuration>
<sigfile>path-to-sig-file-provided-with-TCK</sigfile>
<packages>jakarta.el</packages>
<classes><path-to-api-jar</classes>
<report>sig-report.txt</report>
</configuration>

=======================================================================


[[GCLRR]][[running-the-tck-against-the-ri]]

5.3 Running the TCK Against another CI
5.4 Running the TCK Against another CI
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

Some test scenarios are designed to ensure that the configuration and deployment of
Expand All @@ -169,7 +192,7 @@ of the Tests."]

[[GCLRZ]][[running-the-tck-against-a-vendors-implementation]]

5.4 Running the TCK Against a Vendor's Implementation
5.5 Running the TCK Against a Vendor's Implementation
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

This test scenario is one of the compatibility test phases that all
Expand All @@ -187,7 +210,7 @@ of the Tests."]

[[GBFVK]][[test-reports]]

5.5 Test Reports
5.6 Test Reports
~~~~~~~~~~~~~~~~

A set of report files is created for every test run. These report files
Expand Down
6 changes: 5 additions & 1 deletion el/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,16 @@
</parent>

<artifactId>jakarta-expression-language-tck</artifactId>
<version>6.0.0-SNAPSHOT</version>
<version>6.0.0</version>
<packaging>jar</packaging>

<name>el-tck</name>
<description>EL TCK</description>

<properties>
<jakarta.el-api.version>6.0.0-M1</jakarta.el-api.version>
</properties>

<dependencies>
<dependency>
<groupId>${project.groupId}</groupId>
Expand Down
4 changes: 4 additions & 0 deletions el/src/main/assembly/assembly.xml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,10 @@
<source>${project.basedir}/src/main/resources/LICENSE_${license}.md</source>
<destName>LICENSE.md</destName>
</file>
<file>
<source>${project.basedir}/src/main/resources/jakarta.el.sig_6.0</source>
<destName>jakarta.el.sig_6.0</destName>
</file>
</files>
<fileSets>
<fileSet>
Expand Down
Loading
Loading