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:
24: import javax.print.attribute.HashDocAttributeSet;
25: import javax.print.attribute.standard.MediaSizeName;
26:
27: import junit.framework.TestCase;
28:
29: public class PrintAutosenseTest extends TestCase {
30: public static void main(String[] args) throws Exception {
31: new PrintAutosenseTest().testPrintAutosense();
32: }
33:
34: public void testPrintAutosense() throws Exception {
35: System.out
36: .println("======== START PrintAutosenseTest ========");
37:
38: PrintService[] services;
39: HashDocAttributeSet daset = new HashDocAttributeSet();
40: DocPrintJob pj;
41: Doc doc;
42:
43: daset.add(MediaSizeName.ISO_A4);
44:
45: DocFlavor df = DocFlavor.INPUT_STREAM.AUTOSENSE;
46: InputStream fis = this .getClass().getResourceAsStream(
47: "/Resources/hello_ps.ps");
48: services = PrintServiceLookup.lookupPrintServices(df, null);
49: TestUtil.checkServices(services);
50:
51: for (int j = 0; j < services.length; j++) {
52: PrintService printer = services[j];
53: if (printer.toString().indexOf("print-to-file") >= 0) {
54: doc = new SimpleDoc(fis, df, null);
55:
56: pj = printer.createPrintJob();
57: pj.print(doc, null);
58: System.out.println(fis.toString() + " printed on "
59: + printer.getName());
60: break;
61: }
62: }
63:
64: System.out.println("====== END PrintAutosenseTest ========");
65: }
66:
67: }
|