java-topology/test/jdk/java/awt/Modal/PrintDialogsTest/PrintDialogsTest.java
russell@unturf.com 0a580b313d undefect. CWE-407 — 63 sites patched across 27 ecosystems
Authors: russell@unturf.com · brackishbert@gmail.com · foxhop.net · TimeHexOn.com

Patches, unit tests, benchmarks, whitepaper, and outreach briefs.
Public domain — no copyright claimed. Use freely.
2026-03-26 17:11:57 -04:00

212 lines
8.2 KiB
Java

/*
* Copyright (c) 2007, 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
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*/
/*
* @test
* @bug 8055836 8057694 8055752
* @summary Check if Print and Page Setup dialogs block other windows;
* check also correctness of modal behavior for other dialogs.
* @library /java/awt/regtesthelpers
* @run main/manual PrintDialogsTest
*/
import java.awt.BorderLayout;
import java.awt.Button;
import java.awt.Checkbox;
import java.awt.CheckboxGroup;
import java.awt.Dialog;
import java.awt.Frame;
import java.awt.EventQueue;
import java.awt.GridLayout;
import java.awt.Label;
import java.awt.Panel;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
public class PrintDialogsTest extends Panel implements ActionListener {
static final String INSTRUCTIONS =
"1. On the Test UI Select:\n" +
"\tThe dialog parent type. (e.g. Frame, Dialog, Hidden, Null)\n" +
"\tThe dialog modality type. (e.g. Modal, Non-Modal, Toolkit modal).\n" +
"\tThe print dialog type. (Print dialog or Page Setup dialog).\n\n" +
"2. Next, click on 'Start test' - Three windows will appear:\n" +
"\tWindow (1) -a Frame or Dialog (depending on selected parent type).\n" +
"\tWindow (2) -an undecorated top-level Window.\n" +
"\tWindow (3) -a Dialog containing two buttons: 'Open' and 'Finish'.\n" +
"\tWindows (1) & (2) have a Dummy button.\n\n" +
"3. Press the button on Window (1) & Window (2) \n" +
"Verification step:\n" +
"\tIf Modality is 'Non-modal' or 'Modeless', Button is pressed \n" +
"\tIf Modality is 'Document' & parent is not Frame/Dialog, Button is pressed \n" +
"\tIn all other cases, button is not pressed & Window (3) should \n" +
"\tblock input to Windows (1) & (2).\n\n" +
"4. Next, press the 'Open' button in Window (3) to open print dialog.\n\n" +
"5. Press the button on Window (1) & Window (2)\n" +
"Verification step:\n" +
"\tThe print dialog should block all three windows (1, 2, and 3).\n\n" +
"6. Cancel the print dialog, Check again if Window (3) " +
"blocks Windows (1) and (2) correctly.\n" +
"Verification step:\n" +
"\tConditions as seen in Verification step 3 " +
"should be seen, as before.\n" +
"To close all test windows, press 'Finish'.\n\n" +
"7. Repeat the steps for different combinations of Dialog Parent, Dialog Modality Type, Print Dialg Type.\n" +
"Try every dialog parent type and every dialog modality type.\n\n" +
"If any of the Verification step fails, note the combination and press 'Fail'.\n";
public static void main(String[] args) throws Exception {
PassFailJFrame.builder()
.instructions(INSTRUCTIONS)
.rows(35)
.columns(60)
.testUI(PrintDialogsTest::createUI)
.testTimeOut(10)
.build()
.awaitAndCheck();
}
private Button btnTest;
private Checkbox cbPage, cbPrint,
cbNullDlg, cbNullFrm, cbHiddDlg, cbHiddFrm, cbDlg, cbFrm,
cbModal, cbAppModal, cbTKModal, cbDocModal, cbModeless, cbNonModal;
private CheckboxGroup groupDialog, groupParent, groupModType;
private static Frame createUI() {
Frame frame = new Frame("Dialog Modality Testing");
PrintDialogsTest test = new PrintDialogsTest();
test.createGUI();
frame.add(test);
frame.pack();
return frame;
}
public void actionPerformed(ActionEvent e) {
if (!btnTest.equals(e.getSource())) { return; }
boolean isPrintDlg = groupDialog.getSelectedCheckbox().equals(cbPrint);
Test.DialogParent p = null;
Checkbox cbParent = groupParent.getSelectedCheckbox();
if (cbParent.equals(cbNullDlg)) {
p = Test.DialogParent.NULL_DIALOG;
} else if (cbParent.equals(cbNullFrm)) {
p = Test.DialogParent.NULL_FRAME;
} else if (cbParent.equals(cbHiddDlg)) {
p = Test.DialogParent.HIDDEN_DIALOG;
} else if (cbParent.equals(cbHiddFrm)) {
p = Test.DialogParent.HIDDEN_FRAME;
} else if (cbParent.equals(cbDlg)) {
p = Test.DialogParent.DIALOG;
} else if (cbParent.equals(cbFrm)) {
p = Test.DialogParent.FRAME;
}
boolean modal = false;
Dialog.ModalityType type = null;
Checkbox cbModType = groupModType.getSelectedCheckbox();
if (cbModType.equals(cbModal)) {
modal = true;
} else if (cbModType.equals(cbNonModal)) {
modal = false;
} else if (cbModType.equals(cbAppModal)) {
type = Dialog.ModalityType.APPLICATION_MODAL;
} else if (cbModType.equals(cbDocModal)) {
type = Dialog.ModalityType.DOCUMENT_MODAL;
} else if (cbModType.equals(cbTKModal)) {
type = Dialog.ModalityType.TOOLKIT_MODAL;
} else if (cbModType.equals(cbModeless)) {
type = Dialog.ModalityType.MODELESS;
}
if (type == null) {
(new Test(isPrintDlg, modal, p)).start();
} else {
(new Test(isPrintDlg, type, p)).start();
}
}
private void createGUI() {
setLayout(new BorderLayout());
Panel panel = new Panel();
panel.setLayout(new GridLayout(21, 1));
btnTest = new Button("Start test");
btnTest.addActionListener(this);
panel.add(btnTest);
panel.add(new Label(" ")); // spacing
panel.add(new Label("Dialog parent:"));
groupParent = new CheckboxGroup();
cbNullDlg = new Checkbox("NULL Dialog" , groupParent, true );
cbNullFrm = new Checkbox("NULL Frame" , groupParent, false);
cbHiddDlg = new Checkbox("Hidden Dialog", groupParent, false);
cbHiddFrm = new Checkbox("Hidden Frame" , groupParent, false);
cbDlg = new Checkbox("Dialog" , groupParent, false);
cbFrm = new Checkbox("Frame" , groupParent, false);
panel.add(cbNullDlg);
panel.add(cbNullFrm);
panel.add(cbHiddDlg);
panel.add(cbHiddFrm);
panel.add(cbDlg);
panel.add(cbFrm);
panel.add(new Label(" ")); // spacing
panel.add(new Label("Dialog modality type:"));
groupModType = new CheckboxGroup();
cbModal = new Checkbox("Modal" , groupModType, true );
cbNonModal = new Checkbox("Non-modal" , groupModType, false);
cbAppModal = new Checkbox("Application modal", groupModType, false);
cbDocModal = new Checkbox("Document modal" , groupModType, false);
cbTKModal = new Checkbox("Toolkit modal" , groupModType, false);
cbModeless = new Checkbox("Modeless" , groupModType, false);
panel.add(cbModal);
panel.add(cbNonModal);
panel.add(cbAppModal);
panel.add(cbDocModal);
panel.add(cbTKModal);
panel.add(cbModeless);
panel.add(new Label(" ")); // spacing
panel.add(new Label("Print dialog type:"));
groupDialog = new CheckboxGroup();
cbPage = new Checkbox("Page Setup", groupDialog, true);
cbPrint = new Checkbox("Print", groupDialog, false);
panel.add(cbPage);
panel.add(cbPrint);
add(panel);
}
}