OpenJDK / jdk / hs
changeset 42737:b37da02bd6c1
8025439: [TEST BUG] [macosx] PrintServiceLookup.lookupPrintServices doesn't work properly since jdk8b105
Reviewed-by: prr
author | psadhukhan |
---|---|
date | Wed, 07 Dec 2016 11:37:04 +0530 |
parents | 860340360c32 |
children | 67c248b945d5 |
files | jdk/test/javax/print/PrintServiceLookup/GetPrintServices.java |
diffstat | 1 files changed, 26 insertions(+), 19 deletions(-) [+] |
line wrap: on
line diff
--- a/jdk/test/javax/print/PrintServiceLookup/GetPrintServices.java Tue Dec 06 15:50:22 2016 -0800 +++ b/jdk/test/javax/print/PrintServiceLookup/GetPrintServices.java Wed Dec 07 11:37:04 2016 +0530 @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2013, 2016, 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 @@ -29,30 +29,37 @@ /* * @test - * @bug 8013810 - * @summary Test that print service returned without filter are of the same class as with name filter + * @bug 8013810 8025439 + * @summary Test that print service returned without filter are of the same class + * as with name filter */ public class GetPrintServices { - public static void main(String[] args) throws Exception { - for (PrintService service : PrintServiceLookup.lookupPrintServices(null, null)) { - String serviceName = service.getName(); - PrintService serviceByName = lookupByName(serviceName); - if (!service.equals(serviceByName)) { - throw new RuntimeException("NOK " + serviceName + public static void main(String[] args) throws Exception { + for (PrintService service : PrintServiceLookup.lookupPrintServices(null, null)) { + String serviceName = service.getName(); + PrinterName name = service.getAttribute(PrinterName.class); + String printerName = name.getValue(); + + PrintService serviceByName = lookupByName(printerName); + System.out.println("service " + service); + System.out.println("serviceByName " + serviceByName); + if (!service.equals(serviceByName)) { + throw new RuntimeException("NOK " + serviceName + " expected: " + service.getClass().getName() + " got: " + serviceByName.getClass().getName()); - } + } + } + System.out.println("Test PASSED"); } - System.out.println("Test PASSED"); - } - private static PrintService lookupByName(String name) { - AttributeSet attributes = new HashAttributeSet(); - attributes.add(new PrinterName(name, null)); - for (PrintService service : PrintServiceLookup.lookupPrintServices(null, attributes)) { - return service; + private static PrintService lookupByName(String name) { + AttributeSet attributes = new HashAttributeSet(); + attributes.add(new PrinterName(name, null)); + for (PrintService service : + PrintServiceLookup.lookupPrintServices(null, attributes)) { + return service; + } + return null; } - return null; - } }