forked from smallrye/smallrye-jwt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tck-suite.xml
82 lines (78 loc) · 4.29 KB
/
tck-suite.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
<!DOCTYPE suite SYSTEM "http://testng.org/testng-1.0.dtd" >
<!--
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.
-->
<suite name="microprofile-jwt-auth-FullTCK" verbose="1" preserve-order="true" configfailurepolicy="continue" >
<!-- The required base JAX-RS and CDI based tests that all MP-JWT implementations
must pass.
-->
<!-- The required base JAX-RS and CDI based tests that all MP-JWT implementations
must pass.
-->
<test name="base-tests" verbose="10">
<groups>
<define name="base-groups">
<include name="arquillian" description="Arquillian internal"/>
<include name="utils" description="Utility tests"/>
<include name="jwt" description="Base JsonWebToken tests"/>
<include name="jaxrs" description="JAX-RS invocation tests"/>
<include name="cdi" description="Base CDI injection of ClaimValues"/>
<include name="cdi-json" description="CDI injection of JSON-P values"/>
<include name="cdi-provider" description="CDI injection of javax.inject.Provider values"/>
<include name="config" description="Validate configuration using MP-config"/>
<include name="servlet-optional" />
</define>
<define name="excludes">
<include name="debug" description="Internal debugging tests" />
</define>
<run>
<include name="base-groups" />
<exclude name="excludes" />
</run>
</groups>
<classes>
<!-- run a single method from a class
<class name="org.eclipse.microprofile.jwt.tck.container.jaxrs.InvalidTokenTest">
<methods>
<include name="callEchoBadIssuer"></include>
</methods>
</class>
-->
<!--
<class name="org.eclipse.microprofile.jwt.tck.container.jaxrs.UnsecuredPingTest" />
<class name="org.eclipse.microprofile.jwt.tck.container.jaxrs.RequiredClaimsTest" />
<class name="org.eclipse.microprofile.jwt.tck.container.jaxrs.ClaimValueInjectionTest" />
<class name="org.eclipse.microprofile.jwt.tck.container.jaxrs.JsonValueInjectionTest" />
<class name="org.eclipse.microprofile.jwt.tck.container.jaxrs.ProviderInjectionTest" />
<class name="org.eclipse.microprofile.jwt.tck.container.jaxrs.RolesAllowedTest" />
<class name="org.eclipse.microprofile.jwt.tck.container.jaxrs.InvalidTokenTest" />
<class name="org.eclipse.microprofile.jwt.tck.container.jaxrs.PrimitiveInjectionTest" />
<class name="org.eclipse.microprofile.jwt.tck.container.jaxrs.PrincipalInjectionTest" />
<class name="org.eclipse.microprofile.jwt.tck.config.PublicKeyAsPEMTest" />
<class name="org.eclipse.microprofile.jwt.tck.config.PublicKeyAsJWKLocationURLTest" />
<class name="org.eclipse.microprofile.jwt.tck.config.PublicKeyAsJWKTest" />
<class name="org.eclipse.microprofile.jwt.tck.config.PublicKeyAsJWKSTest" />
<class name="org.eclipse.microprofile.jwt.tck.config.PublicKeyAsPEMLocationTest" />
<class name="org.eclipse.microprofile.jwt.tck.config.PublicKeyAsPEMLocationURLTest" />
<class name="org.eclipse.microprofile.jwt.tck.config.PublicKeyAsJWKLocationTest" />
<class name="org.eclipse.microprofile.jwt.tck.config.PublicKeyAsJWKSLocationTest" />
<class name="org.eclipse.microprofile.jwt.tck.config.PublicKeyAsFileLocationURLTest" />
<class name="org.eclipse.microprofile.jwt.tck.config.PublicKeyAsBase64JWKTest" />
<class name="org.eclipse.microprofile.jwt.tck.config.IssNoValidationNoIssTest" />
<class name="org.eclipse.microprofile.jwt.tck.config.IssNoValidationBadIssTest" />
<class name="org.eclipse.microprofile.jwt.tck.config.IssValidationTest" />
<class name="org.eclipse.microprofile.jwt.tck.config.IssValidationFailTest" />
-->
<class name="org.eclipse.microprofile.jwt.tck.util.TokenUtilsTest" />
</classes>
</test>
</suite>