1 /*
   2  * Copyright (c) 2016, 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   @bug 8042713 8170578
  27   @summary  Print Dialog does not update attribute set with page range
  28   @run main/manual PrintAttributeUpdateTest
  29  */
  30 import java.awt.Component;
  31 import java.awt.Graphics;
  32 import java.awt.print.PageFormat;
  33 import java.awt.print.Pageable;
  34 import java.awt.print.Printable;
  35 import java.awt.print.PrinterJob;
  36 import javax.print.PrintService;
  37 import javax.print.attribute.Attribute;
  38 import javax.print.attribute.HashPrintRequestAttributeSet;
  39 import javax.print.attribute.standard.DialogTypeSelection;
  40 import javax.print.attribute.standard.PageRanges;
  41 import javax.swing.JOptionPane;
  42 import javax.swing.SwingUtilities;
  43 
  44 public class PrintAttributeUpdateTest implements Pageable, Printable {
  45 
  46     public static void main(String args[]) throws Exception {
  47         PrintService prtSrv = PrinterJob.getPrinterJob().getPrintService();
  48         if (prtSrv == null) {
  49             System.out.println("No Printers. Test cannot continue");
  50             return;
  51         }
  52         String[] instructions
  53                 = {
  54                     "Select Pages Range From instead of All in print dialog. ",
  55                     "Then select Print"
  56                 };
  57         SwingUtilities.invokeAndWait(() -> {
  58             JOptionPane.showMessageDialog((Component) null,
  59                     instructions, "Instructions",
  60                     JOptionPane.INFORMATION_MESSAGE);
  61         });
  62         HashPrintRequestAttributeSet as = new HashPrintRequestAttributeSet();
  63         PrinterJob j = PrinterJob.getPrinterJob();
  64         j.setPageable(new PrintAttributeUpdateTest());
  65         as.add(DialogTypeSelection.NATIVE);
  66         j.printDialog(as);
  67         if (as.containsKey(PageRanges.class) == false) {
  68             throw new RuntimeException("Print Dialog did not update "
  69                     + " attribute set with page range");
  70         }
  71         Attribute attrs[] = as.toArray();
  72         for (int i = 0; i < attrs.length; i++) {
  73             System.out.println("attr " + attrs[i]);
  74         }
  75         j.print(as);
  76     }
  77 
  78     public int getNumberOfPages() {
  79         return UNKNOWN_NUMBER_OF_PAGES;
  80     }
  81 
  82     public PageFormat getPageFormat(int pageIndex) {
  83         PageFormat pf = new PageFormat();
  84         return pf;
  85     }
  86 
  87     public Printable getPrintable(int pageIndex) {
  88         return this;
  89     }
  90 
  91     public int print(Graphics g, PageFormat pgFmt, int pi) {
  92         g.drawString("Page : " + (pi + 1), 200, 200);
  93 
  94         return PAGE_EXISTS;
  95     }
  96 
  97 }