Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

8346828: javax/swing/JScrollBar/4865918/bug4865918.java still fails in CI #1422

Closed
wants to merge 3 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
47 changes: 16 additions & 31 deletions test/jdk/javax/swing/JScrollBar/4865918/bug4865918.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2011, 2024, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2011, 2025, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@@ -23,17 +23,15 @@

/*
* @test
* @key headful
* @bug 4865918
* @requires (os.family != "mac")
* @summary REGRESSION:JCK1.4a-runtime api/javax_swing/interactive/JScrollBarTests.html#JScrollBar
* @run main bug4865918
*/

import java.awt.Dimension;
import java.awt.Robot;
import java.awt.event.MouseAdapter;
import java.awt.event.MouseEvent;
import javax.swing.JFrame;
import javax.swing.JScrollBar;
import javax.swing.SwingUtilities;
import java.util.concurrent.CountDownLatch;
@@ -44,30 +42,23 @@
public class bug4865918 {

private static TestScrollBar sbar;
private static JFrame frame;
private static final CountDownLatch mousePressLatch = new CountDownLatch(1);

public static void main(String[] argv) throws Exception {
try {
Robot robot = new Robot();
SwingUtilities.invokeAndWait(() -> createAndShowGUI());

robot.waitForIdle();
robot.delay(1000);

SwingUtilities.invokeAndWait(() -> sbar.pressMouse());
if (!mousePressLatch.await(2, TimeUnit.SECONDS)) {
throw new RuntimeException("Timed out waiting for mouse press");
}
String osName = System.getProperty("os.name");
if (osName.toLowerCase().contains("os x")) {
System.out.println("This test is not for MacOS, considered passed.");
return;
}
SwingUtilities.invokeAndWait(() -> setupTest());

robot.waitForIdle();
robot.delay(200);
SwingUtilities.invokeAndWait(() -> sbar.pressMouse());
if (!mousePressLatch.await(2, TimeUnit.SECONDS)) {
throw new RuntimeException("Timed out waiting for mouse press");
}

if (getValue() != 9) {
throw new RuntimeException("The scrollbar block increment is incorrect");
}
} finally {
if (frame != null) SwingUtilities.invokeAndWait(() -> frame.dispose());
if (getValue() != 9) {
throw new RuntimeException("The scrollbar block increment is incorrect");
}
}

@@ -78,12 +69,11 @@ private static int getValue() throws Exception {
result[0] = sbar.getValue();
});

System.out.println("value " + result[0]);
return result[0];
}

private static void createAndShowGUI() {
frame = new JFrame("bug4865918");
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
private static void setupTest() {

sbar = new TestScrollBar(JScrollBar.HORIZONTAL, -1, 10, -100, 100);
sbar.setPreferredSize(new Dimension(200, 20));
@@ -94,11 +84,6 @@ public void mousePressed(MouseEvent e) {
}
});

frame.getContentPane().add(sbar);
frame.pack();
frame.setLocationRelativeTo(null);
frame.setVisible(true);
frame.toFront();
}

static class TestScrollBar extends JScrollBar {