001: /*BEGIN_COPYRIGHT_BLOCK
002: *
003: * Copyright (c) 2001-2007, JavaPLT group at Rice University (javaplt@rice.edu)
004: * All rights reserved.
005: *
006: * Redistribution and use in source and binary forms, with or without
007: * modification, are permitted provided that the following conditions are met:
008: * * Redistributions of source code must retain the above copyright
009: * notice, this list of conditions and the following disclaimer.
010: * * Redistributions in binary form must reproduce the above copyright
011: * notice, this list of conditions and the following disclaimer in the
012: * documentation and/or other materials provided with the distribution.
013: * * Neither the names of DrJava, the JavaPLT group, Rice University, nor the
014: * names of its contributors may be used to endorse or promote products
015: * derived from this software without specific prior written permission.
016: *
017: * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
018: * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
019: * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
020: * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
021: * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
022: * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
023: * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
024: * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
025: * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
026: * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
027: * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
028: *
029: * This software is Open Source Initiative approved Open Source Software.
030: * Open Source Initative Approved is a trademark of the Open Source Initiative.
031: *
032: * This file is part of DrJava. Download the current version of this project
033: * from http://www.drjava.org/ or http://sourceforge.net/projects/drjava/
034: *
035: * END_COPYRIGHT_BLOCK*/
036:
037: package edu.rice.cs.drjava.model.print;
038:
039: import edu.rice.cs.drjava.DrJavaTestCase;
040: import junit.framework.Test;
041: import junit.framework.TestSuite;
042:
043: import java.awt.*;
044: import java.awt.image.BufferedImage;
045: import java.awt.print.PageFormat;
046: import java.awt.print.Printable;
047:
048: /**
049: * Test functions of DrJavaBook
050: *
051: */
052: public final class DrJavaBookTest extends DrJavaTestCase {
053: /** The DrJavaBook instance we will be testing. */
054: private DrJavaBook book = null;
055:
056: /** Standard constructor.
057: * @param name name of this DrJavaBook test
058: */
059: public DrJavaBookTest(String name) {
060: super (name);
061: }
062:
063: /** Creates a test suite for JUnit to run.
064: * @return a test suite based on the methods in this class
065: */
066: public static Test suite() {
067: return new TestSuite(DrJavaBookTest.class);
068: }
069:
070: public void setUp() throws Exception {
071: super .setUp();
072: book = new DrJavaBook("import java.io.*;", "simple_file.java",
073: new PageFormat());
074: }
075:
076: public void tearDown() throws Exception {
077: book = null;
078: super .tearDown();
079: }
080:
081: public void testGetNumberOfPages() {
082: assertEquals("testGetNumberOfPages:", new Integer(1),
083: new Integer(book.getNumberOfPages()));
084: }
085:
086: public void testGetPageFormat() {
087: assertEquals("testGetPageFormat:", PageFormat.PORTRAIT, book
088: .getPageFormat(0).getOrientation());
089: }
090:
091: public void testGetPrintable() {
092: Graphics g = (new BufferedImage(100, 100,
093: BufferedImage.TYPE_INT_RGB)).getGraphics();
094: Printable p = book.getPrintable(0);
095: try {
096: assertEquals("testGetPrintable:", new Integer(
097: Printable.PAGE_EXISTS), new Integer(p.print(g,
098: new PageFormat(), 0)));
099: } catch (Exception e) {
100: fail("testGetPrintable: Unexpected exception!\n" + e);
101: }
102:
103: try {
104: p = book.getPrintable(99);
105: fail("previous operation should throw an IndexOutOfBoundsException");
106: } catch (IndexOutOfBoundsException e) {
107: /* test succeeded */
108: }
109: }
110: }
|