-
Notifications
You must be signed in to change notification settings - Fork 111
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
JSONP appclient tests running with Glassfish (#1565)
* jsonp appclient tests runnable * add logging properties, fix compilation error * add alternate provider to CP, correct the junit tags * 36 jsonprovidertests passing
- Loading branch information
1 parent
e33315e
commit 9db8649
Showing
21 changed files
with
3,969 additions
and
257 deletions.
There are no files selected for viewing
Binary file added
BIN
+2.2 KB
glassfish-runner/jsonp-platform-tck/jakartaeetck/bin/certificates/clientcert.jks
Binary file not shown.
Binary file added
BIN
+1.58 KB
glassfish-runner/jsonp-platform-tck/jakartaeetck/bin/certificates/clientcert.p12
Binary file not shown.
Binary file added
BIN
+909 Bytes
glassfish-runner/jsonp-platform-tck/jakartaeetck/bin/certificates/cts_cert
Binary file not shown.
2,463 changes: 2,463 additions & 0 deletions
2,463
glassfish-runner/jsonp-platform-tck/jakartaeetck/bin/ts.jte
Large diffs are not rendered by default.
Oops, something went wrong.
805 changes: 805 additions & 0 deletions
805
glassfish-runner/jsonp-platform-tck/jakartaeetck/bin/tssql.stmt
Large diffs are not rendered by default.
Oops, something went wrong.
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
30 changes: 30 additions & 0 deletions
30
.../jsonp-platform-tck/src/main/java/org/glassfish/jsonp/tck/GlassfishLoadableExtension.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,30 @@ | ||
/* | ||
* Copyright (c) 2024 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 | ||
*/ | ||
|
||
package org.glassfish.jsonp.tck; | ||
|
||
import org.jboss.arquillian.container.test.spi.client.deployment.ApplicationArchiveProcessor; | ||
import org.jboss.arquillian.test.spi.enricher.resource.ResourceProvider; | ||
import org.jboss.arquillian.core.spi.LoadableExtension; | ||
|
||
public class GlassfishLoadableExtension implements LoadableExtension { | ||
@Override | ||
public void register(ExtensionBuilder extensionBuilder) { | ||
extensionBuilder.service(ResourceProvider.class, GlassfishTestArchiveProcessor.class); | ||
extensionBuilder.observer(GlassfishTestArchiveProcessor.class); | ||
|
||
} | ||
} |
Oops, something went wrong.