/* ==================================================================== Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to You under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. ==================================================================== */ package org.apache.poi.hssf.record.chart; import org.apache.poi.hssf.record.TestcaseRecordInputStream; import junit.framework.TestCase; /** * Tests the serialization and deserialization of the TextRecord * class works correctly. Test data taken directly from a real * Excel file. * * @author Glen Stampoultzis (glens at apache.org) */ public final class TestTextRecord extends TestCase { byte[] data = new byte[] { (byte)0x02, // horiz align (byte)0x02, // vert align (byte)0x01,(byte)0x00, // display mode (byte)0x00,(byte)0x00,(byte)0x00,(byte)0x00, // rgb color (byte)0xD6,(byte)0xFF,(byte)0xFF,(byte)0xFF, // x (byte)0xC4,(byte)0xFF,(byte)0xFF,(byte)0xFF, // y (byte)0x00,(byte)0x00,(byte)0x00,(byte)0x00, // width (byte)0x00,(byte)0x00,(byte)0x00,(byte)0x00, // height (byte)0xB1,(byte)0x00, // options 1 (byte)0x4D,(byte)0x00, // index of color value (byte)0x50,(byte)0x2B, // options 2 -- strange upper bits supposed to be 0'd (byte)0x00,(byte)0x00 // text rotation }; public void testLoad() { TextRecord record = new TextRecord(TestcaseRecordInputStream.create(0x1025, data)); assertEquals( TextRecord.HORIZONTAL_ALIGNMENT_CENTER, record.getHorizontalAlignment()); assertEquals( TextRecord.VERTICAL_ALIGNMENT_CENTER, record.getVerticalAlignment()); assertEquals( TextRecord.DISPLAY_MODE_TRANSPARENT, record.getDisplayMode()); assertEquals( 0, record.getRgbColor()); assertEquals( -42, record.getX()); assertEquals( -60, record.getY()); assertEquals( 0, record.getWidth()); assertEquals( 0, record.getHeight()); assertEquals( 177, record.getOptions1()); assertEquals( true, record.isAutoColor() ); assertEquals( false, record.isShowKey() ); assertEquals( false, record.isShowValue() ); assertEquals( false, record.isVertical() ); assertEquals( true, record.isAutoGeneratedText() ); assertEquals( true, record.isGenerated() ); assertEquals( false, record.isAutoLabelDeleted() ); assertEquals( true, record.isAutoBackground() ); assertEquals( TextRecord.ROTATION_NONE, record.getRotation() ); assertEquals( false, record.isShowCategoryLabelAsPercentage() ); assertEquals( false, record.isShowValueAsPercentage() ); assertEquals( false, record.isShowBubbleSizes() ); assertEquals( false, record.isShowLabel() ); assertEquals( 77, record.getIndexOfColorValue()); assertEquals( 11088, record.getOptions2()); assertEquals( 0, record.getDataLabelPlacement() ); assertEquals( 0, record.getTextRotation()); assertEquals( 36, record.getRecordSize() ); } public void testStore() { TextRecord record = new TextRecord(); record.setHorizontalAlignment( TextRecord.HORIZONTAL_ALIGNMENT_CENTER ); record.setVerticalAlignment( TextRecord.VERTICAL_ALIGNMENT_CENTER ); record.setDisplayMode( TextRecord.DISPLAY_MODE_TRANSPARENT ); record.setRgbColor( 0 ); record.setX( -42 ); record.setY( -60 ); record.setWidth( 0 ); record.setHeight( 0 ); record.setAutoColor( true ); record.setShowKey( false ); record.setShowValue( false ); record.setVertical( false ); record.setAutoGeneratedText( true ); record.setGenerated( true ); record.setAutoLabelDeleted( false ); record.setAutoBackground( true ); record.setRotation( TextRecord.ROTATION_NONE ); record.setShowCategoryLabelAsPercentage( false ); record.setShowValueAsPercentage( false ); record.setShowBubbleSizes( false ); record.setShowLabel( false ); record.setIndexOfColorValue( (short)77 ); record.setOptions2( (short)0x2b50 ); // record.setDataLabelPlacement( (short)0x2b50 ); record.setTextRotation( (short)0 ); byte [] recordBytes = record.serialize(); assertEquals(recordBytes.length - 4, data.length); for (int i = 0; i < data.length; i++) assertEquals("At offset " + i, data[i], recordBytes[i+4]); } }