-
Notifications
You must be signed in to change notification settings - Fork 5.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This allows the test runs to complete more quickly on machines with large numbers of threads. Some of these tests were still executing for significant proportions of the overall test time after the other tests had finished. More, shorter tests allows increased parallelism for a greater proportion of the test run.
- Loading branch information
Showing
68 changed files
with
3,324 additions
and
260 deletions.
There are no files selected for viewing
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
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
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
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
55 changes: 55 additions & 0 deletions
55
test/jakarta/servlet/http/TestHttpServletDoHeadInvalidWrite0ValidWrite1025.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,55 @@ | ||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one or more | ||
* contributor license agreements. See the NOTICE file distributed with | ||
* this work for additional information regarding copyright ownership. | ||
* The ASF licenses this file to You 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. | ||
*/ | ||
package jakarta.servlet.http; | ||
|
||
import java.util.ArrayList; | ||
import java.util.Collection; | ||
import java.util.List; | ||
|
||
import org.junit.runner.RunWith; | ||
import org.junit.runners.Parameterized; | ||
|
||
/* | ||
* Split into multiple tests as a single test takes so long it impacts the time | ||
* of an entire test run. | ||
*/ | ||
@RunWith(Parameterized.class) | ||
public class TestHttpServletDoHeadInvalidWrite0ValidWrite1025 extends HttpServletDoHeadBaseTest { | ||
|
||
@Parameterized.Parameters(name = "{index}: {0} {1} {2} {3} {4} {5} {6} {7} {8}") | ||
public static Collection<Object[]> parameters() { | ||
Collection<Object[]> baseData = data(); | ||
|
||
List<Object[]> parameterSets = new ArrayList<>(); | ||
for (Object[] base : baseData) { | ||
for (Boolean l : booleans) { | ||
for (Integer buf : BUFFERS) { | ||
for (Boolean w : booleans) { | ||
for (ResetType rt : ResetType.values()) { | ||
for (Boolean f : booleans) { | ||
parameterSets.add(new Object[] { | ||
base[0], base[1], | ||
l, buf, w, Integer.valueOf(0), rt, Integer.valueOf(1025), f }); | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} | ||
return parameterSets; | ||
} | ||
} |
55 changes: 55 additions & 0 deletions
55
test/jakarta/servlet/http/TestHttpServletDoHeadInvalidWrite0ValidWrite511.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,55 @@ | ||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one or more | ||
* contributor license agreements. See the NOTICE file distributed with | ||
* this work for additional information regarding copyright ownership. | ||
* The ASF licenses this file to You 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. | ||
*/ | ||
package jakarta.servlet.http; | ||
|
||
import java.util.ArrayList; | ||
import java.util.Collection; | ||
import java.util.List; | ||
|
||
import org.junit.runner.RunWith; | ||
import org.junit.runners.Parameterized; | ||
|
||
/* | ||
* Split into multiple tests as a single test takes so long it impacts the time | ||
* of an entire test run. | ||
*/ | ||
@RunWith(Parameterized.class) | ||
public class TestHttpServletDoHeadInvalidWrite0ValidWrite511 extends HttpServletDoHeadBaseTest { | ||
|
||
@Parameterized.Parameters(name = "{index}: {0} {1} {2} {3} {4} {5} {6} {7} {8}") | ||
public static Collection<Object[]> parameters() { | ||
Collection<Object[]> baseData = data(); | ||
|
||
List<Object[]> parameterSets = new ArrayList<>(); | ||
for (Object[] base : baseData) { | ||
for (Boolean l : booleans) { | ||
for (Integer buf : BUFFERS) { | ||
for (Boolean w : booleans) { | ||
for (ResetType rt : ResetType.values()) { | ||
for (Boolean f : booleans) { | ||
parameterSets.add(new Object[] { | ||
base[0], base[1], | ||
l, buf, w, Integer.valueOf(0), rt, Integer.valueOf(511), f }); | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} | ||
return parameterSets; | ||
} | ||
} |
55 changes: 55 additions & 0 deletions
55
test/jakarta/servlet/http/TestHttpServletDoHeadInvalidWrite0ValidWrite512.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,55 @@ | ||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one or more | ||
* contributor license agreements. See the NOTICE file distributed with | ||
* this work for additional information regarding copyright ownership. | ||
* The ASF licenses this file to You 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. | ||
*/ | ||
package jakarta.servlet.http; | ||
|
||
import java.util.ArrayList; | ||
import java.util.Collection; | ||
import java.util.List; | ||
|
||
import org.junit.runner.RunWith; | ||
import org.junit.runners.Parameterized; | ||
|
||
/* | ||
* Split into multiple tests as a single test takes so long it impacts the time | ||
* of an entire test run. | ||
*/ | ||
@RunWith(Parameterized.class) | ||
public class TestHttpServletDoHeadInvalidWrite0ValidWrite512 extends HttpServletDoHeadBaseTest { | ||
|
||
@Parameterized.Parameters(name = "{index}: {0} {1} {2} {3} {4} {5} {6} {7} {8}") | ||
public static Collection<Object[]> parameters() { | ||
Collection<Object[]> baseData = data(); | ||
|
||
List<Object[]> parameterSets = new ArrayList<>(); | ||
for (Object[] base : baseData) { | ||
for (Boolean l : booleans) { | ||
for (Integer buf : BUFFERS) { | ||
for (Boolean w : booleans) { | ||
for (ResetType rt : ResetType.values()) { | ||
for (Boolean f : booleans) { | ||
parameterSets.add(new Object[] { | ||
base[0], base[1], | ||
l, buf, w, Integer.valueOf(0), rt, Integer.valueOf(512), f }); | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} | ||
return parameterSets; | ||
} | ||
} |
55 changes: 55 additions & 0 deletions
55
test/jakarta/servlet/http/TestHttpServletDoHeadInvalidWrite0ValidWrite513.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,55 @@ | ||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one or more | ||
* contributor license agreements. See the NOTICE file distributed with | ||
* this work for additional information regarding copyright ownership. | ||
* The ASF licenses this file to You 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. | ||
*/ | ||
package jakarta.servlet.http; | ||
|
||
import java.util.ArrayList; | ||
import java.util.Collection; | ||
import java.util.List; | ||
|
||
import org.junit.runner.RunWith; | ||
import org.junit.runners.Parameterized; | ||
|
||
/* | ||
* Split into multiple tests as a single test takes so long it impacts the time | ||
* of an entire test run. | ||
*/ | ||
@RunWith(Parameterized.class) | ||
public class TestHttpServletDoHeadInvalidWrite0ValidWrite513 extends HttpServletDoHeadBaseTest { | ||
|
||
@Parameterized.Parameters(name = "{index}: {0} {1} {2} {3} {4} {5} {6} {7} {8}") | ||
public static Collection<Object[]> parameters() { | ||
Collection<Object[]> baseData = data(); | ||
|
||
List<Object[]> parameterSets = new ArrayList<>(); | ||
for (Object[] base : baseData) { | ||
for (Boolean l : booleans) { | ||
for (Integer buf : BUFFERS) { | ||
for (Boolean w : booleans) { | ||
for (ResetType rt : ResetType.values()) { | ||
for (Boolean f : booleans) { | ||
parameterSets.add(new Object[] { | ||
base[0], base[1], | ||
l, buf, w, Integer.valueOf(0), rt, Integer.valueOf(513), f }); | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} | ||
return parameterSets; | ||
} | ||
} |
55 changes: 55 additions & 0 deletions
55
test/jakarta/servlet/http/TestHttpServletDoHeadInvalidWrite1023ValidWrite0.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,55 @@ | ||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one or more | ||
* contributor license agreements. See the NOTICE file distributed with | ||
* this work for additional information regarding copyright ownership. | ||
* The ASF licenses this file to You 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. | ||
*/ | ||
package jakarta.servlet.http; | ||
|
||
import java.util.ArrayList; | ||
import java.util.Collection; | ||
import java.util.List; | ||
|
||
import org.junit.runner.RunWith; | ||
import org.junit.runners.Parameterized; | ||
|
||
/* | ||
* Split into multiple tests as a single test takes so long it impacts the time | ||
* of an entire test run. | ||
*/ | ||
@RunWith(Parameterized.class) | ||
public class TestHttpServletDoHeadInvalidWrite1023ValidWrite0 extends HttpServletDoHeadBaseTest { | ||
|
||
@Parameterized.Parameters(name = "{index}: {0} {1} {2} {3} {4} {5} {6} {7} {8}") | ||
public static Collection<Object[]> parameters() { | ||
Collection<Object[]> baseData = data(); | ||
|
||
List<Object[]> parameterSets = new ArrayList<>(); | ||
for (Object[] base : baseData) { | ||
for (Boolean l : booleans) { | ||
for (Integer buf : BUFFERS) { | ||
for (Boolean w : booleans) { | ||
for (ResetType rt : ResetType.values()) { | ||
for (Boolean f : booleans) { | ||
parameterSets.add(new Object[] { | ||
base[0], base[1], | ||
l, buf, w, Integer.valueOf(1023), rt, Integer.valueOf(0), f }); | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} | ||
return parameterSets; | ||
} | ||
} |
Oops, something went wrong.