KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > apache > poi > hwpf > model > TestTextPieceTable


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 package org.apache.poi.hwpf.model;
19
20 import junit.framework.*;
21
22 import java.io.ByteArrayOutputStream JavaDoc;
23 import java.util.ArrayList JavaDoc;
24
25 import org.apache.poi.hwpf.*;
26 import org.apache.poi.hwpf.model.io.*;
27
28
29 public class TestTextPieceTable
30   extends TestCase
31 {
32   private HWPFDocFixture _hWPFDocFixture;
33
34   public TestTextPieceTable(String JavaDoc name)
35   {
36     super(name);
37   }
38
39   public void testReadWrite()
40     throws Exception JavaDoc
41   {
42     FileInformationBlock fib = _hWPFDocFixture._fib;
43     byte[] mainStream = _hWPFDocFixture._mainStream;
44     byte[] tableStream = _hWPFDocFixture._tableStream;
45     int fcMin = fib.getFcMin();
46
47     ComplexFileTable cft = new ComplexFileTable(mainStream, tableStream, fib.getFcClx(), fcMin);
48
49
50     HWPFFileSystem fileSys = new HWPFFileSystem();
51
52     cft.writeTo(fileSys);
53     ByteArrayOutputStream JavaDoc tableOut = fileSys.getStream("1Table");
54     ByteArrayOutputStream JavaDoc mainOut = fileSys.getStream("WordDocument");
55
56     byte[] newTableStream = tableOut.toByteArray();
57     byte[] newMainStream = mainOut.toByteArray();
58
59     ComplexFileTable newCft = new ComplexFileTable(newMainStream, newTableStream, 0,0);
60
61     TextPieceTable oldTextPieceTable = cft.getTextPieceTable();
62     TextPieceTable newTextPieceTable = newCft.getTextPieceTable();
63
64     assertEquals(oldTextPieceTable, newTextPieceTable);
65
66
67   }
68   protected void setUp()
69     throws Exception JavaDoc
70   {
71     super.setUp();
72
73     _hWPFDocFixture = new HWPFDocFixture(this);
74     _hWPFDocFixture.setUp();
75   }
76
77   protected void tearDown()
78     throws Exception JavaDoc
79   {
80     _hWPFDocFixture.tearDown();
81
82     _hWPFDocFixture = null;
83     super.tearDown();
84   }
85
86 }
87
Popular Tags