forked from jakartaee/platform-tck
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
sample output with latest changes from https://github.com/scottmarlow…
…/jakartaee-tck-tools/tree/rewritejpa Signed-off-by: Scott Marlow <[email protected]>
- Loading branch information
1 parent
d8531f1
commit 5089f06
Showing
247 changed files
with
74,827 additions
and
0 deletions.
There are no files selected for viewing
203 changes: 203 additions & 0 deletions
203
jpa/platform-tests/src/main/java/ee/jakarta/tck/persistence/ee/entityManager/EEClient.java
Large diffs are not rendered by default.
Oops, something went wrong.
275 changes: 275 additions & 0 deletions
275
...form-tests/src/main/java/ee/jakarta/tck/persistence/ee/entityManagerFactory/EEClient.java
Large diffs are not rendered by default.
Oops, something went wrong.
53 changes: 53 additions & 0 deletions
53
.../src/main/java/ee/jakarta/tck/persistence/ee/packaging/appclient/annotation/EEClient.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
|
||
package ee.jakarta.tck.persistence.ee.packaging.appclient.annotation; | ||
import org.jboss.arquillian.config.descriptor.api.DefaultProtocolDef; | ||
import org.jboss.arquillian.config.impl.extension.ConfigurationRegistrar; | ||
import org.jboss.arquillian.config.descriptor.api.ArquillianDescriptor; | ||
import org.jboss.arquillian.container.test.impl.MapObject; | ||
import org.jboss.arquillian.container.test.api.Deployment; | ||
import org.jboss.shrinkwrap.api.Archive; | ||
import org.jboss.shrinkwrap.api.ShrinkWrap; | ||
import org.jboss.shrinkwrap.api.spec.JavaArchive; | ||
import org.jboss.shrinkwrap.api.spec.WebArchive; | ||
import org.jboss.shrinkwrap.api.spec.EnterpriseArchive; | ||
import org.junit.jupiter.api.Assertions; | ||
import org.junit.jupiter.api.Test; | ||
|
||
import java.io.File; | ||
import java.io.IOException; | ||
import java.util.Map; | ||
|
||
public class EEClient extends Client{ | ||
|
||
|
||
@Deployment(testable = false) | ||
public static Archive<?> getEarTestArchive() | ||
{ | ||
final EnterpriseArchive ear = ShrinkWrap.create(EnterpriseArchive.class, "jpa_ee_packaging_appclient_annotation.ear"); | ||
|
||
{ | ||
JavaArchive jpa_ee_packaging_appclient_annotation_client_jar = ShrinkWrap.create(JavaArchive.class, "jpa_ee_packaging_appclient_annotation_client_jar"); | ||
jpa_ee_packaging_appclient_annotation_client_jar.addClass(ee.jakarta.tck.persistence.ee.packaging.appclient.annotation.Coffee.class); | ||
jpa_ee_packaging_appclient_annotation_client_jar.addClass(ee.jakarta.tck.persistence.ee.packaging.appclient.annotation.Client.class); | ||
ear.addAsModule(jpa_ee_packaging_appclient_annotation_client_jar); | ||
|
||
} | ||
return ear; | ||
} | ||
|
||
@Test | ||
public void cleanup() throws Exception { | ||
} | ||
|
||
@Test | ||
public void removetestdata() throws Exception { | ||
} | ||
|
||
@Test | ||
public void setup() throws Exception { | ||
} | ||
|
||
@Test | ||
public void test1() throws Exception { | ||
} | ||
} |
53 changes: 53 additions & 0 deletions
53
.../src/main/java/ee/jakarta/tck/persistence/ee/packaging/appclient/descriptor/EEClient.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
|
||
package ee.jakarta.tck.persistence.ee.packaging.appclient.descriptor; | ||
import org.jboss.arquillian.config.descriptor.api.DefaultProtocolDef; | ||
import org.jboss.arquillian.config.impl.extension.ConfigurationRegistrar; | ||
import org.jboss.arquillian.config.descriptor.api.ArquillianDescriptor; | ||
import org.jboss.arquillian.container.test.impl.MapObject; | ||
import org.jboss.arquillian.container.test.api.Deployment; | ||
import org.jboss.shrinkwrap.api.Archive; | ||
import org.jboss.shrinkwrap.api.ShrinkWrap; | ||
import org.jboss.shrinkwrap.api.spec.JavaArchive; | ||
import org.jboss.shrinkwrap.api.spec.WebArchive; | ||
import org.jboss.shrinkwrap.api.spec.EnterpriseArchive; | ||
import org.junit.jupiter.api.Assertions; | ||
import org.junit.jupiter.api.Test; | ||
|
||
import java.io.File; | ||
import java.io.IOException; | ||
import java.util.Map; | ||
|
||
public class EEClient extends Client{ | ||
|
||
|
||
@Deployment(testable = false) | ||
public static Archive<?> getEarTestArchive() | ||
{ | ||
final EnterpriseArchive ear = ShrinkWrap.create(EnterpriseArchive.class, "jpa_ee_packaging_appclient_descriptor.ear"); | ||
|
||
{ | ||
JavaArchive jpa_ee_packaging_appclient_descriptor_client_jar = ShrinkWrap.create(JavaArchive.class, "jpa_ee_packaging_appclient_descriptor_client_jar"); | ||
jpa_ee_packaging_appclient_descriptor_client_jar.addClass(ee.jakarta.tck.persistence.ee.packaging.appclient.descriptor.Coffee.class); | ||
jpa_ee_packaging_appclient_descriptor_client_jar.addClass(ee.jakarta.tck.persistence.ee.packaging.appclient.descriptor.Client.class); | ||
ear.addAsModule(jpa_ee_packaging_appclient_descriptor_client_jar); | ||
|
||
} | ||
return ear; | ||
} | ||
|
||
@Test | ||
public void cleanup() throws Exception { | ||
} | ||
|
||
@Test | ||
public void removetestdata() throws Exception { | ||
} | ||
|
||
@Test | ||
public void setup() throws Exception { | ||
} | ||
|
||
@Test | ||
public void test1() throws Exception { | ||
} | ||
} |
83 changes: 83 additions & 0 deletions
83
...-tests/src/main/java/ee/jakarta/tck/persistence/ee/packaging/ejb/descriptor/EEClient.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,83 @@ | ||
|
||
package ee.jakarta.tck.persistence.ee.packaging.ejb.descriptor; | ||
import org.jboss.arquillian.config.descriptor.api.DefaultProtocolDef; | ||
import org.jboss.arquillian.config.impl.extension.ConfigurationRegistrar; | ||
import org.jboss.arquillian.config.descriptor.api.ArquillianDescriptor; | ||
import org.jboss.arquillian.container.test.impl.MapObject; | ||
import org.jboss.arquillian.container.test.api.Deployment; | ||
import org.jboss.shrinkwrap.api.Archive; | ||
import org.jboss.shrinkwrap.api.ShrinkWrap; | ||
import org.jboss.shrinkwrap.api.spec.JavaArchive; | ||
import org.jboss.shrinkwrap.api.spec.WebArchive; | ||
import org.jboss.shrinkwrap.api.spec.EnterpriseArchive; | ||
import org.junit.jupiter.api.Assertions; | ||
import org.junit.jupiter.api.Test; | ||
|
||
import java.io.File; | ||
import java.io.IOException; | ||
import java.util.Map; | ||
|
||
public class EEClient extends Client{ | ||
|
||
|
||
@Deployment(testable = false) | ||
public static Archive<?> getEarTestArchive() | ||
{ | ||
final EnterpriseArchive ear = ShrinkWrap.create(EnterpriseArchive.class, "jpa_ee_packaging_ejb_descriptor.ear"); | ||
|
||
{ | ||
JavaArchive jpa_ee_packaging_ejb_descriptor_client_jar = ShrinkWrap.create(JavaArchive.class, "jpa_ee_packaging_ejb_descriptor_client_jar"); | ||
jpa_ee_packaging_ejb_descriptor_client_jar.addClass(ee.jakarta.tck.persistence.ee.packaging.ejb.descriptor.C.class); | ||
jpa_ee_packaging_ejb_descriptor_client_jar.addClass(ee.jakarta.tck.persistence.ee.packaging.ejb.descriptor.Client.class); | ||
jpa_ee_packaging_ejb_descriptor_client_jar.addClass(ee.jakarta.tck.persistence.ee.packaging.ejb.descriptor.Stateless3IF.class); | ||
jpa_ee_packaging_ejb_descriptor_client_jar.addClass(ee.jakarta.tck.persistence.ee.packaging.ejb.descriptor.Stateful3IF.class); | ||
ear.addAsModule(jpa_ee_packaging_ejb_descriptor_client_jar); | ||
|
||
} | ||
{ | ||
JavaArchive jpa_ee_packaging_ejb_descriptor_ejb_jar = ShrinkWrap.create(JavaArchive.class, "jpa_ee_packaging_ejb_descriptor_ejb_jar"); | ||
jpa_ee_packaging_ejb_descriptor_ejb_jar.addClass(ee.jakarta.tck.persistence.ee.packaging.ejb.descriptor.C.class); | ||
jpa_ee_packaging_ejb_descriptor_ejb_jar.addClass(ee.jakarta.tck.persistence.ee.packaging.ejb.descriptor.A.class); | ||
jpa_ee_packaging_ejb_descriptor_ejb_jar.addClass(ee.jakarta.tck.persistence.ee.packaging.ejb.descriptor.Stateless3IF.class); | ||
jpa_ee_packaging_ejb_descriptor_ejb_jar.addClass(ee.jakarta.tck.persistence.ee.packaging.ejb.descriptor.Stateful3Bean.class); | ||
jpa_ee_packaging_ejb_descriptor_ejb_jar.addClass(ee.jakarta.tck.persistence.ee.packaging.ejb.descriptor.B.class); | ||
jpa_ee_packaging_ejb_descriptor_ejb_jar.addClass(ee.jakarta.tck.persistence.ee.packaging.ejb.descriptor.Stateful3IF.class); | ||
jpa_ee_packaging_ejb_descriptor_ejb_jar.addClass(ee.jakarta.tck.persistence.ee.packaging.ejb.descriptor.Stateless3Bean.class); | ||
ear.addAsModule(jpa_ee_packaging_ejb_descriptor_ejb_jar); | ||
|
||
} | ||
return ear; | ||
} | ||
|
||
@Test | ||
public void test4() throws Exception { | ||
} | ||
|
||
@Test | ||
public void test5() throws Exception { | ||
} | ||
|
||
@Test | ||
public void test2() throws Exception { | ||
} | ||
|
||
@Test | ||
public void test3() throws Exception { | ||
} | ||
|
||
@Test | ||
public void cleanup() throws Exception { | ||
} | ||
|
||
@Test | ||
public void test6() throws Exception { | ||
} | ||
|
||
@Test | ||
public void setup() throws Exception { | ||
} | ||
|
||
@Test | ||
public void test1() throws Exception { | ||
} | ||
} |
62 changes: 62 additions & 0 deletions
62
...orm-tests/src/main/java/ee/jakarta/tck/persistence/ee/packaging/ejb/exclude/EEClient.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
|
||
package ee.jakarta.tck.persistence.ee.packaging.ejb.exclude; | ||
import org.jboss.arquillian.config.descriptor.api.DefaultProtocolDef; | ||
import org.jboss.arquillian.config.impl.extension.ConfigurationRegistrar; | ||
import org.jboss.arquillian.config.descriptor.api.ArquillianDescriptor; | ||
import org.jboss.arquillian.container.test.impl.MapObject; | ||
import org.jboss.arquillian.container.test.api.Deployment; | ||
import org.jboss.shrinkwrap.api.Archive; | ||
import org.jboss.shrinkwrap.api.ShrinkWrap; | ||
import org.jboss.shrinkwrap.api.spec.JavaArchive; | ||
import org.jboss.shrinkwrap.api.spec.WebArchive; | ||
import org.jboss.shrinkwrap.api.spec.EnterpriseArchive; | ||
import org.junit.jupiter.api.Assertions; | ||
import org.junit.jupiter.api.Test; | ||
|
||
import java.io.File; | ||
import java.io.IOException; | ||
import java.util.Map; | ||
|
||
public class EEClient extends Client{ | ||
|
||
|
||
@Deployment(testable = false) | ||
public static Archive<?> getEarTestArchive() | ||
{ | ||
final EnterpriseArchive ear = ShrinkWrap.create(EnterpriseArchive.class, "jpa_ee_packaging_ejb_exclude.ear"); | ||
|
||
{ | ||
JavaArchive jpa_ee_packaging_ejb_exclude_client_jar = ShrinkWrap.create(JavaArchive.class, "jpa_ee_packaging_ejb_exclude_client_jar"); | ||
jpa_ee_packaging_ejb_exclude_client_jar.addClass(ee.jakarta.tck.persistence.ee.packaging.ejb.exclude.Client.class); | ||
jpa_ee_packaging_ejb_exclude_client_jar.addClass(ee.jakarta.tck.persistence.ee.packaging.ejb.exclude.Stateful3IF.class); | ||
ear.addAsModule(jpa_ee_packaging_ejb_exclude_client_jar); | ||
|
||
} | ||
{ | ||
JavaArchive jpa_ee_packaging_ejb_exclude_ejb_jar = ShrinkWrap.create(JavaArchive.class, "jpa_ee_packaging_ejb_exclude_ejb_jar"); | ||
jpa_ee_packaging_ejb_exclude_ejb_jar.addClass(ee.jakarta.tck.persistence.ee.packaging.ejb.exclude.Stateful3IF.class); | ||
jpa_ee_packaging_ejb_exclude_ejb_jar.addClass(ee.jakarta.tck.persistence.ee.packaging.ejb.exclude.A.class); | ||
jpa_ee_packaging_ejb_exclude_ejb_jar.addClass(ee.jakarta.tck.persistence.ee.packaging.ejb.exclude.Stateful3Bean.class); | ||
jpa_ee_packaging_ejb_exclude_ejb_jar.addClass(ee.jakarta.tck.persistence.ee.packaging.ejb.exclude.B.class); | ||
ear.addAsModule(jpa_ee_packaging_ejb_exclude_ejb_jar); | ||
|
||
} | ||
return ear; | ||
} | ||
|
||
@Test | ||
public void test2() throws Exception { | ||
} | ||
|
||
@Test | ||
public void cleanup() throws Exception { | ||
} | ||
|
||
@Test | ||
public void setup() throws Exception { | ||
} | ||
|
||
@Test | ||
public void test1() throws Exception { | ||
} | ||
} |
114 changes: 114 additions & 0 deletions
114
...ts/src/main/java/ee/jakarta/tck/persistence/ee/packaging/ejb/resource_local/EEClient.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,114 @@ | ||
|
||
package ee.jakarta.tck.persistence.ee.packaging.ejb.resource_local; | ||
import org.jboss.arquillian.config.descriptor.api.DefaultProtocolDef; | ||
import org.jboss.arquillian.config.impl.extension.ConfigurationRegistrar; | ||
import org.jboss.arquillian.config.descriptor.api.ArquillianDescriptor; | ||
import org.jboss.arquillian.container.test.impl.MapObject; | ||
import org.jboss.arquillian.container.test.api.Deployment; | ||
import org.jboss.shrinkwrap.api.Archive; | ||
import org.jboss.shrinkwrap.api.ShrinkWrap; | ||
import org.jboss.shrinkwrap.api.spec.JavaArchive; | ||
import org.jboss.shrinkwrap.api.spec.WebArchive; | ||
import org.jboss.shrinkwrap.api.spec.EnterpriseArchive; | ||
import org.junit.jupiter.api.Assertions; | ||
import org.junit.jupiter.api.Test; | ||
|
||
import java.io.File; | ||
import java.io.IOException; | ||
import java.util.Map; | ||
|
||
public class EEClient extends Client{ | ||
|
||
|
||
@Deployment(testable = false) | ||
public static Archive<?> getEarTestArchive() | ||
{ | ||
final EnterpriseArchive ear = ShrinkWrap.create(EnterpriseArchive.class, "jpa_ee_packaging_ejb_resource_local.ear"); | ||
|
||
{ | ||
JavaArchive jpa_ee_packaging_ejb_resource_local_client_jar = ShrinkWrap.create(JavaArchive.class, "jpa_ee_packaging_ejb_resource_local_client_jar"); | ||
jpa_ee_packaging_ejb_resource_local_client_jar.addClass(ee.jakarta.tck.persistence.ee.packaging.ejb.resource_local.Stateless3IF.class); | ||
jpa_ee_packaging_ejb_resource_local_client_jar.addClass(ee.jakarta.tck.persistence.ee.packaging.ejb.resource_local.Client.class); | ||
ear.addAsModule(jpa_ee_packaging_ejb_resource_local_client_jar); | ||
|
||
} | ||
{ | ||
JavaArchive jpa_ee_packaging_ejb_resource_local_ejb_jar = ShrinkWrap.create(JavaArchive.class, "jpa_ee_packaging_ejb_resource_local_ejb_jar"); | ||
jpa_ee_packaging_ejb_resource_local_ejb_jar.addClass(ee.jakarta.tck.persistence.ee.packaging.ejb.resource_local.Stateless3Bean.class); | ||
jpa_ee_packaging_ejb_resource_local_ejb_jar.addClass(ee.jakarta.tck.persistence.ee.packaging.ejb.resource_local.Stateless3IF.class); | ||
jpa_ee_packaging_ejb_resource_local_ejb_jar.addClass(ee.jakarta.tck.persistence.ee.common.A.class); | ||
jpa_ee_packaging_ejb_resource_local_ejb_jar.addClass(ee.jakarta.tck.persistence.ee.common.B.class); | ||
ear.addAsModule(jpa_ee_packaging_ejb_resource_local_ejb_jar); | ||
|
||
} | ||
return ear; | ||
} | ||
|
||
@Test | ||
public void test15() throws Exception { | ||
} | ||
|
||
@Test | ||
public void test14() throws Exception { | ||
} | ||
|
||
@Test | ||
public void test13() throws Exception { | ||
} | ||
|
||
@Test | ||
public void test12() throws Exception { | ||
} | ||
|
||
@Test | ||
public void test11() throws Exception { | ||
} | ||
|
||
@Test | ||
public void test10() throws Exception { | ||
} | ||
|
||
@Test | ||
public void test1() throws Exception { | ||
} | ||
|
||
@Test | ||
public void test4() throws Exception { | ||
} | ||
|
||
@Test | ||
public void test5() throws Exception { | ||
} | ||
|
||
@Test | ||
public void test2() throws Exception { | ||
} | ||
|
||
@Test | ||
public void test3() throws Exception { | ||
} | ||
|
||
@Test | ||
public void test8() throws Exception { | ||
} | ||
|
||
@Test | ||
public void test9() throws Exception { | ||
} | ||
|
||
@Test | ||
public void cleanup() throws Exception { | ||
} | ||
|
||
@Test | ||
public void test6() throws Exception { | ||
} | ||
|
||
@Test | ||
public void test7() throws Exception { | ||
} | ||
|
||
@Test | ||
public void setup() throws Exception { | ||
} | ||
} |
Oops, something went wrong.