KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > apache > poi > hssf > record > TestSeriesTextRecord


1
2 /* ====================================================================
3    Copyright 2002-2004 Apache Software Foundation
4
5    Licensed under the Apache License, Version 2.0 (the "License");
6    you may not use this file except in compliance with the License.
7    You may obtain a copy of the License at
8
9        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
19
20 package org.apache.poi.hssf.record;
21
22
23 import junit.framework.TestCase;
24
25 /**
26  * Tests the serialization and deserialization of the SeriesTextRecord
27  * class works correctly. Test data taken directly from a real
28  * Excel file.
29  *
30
31  * @author Andrew C. Oliver (acoliver at apache.org)
32  */

33 public class TestSeriesTextRecord
34         extends TestCase
35 {
36     byte[] data = new byte[] {
37     (byte)0x00,(byte)0x00,(byte)0x0C,(byte)0x01,(byte)0x56,(byte)0x00,(byte)0x61,(byte)0x00,(byte)0x6C,(byte)0x00,(byte)0x75,(byte)0x00,(byte)0x65,(byte)0x00,(byte)0x20,(byte)0x00,(byte)0x4E,(byte)0x00,(byte)0x75,(byte)0x00,(byte)0x6D,(byte)0x00,(byte)0x62,(byte)0x00,(byte)0x65,(byte)0x00,(byte)0x72,(byte)0x00
38     };
39
40     public TestSeriesTextRecord(String JavaDoc name)
41     {
42         super(name);
43     }
44
45     public void testLoad()
46             throws Exception JavaDoc
47     {
48         SeriesTextRecord record = new SeriesTextRecord((short)0x100d, (short)data.length, data);
49         
50
51         assertEquals( (short)0, record.getId());
52
53         assertEquals( (byte)0x0C, record.getTextLength());
54
55         assertEquals( (byte)0x01, record.getUndocumented());
56
57         assertEquals( "Value Number", record.getText());
58
59
60         assertEquals( 32, record.getRecordSize() );
61
62         record.validateSid((short)0x100d);
63     }
64
65     public void testStore()
66     {
67         SeriesTextRecord record = new SeriesTextRecord();
68
69
70
71         record.setId( (short)0 );
72
73         record.setTextLength( (byte)0x0C );
74
75         record.setUndocumented( (byte)0x01 );
76
77         record.setText( "Value Number" );
78
79
80         byte [] recordBytes = record.serialize();
81         assertEquals(recordBytes.length - 4, data.length);
82         for (int i = 0; i < data.length; i++)
83             assertEquals("At offset " + i, data[i], recordBytes[i+4]);
84     }
85 }
86
Popular Tags