Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/mobile
Path: blob/master/test/hotspot/jtreg/compiler/compilercontrol/parser/DirectiveStressTest.java
41154 views
1
/*
2
* Copyright (c) 2015, 2020, Oracle and/or its affiliates. All rights reserved.
3
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4
*
5
* This code is free software; you can redistribute it and/or modify it
6
* under the terms of the GNU General Public License version 2 only, as
7
* published by the Free Software Foundation.
8
*
9
* This code is distributed in the hope that it will be useful, but WITHOUT
10
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
12
* version 2 for more details (a copy is included in the LICENSE file that
13
* accompanied this code).
14
*
15
* You should have received a copy of the GNU General Public License version
16
* 2 along with this work; if not, write to the Free Software Foundation,
17
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18
*
19
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20
* or visit www.oracle.com if you need additional information or have any
21
* questions.
22
*/
23
24
/*
25
* @test
26
* @key randomness
27
* @bug 8137167
28
* @summary Stress directive json parser
29
* @modules java.base/jdk.internal.misc
30
* @library /test/lib /
31
*
32
* @run driver compiler.compilercontrol.parser.DirectiveStressTest
33
*/
34
35
package compiler.compilercontrol.parser;
36
37
import compiler.compilercontrol.share.AbstractTestBase;
38
import compiler.compilercontrol.share.JSONFile;
39
import compiler.compilercontrol.share.method.MethodDescriptor;
40
import compiler.compilercontrol.share.pool.PoolHelper;
41
import compiler.compilercontrol.share.scenario.DirectiveWriter;
42
import jdk.test.lib.process.OutputAnalyzer;
43
44
import java.util.List;
45
import java.util.stream.Collectors;
46
47
public class DirectiveStressTest {
48
private static final int AMOUNT = Integer.getInteger(
49
"compiler.compilercontrol.parser.DirectiveStressTest.amount",
50
999);
51
private static final List<MethodDescriptor> DESCRIPTORS
52
= new PoolHelper().getAllMethods().stream()
53
.map(pair -> AbstractTestBase.getValidMethodDescriptor(
54
pair.first))
55
.collect(Collectors.toList());
56
private static final String EXPECTED_MESSAGE = " compiler directives added";
57
58
public static void main(String[] args) {
59
hugeFileTest();
60
hugeObjectTest();
61
}
62
63
/*
64
* Creates file with AMOUNT of options in match block
65
*/
66
private static void hugeObjectTest() {
67
String fileName = "hugeObject.json";
68
try (DirectiveWriter file = new DirectiveWriter(fileName)) {
69
file.write(JSONFile.Element.ARRAY);
70
HugeDirectiveUtil.createMatchObject(DESCRIPTORS, file, AMOUNT);
71
file.end(); // end array block
72
}
73
OutputAnalyzer output = HugeDirectiveUtil.execute(fileName);
74
output.shouldHaveExitValue(0);
75
output.shouldContain(1 + EXPECTED_MESSAGE);
76
output.shouldNotContain(HugeDirectiveUtil.EXPECTED_ERROR_STRING);
77
}
78
79
/*
80
* Creates huge valid file with AMOUNT of match directives
81
*/
82
private static void hugeFileTest() {
83
String fileName = "hugeFile.json";
84
HugeDirectiveUtil.createHugeFile(DESCRIPTORS, fileName, AMOUNT);
85
OutputAnalyzer output = HugeDirectiveUtil.execute(fileName);
86
output.shouldHaveExitValue(0);
87
output.shouldContain(AMOUNT + EXPECTED_MESSAGE);
88
output.shouldNotContain(HugeDirectiveUtil.EXPECTED_ERROR_STRING);
89
}
90
}
91
92