01: /*
02: * Licensed to the Apache Software Foundation (ASF) under one or more
03: * contributor license agreements. See the NOTICE file distributed with
04: * this work for additional information regarding copyright ownership.
05: * The ASF licenses this file to You under the Apache License, Version 2.0
06: * (the "License"); you may not use this file except in compliance with
07: * the License. You may obtain a copy of the License at
08: *
09: * http://www.apache.org/licenses/LICENSE-2.0
10: *
11: * Unless required by applicable law or agreed to in writing, software
12: * distributed under the License is distributed on an "AS IS" BASIS,
13: * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14: * See the License for the specific language governing permissions and
15: * limitations under the License.
16: */
17: /**
18: * @author Igor A. Pyankov
19: * @version $Revision: 1.2 $
20: */package javax.print;
21:
22: import java.io.InputStream;
23: import javax.print.attribute.HashDocAttributeSet;
24: import javax.print.attribute.HashPrintRequestAttributeSet;
25: import javax.print.attribute.PrintRequestAttributeSet;
26:
27: import junit.framework.TestCase;
28:
29: public class LookupPrintServicesTest extends TestCase {
30: public void testLookupPrintServices() throws Exception {
31: System.out
32: .println("======== START LookupPrintServicesTest ========");
33:
34: PrintService[] services;
35: PrintRequestAttributeSet aset = new HashPrintRequestAttributeSet();
36: HashDocAttributeSet daset = new HashDocAttributeSet();
37: DocPrintJob pj;
38: Doc doc;
39:
40: Object[][] filetoprint = {
41: { "/Resources/JPEG.jpg", DocFlavor.INPUT_STREAM.JPEG },
42: { "/Resources/GIF.gif", DocFlavor.INPUT_STREAM.GIF } };
43:
44: DocFlavor df;
45: InputStream fis;
46:
47: for (int i = 0; i < filetoprint.length; i++) {
48: df = (DocFlavor) filetoprint[i][1];
49:
50: services = PrintServiceLookup.lookupPrintServices(df, aset);
51: TestUtil.checkServices(services);
52:
53: for (int j = 0; j < services.length; j++) {
54: fis = this .getClass().getResourceAsStream(
55: (String) filetoprint[i][0]);
56: doc = new SimpleDoc(fis, df, daset);
57: PrintService printer = services[j];
58:
59: pj = printer.createPrintJob();
60: pj.print(doc, aset);
61: System.out.println(fis.toString() + " printed on "
62: + printer.getName());
63: }
64: }
65:
66: System.out
67: .println("====== END LookupPrintServicesTest ========");
68: }
69:
70: }
|