KickJava   Java API By Example, From Geeks To Geeks.

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


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 SeriesRecord
27  * class works correctly. Test data taken directly from a real
28  * Excel file.
29  *
30  * @author Glen Stampoultzis (glens at apache.org)
31  */

32 public class TestSeriesRecord
33         extends TestCase
34 {
35     byte[] data = new byte[] {
36         (byte)0x01,(byte)0x00, // category data type
37
(byte)0x01,(byte)0x00, // values data type
38
(byte)0x1B,(byte)0x00, // num categories
39
(byte)0x1B,(byte)0x00, // num values
40
(byte)0x01,(byte)0x00, // bubble series type
41
(byte)0x00,(byte)0x00 // num bubble values
42
};
43
44     public TestSeriesRecord(String JavaDoc name)
45     {
46         super(name);
47     }
48
49     public void testLoad()
50             throws Exception JavaDoc
51     {
52
53         SeriesRecord record = new SeriesRecord((short)0x1003, (short)data.length, data);
54         assertEquals( SeriesRecord.CATEGORY_DATA_TYPE_NUMERIC, record.getCategoryDataType());
55         assertEquals( SeriesRecord.VALUES_DATA_TYPE_NUMERIC, record.getValuesDataType());
56         assertEquals( 27, record.getNumCategories());
57         assertEquals( 27, record.getNumValues());
58         assertEquals( SeriesRecord.BUBBLE_SERIES_TYPE_NUMERIC, record.getBubbleSeriesType());
59         assertEquals( 0, record.getNumBubbleValues());
60
61
62         assertEquals( 16, record.getRecordSize() );
63
64         record.validateSid((short)0x1003);
65     }
66
67     public void testStore()
68     {
69         SeriesRecord record = new SeriesRecord();
70         record.setCategoryDataType( SeriesRecord.CATEGORY_DATA_TYPE_NUMERIC );
71         record.setValuesDataType( SeriesRecord.VALUES_DATA_TYPE_NUMERIC );
72         record.setNumCategories( (short)27 );
73         record.setNumValues( (short)27 );
74         record.setBubbleSeriesType( SeriesRecord.BUBBLE_SERIES_TYPE_NUMERIC );
75         record.setNumBubbleValues( (short)0 );
76
77         byte [] recordBytes = record.serialize();
78         assertEquals(recordBytes.length - 4, data.length);
79         for (int i = 0; i < data.length; i++)
80             assertEquals("At offset " + i, data[i], recordBytes[i+4]);
81     }
82 }
83
Popular Tags