Skip to content

Commit

Permalink
glassfish standalone jsonb, jsonp runners.
Browse files Browse the repository at this point in the history
support GF 7 in jaxrs runner.
Signed-off-by: gurunrao <gurunandan.rao@oracle.com>
  • Loading branch information
gurunrao committed Apr 29, 2022
1 parent e2d17ec commit 9704991
Show file tree
Hide file tree
Showing 16 changed files with 1,022 additions and 48 deletions.
File renamed without changes.
File renamed without changes.
433 changes: 433 additions & 0 deletions glassfish-runner/concurrency-tck/pom.xml

Large diffs are not rendered by default.

38 changes: 38 additions & 0 deletions glassfish-runner/concurrency-tck/src/test/resources/arquillian.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<!--
Licensed under the Apache License, Version 2.0 (the "License"); you
may not use this file except in compliance with the License. You may obtain
a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless
required by applicable law or agreed to in writing, software distributed
under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES
OR CONDITIONS OF ANY KIND, either express or implied. See the License for
the specific language governing permissions and limitations under the License.
-->
<arquillian xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://jboss.org/schema/arquillian"
xsi:schemaLocation="http://jboss.org/schema/arquillian http://jboss.org/schema/arquillian/arquillian_1_0.xsd">

<engine>
<property name="deploymentExportPath">target/</property>
</engine>

<container qualifier="glassfish" default="true">
<configuration>
<!-- Each variable used is set in surefire config in running pom.xml -->
<property name="domain">${domain}</property>
<property name="adminHost">${adminHost}</property>
<property name="adminPort">${adminPort}</property>
<property name="adminUser">${adminUser}</property>
<property name="adminPassword">${adminPassword}</property>
<property name="glassFishHome">${GLASSFISH_HOME}</property>
<property name="allowConnectingToRunningServer">true</property>
<property name="serverName">${tck_server}</property>
<property name="hostName">${tck_hostname}</property>
<property name="username">${tck_username}</property>
<property name="password">${tck_password}</property>
<property name="httpPort">${tck_port}</property>
<property name="httpsPort">${tck_port_secure}</property>
<!-- Add additional properties for your container impl -->
</configuration>
</container>
</arquillian>
27 changes: 27 additions & 0 deletions glassfish-runner/concurrency-tck/suite.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
<!--
/*
* Copyright (c) 2022 Contributors to the Eclipse Foundation
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0, which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* This Source Code may also be made available under the following Secondary
* Licenses when the conditions for such availability set forth in the
* Eclipse Public License v. 2.0 are satisfied: GNU General Public License,
* version 2 with the GNU Classpath Exception, which is available at
* https://www.gnu.org/software/classpath/license.html.
*
* SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0
*/
-->
<!DOCTYPE suite SYSTEM "http://testng.org/testng-1.0.dtd" >

<suite name="jakarta-concurrency" verbose="2" configfailurepolicy="continue">
<test name="jakarta-concurrency.tck">
<packages>
<package name="ee.jakarta.tck.concurrent.api.*"/>
<package name="ee.jakarta.tck.concurrent.spec.*"/>
</packages>
</test>
</suite>
File renamed without changes.
16 changes: 16 additions & 0 deletions glassfish-runner/jaxrs-tck/j2ee.pass
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
#
# Copyright (c) 2021 Oracle and/or its affiliates. All rights reserved.
#
# This program and the accompanying materials are made available under the
# terms of the Eclipse Public License v. 2.0, which is available at
# http://www.eclipse.org/legal/epl-2.0.
#
# This Source Code may also be made available under the following Secondary
# Licenses when the conditions for such availability set forth in the
# Eclipse Public License v. 2.0 are satisfied: GNU General Public License,
# version 2 with the GNU Classpath Exception, which is available at
# https://www.gnu.org/software/classpath/license.html.
#
# SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0
#
AS_ADMIN_USERPASSWORD=j2ee
16 changes: 16 additions & 0 deletions glassfish-runner/jaxrs-tck/javajoe.pass
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
#
# Copyright (c) 2021 Oracle and/or its affiliates. All rights reserved.
#
# This program and the accompanying materials are made available under the
# terms of the Eclipse Public License v. 2.0, which is available at
# http://www.eclipse.org/legal/epl-2.0.
#
# This Source Code may also be made available under the following Secondary
# Licenses when the conditions for such availability set forth in the
# Eclipse Public License v. 2.0 are satisfied: GNU General Public License,
# version 2 with the GNU Classpath Exception, which is available at
# https://www.gnu.org/software/classpath/license.html.
#
# SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0
#
AS_ADMIN_USERPASSWORD=javajoe
Loading

0 comments on commit 9704991

Please sign in to comment.