diff options
author | Nick Burch <nick@apache.org> | 2007-06-21 21:24:25 +0000 |
---|---|---|
committer | Nick Burch <nick@apache.org> | 2007-06-21 21:24:25 +0000 |
commit | 84726d7ca13a9101eeb2ee3bad379eed8b3da63c (patch) | |
tree | 21ec09fbbcc3b1a87bbe70f91c5bc643f708e403 /src/scratchpad/testcases/org/apache/poi/hdgf/chunks | |
parent | aa1b5c9dd46addfa02b4dd6c1fab667a8bbff12f (diff) | |
download | poi-84726d7ca13a9101eeb2ee3bad379eed8b3da63c.tar.gz poi-84726d7ca13a9101eeb2ee3bad379eed8b3da63c.zip |
Make a start on processing the commands within the chunks, and their values. Includes some tests
git-svn-id: https://svn.apache.org/repos/asf/jakarta/poi/trunk@549616 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/scratchpad/testcases/org/apache/poi/hdgf/chunks')
-rw-r--r-- | src/scratchpad/testcases/org/apache/poi/hdgf/chunks/TestChunks.java | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/scratchpad/testcases/org/apache/poi/hdgf/chunks/TestChunks.java b/src/scratchpad/testcases/org/apache/poi/hdgf/chunks/TestChunks.java index 9cf11ce3aa..a470f1e98b 100644 --- a/src/scratchpad/testcases/org/apache/poi/hdgf/chunks/TestChunks.java +++ b/src/scratchpad/testcases/org/apache/poi/hdgf/chunks/TestChunks.java @@ -47,7 +47,7 @@ public static final byte[] data_a = new byte[] { 70, 0, 0, 0, 0, 0, 0, 1, 0, 84, 24, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -125, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 0, 0, 0, 2, 0, 85, 5, 0, 0, - 0, 72, 0, 0, 0, 0, 0, 0, 0, 0, 0 + 0, 72, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }; public static final byte[] data_b = new byte[] { 70, 0, 0, 0, -1, -1, -1, -1, 3, 0, 0, 0, 68, 0, 0, 0, 0, 0, 0, 68, 0, 0, 0, 0, 0, @@ -137,9 +137,10 @@ public static final byte[] data_b = new byte[] { 70, 0, 0, 0, assertEquals(70, chunk.getHeader().getType()); assertEquals(0x46, chunk.getHeader().getType()); - // Should have two different chunk commands, a + // Should have two virtual chunk commands, a // 10 (page sheet) and an 18 assertEquals(2, chunk.commandDefinitions.length); + assertEquals(0, chunk.getCommands().length); assertEquals(10, chunk.commandDefinitions[0].getType()); assertEquals(0, chunk.commandDefinitions[0].getOffset()); @@ -171,9 +172,10 @@ public static final byte[] data_b = new byte[] { 70, 0, 0, 0, assertEquals(104, chunk.getHeader().getType()); assertEquals(0x68, chunk.getHeader().getType()); - // Should have two different chunk commands, a + // Should have two virtual chunk commands, a // 10 (Unknown) and an 18 assertEquals(2, chunk.commandDefinitions.length); + assertEquals(0, chunk.getCommands().length); assertEquals(10, chunk.commandDefinitions[0].getType()); assertEquals(0, chunk.commandDefinitions[0].getOffset()); |