1
1
/*
2
- * Copyright (c) 2024, Oracle and/or its affiliates. All rights reserved.
2
+ * Copyright (c) 2024, 2025, Oracle and/or its affiliates. All rights reserved.
3
3
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4
4
*
5
5
* This code is free software; you can redistribute it and/or modify it
20
20
* or visit www.oracle.com if you need additional information or have any
21
21
* questions.
22
22
*/
23
+
24
+ import jdk .test .lib .artifacts .Artifact ;
25
+ import jdk .test .lib .artifacts .ArtifactResolver ;
26
+ import jdk .test .lib .artifacts .ArtifactResolverException ;
23
27
import jdk .test .lib .json .JSONValue ;
24
28
import jtreg .SkippedException ;
25
29
26
- import java .nio . file . Files ;
30
+ import java .io . InputStream ;
27
31
import java .nio .file .Path ;
28
32
import java .security .Provider ;
29
33
import java .security .Security ;
34
+ import java .util .zip .ZipEntry ;
35
+ import java .util .zip .ZipFile ;
30
36
31
37
/*
32
38
* @test
35
41
* @modules java.base/sun.security.provider
36
42
*/
37
43
38
- /// This test runs on `internalProjection.json`-style files generated
39
- /// by NIST's ACVP Server. See [https://github.com/usnistgov/ACVP-Server].
40
- ///
41
- /// The files are either put into the `data` directory or another
42
- /// directory specified by the `test.acvp.data` test property.
43
- /// The test walks through the directory recursively and looks for
44
- /// file names equal to or ending with `internalProjection.json` and
45
- /// runs tests on them.
44
+ /// This test runs on `internalProjection.json`-style files generated by NIST's
45
+ /// ACVP Server ([GitHub repository](https://github.com/usnistgov/ACVP-Server)).
46
+ /// These files are included in ZIP archives available under the
47
+ /// [tags section](https://github.com/usnistgov/ACVP-Server/tags)
48
+ /// of the repository.
46
49
///
47
- /// Set the `test.acvp.alg` test property to only test the specified algorithm.
50
+ /// The zip archive is either hosted on artifactory server or
51
+ /// specified with local path to the test.
52
+ /// The test looks for test data files in the archive listed with `TEST_FILES`.
48
53
///
49
- /// Sample files can be downloaded from
50
- /// [https://github.com/usnistgov/ACVP-Server/tree/master/gen-val/json-files].
54
+ /// These tests are currently compatible with ACVP version 1.1.0.38.
51
55
///
52
56
/// By default, the test uses system-preferred implementations.
53
57
/// If you want to test a specific provider, set the
58
62
/// [https://github.com/usnistgov/ACVP?tab=readme-ov-file#supported-algorithms].
59
63
///
60
64
/// Example:
65
+ ///
66
+ /// Run locally with ArtifactResolver
61
67
/// ```
62
- /// jtreg -Dtest.acvp.provider=SunJCE \
63
- /// -Dtest.acvp.alg=ML-KEM \
64
- /// -Dtest.acvp.data=/path/to/json-files/ \
65
- /// -jdk:/path/to/jdk Launcher.java
68
+ /// jtreg -Djdk.test.lib.artifacts.ACVP-Server=<path-to-archive-file>
66
69
/// ```
67
- public class Launcher {
70
+ /// OR host the zip archive on artifactory server.
71
+ ///
68
72
69
- private static final String ONLY_ALG
70
- = System .getProperty ("test.acvp.alg" );
73
+ public class Launcher {
71
74
72
75
private static final Provider PROVIDER ;
73
76
77
+ private static final String ACVP_BUNDLE_LOC = "jpg.tests.jdk" ;
78
+ private static final String ACVP_BUNDLE_NAME = "ACVP-Server" ;
79
+ private static final String ACVP_BUNDLE_VERSION = "1.1.0.38" ;
80
+ // Zip archive entry name, do not update to use File.separator
81
+ private static final String [] TEST_FILES = {
82
+ "gen-val/json-files/ML-DSA-keyGen-FIPS204/internalProjection.json" ,
83
+ "gen-val/json-files/ML-DSA-sigGen-FIPS204/internalProjection.json" ,
84
+ "gen-val/json-files/ML-DSA-sigVer-FIPS204/internalProjection.json" ,
85
+ "gen-val/json-files/ML-KEM-encapDecap-FIPS203/internalProjection.json" ,
86
+ "gen-val/json-files/ML-KEM-keyGen-FIPS203/internalProjection.json"
87
+ };
88
+
74
89
private static int count = 0 ;
75
90
private static int invalidTest = 0 ;
76
91
private static int unsupportedTest = 0 ;
@@ -91,24 +106,26 @@ public class Launcher {
91
106
92
107
public static void main (String [] args ) throws Exception {
93
108
94
- var testDataProp = System .getProperty ("test.acvp.data" );
95
- Path dataPath = testDataProp != null
96
- ? Path .of (testDataProp )
97
- : Path .of (System .getProperty ("test.src" ), "data" );
98
- System .out .println ("Data path: " + dataPath );
109
+ Path archivePath = fetchACVPServerTests (ACVP_SERVER_TESTS .class );
110
+ System .out .println ("Data path: " + archivePath );
99
111
100
112
if (PROVIDER != null ) {
101
113
System .out .println ("Provider: " + PROVIDER .getName ());
102
114
}
103
- if (ONLY_ALG != null ) {
104
- System .out .println ("Algorithm: " + ONLY_ALG );
105
- }
106
115
107
- try (var stream = Files .walk (dataPath )) {
108
- stream .filter (Files ::isRegularFile )
109
- .filter (p -> p .getFileName ().toString ()
110
- .endsWith ("internalProjection.json" ))
111
- .forEach (Launcher ::run );
116
+ // Read test data files from zip archive
117
+ try (ZipFile zf = new ZipFile (archivePath .toFile ())) {
118
+ for (String testFile : TEST_FILES ) {
119
+ // Zip archive entry name, do not update to use File.separator
120
+ String fullEntryName = ACVP_BUNDLE_NAME + "-" + ACVP_BUNDLE_VERSION + "/" + testFile ;
121
+ System .out .println ("Find and test with: " + fullEntryName );
122
+ ZipEntry ze = zf .getEntry (fullEntryName );
123
+ if (ze != null ) {
124
+ run (zf .getInputStream (ze ));
125
+ } else {
126
+ throw new RuntimeException ("Entry not found: " + fullEntryName );
127
+ }
128
+ }
112
129
}
113
130
114
131
if (count > 0 ) {
@@ -117,25 +134,25 @@ public static void main(String[] args) throws Exception {
117
134
System .out .println ("Invalid tests: " + invalidTest );
118
135
System .out .println ("Unsupported tests: " + unsupportedTest );
119
136
} else {
120
- throw new SkippedException ("No supported test found" );
137
+ throw new RuntimeException ("No supported test found" );
138
+ }
139
+
140
+ if (invalidTest != 0 || unsupportedTest != 0 ){
141
+ throw new RuntimeException ("Invalid or Unsupported tests found" );
121
142
}
122
143
}
123
144
124
- static void run (Path test ) {
145
+ static void run (InputStream test ) {
125
146
try {
126
147
JSONValue kat ;
127
- try {
128
- kat = JSONValue .parse (Files . readString (test ));
148
+ try ( test ) {
149
+ kat = JSONValue .parse (new String (test . readAllBytes () ));
129
150
} catch (Exception e ) {
130
151
System .out .println ("Warning: cannot parse " + test + ". Skipped" );
131
152
invalidTest ++;
132
153
return ;
133
154
}
134
155
var alg = kat .get ("algorithm" ).asString ();
135
- if (ONLY_ALG != null && !alg .equals (ONLY_ALG )) {
136
- return ;
137
- }
138
- System .out .println (">>> Testing " + test + "..." );
139
156
switch (alg ) {
140
157
case "ML-DSA" -> {
141
158
ML_DSA_Test .run (kat , PROVIDER );
@@ -160,4 +177,28 @@ static void run(Path test) {
160
177
throw new RuntimeException (e );
161
178
}
162
179
}
180
+
181
+ private static Path fetchACVPServerTests (Class <?> clazz ) {
182
+ try {
183
+ return ArtifactResolver .resolve (clazz ).entrySet ().stream ()
184
+ .findAny ().get ().getValue ();
185
+ } catch (ArtifactResolverException e ) {
186
+ Throwable cause = e .getCause ();
187
+ if (cause == null ) {
188
+ throw new SkippedException ("Cannot resolve artifact, "
189
+ + "please check if JIB jar is present in classpath." , e );
190
+ }
191
+
192
+ throw new SkippedException ("Fetch artifact failed: " + clazz , e );
193
+ }
194
+ }
195
+
196
+ @ Artifact (
197
+ organization = ACVP_BUNDLE_LOC ,
198
+ name = ACVP_BUNDLE_NAME ,
199
+ revision = ACVP_BUNDLE_VERSION ,
200
+ extension = "zip" ,
201
+ unpack = false )
202
+ private static class ACVP_SERVER_TESTS {
203
+ }
163
204
}
0 commit comments