aboutsummaryrefslogtreecommitdiffstats
path: root/src/test/java/com/healthmarketscience/jackcess/util/MemFileChannelTest.java
blob: 711ed8b3e65bbf7ed308aed7fdf024497d9027a0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
/*
Copyright (c) 2012 James Ahlborn

Licensed 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 com.healthmarketscience.jackcess.util;

import java.io.File;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.RandomAccessFile;
import java.nio.ByteBuffer;
import java.nio.channels.FileChannel;
import java.nio.channels.NonWritableChannelException;
import java.util.Arrays;

import junit.framework.TestCase;

import com.healthmarketscience.jackcess.DatabaseTest;

/**
 *
 * @author James Ahlborn
 */
public class MemFileChannelTest extends TestCase 
{

  public MemFileChannelTest(String name) {
    super(name);
  }

  public void testReadOnlyChannel() throws Exception
  {
    File testFile = new File("src/test/data/V1997/compIndexTestV1997.mdb");
    MemFileChannel ch = MemFileChannel.newChannel(testFile, "r");
    assertEquals(testFile.length(), ch.size());
    assertEquals(0L, ch.position());

    try {
      ByteBuffer bb = ByteBuffer.allocate(1024);
      ch.write(bb);
      fail("NonWritableChannelException should have been thrown");
    } catch(NonWritableChannelException ignored) {
      // success
    }
    
    try {
      ch.truncate(0L);
      fail("NonWritableChannelException should have been thrown");
    } catch(NonWritableChannelException ignored) {
      // success
    }
    
    try {
      ch.transferFrom(null, 0L, 10L);
      fail("NonWritableChannelException should have been thrown");
    } catch(NonWritableChannelException ignored) {
      // success
    }

    assertEquals(testFile.length(), ch.size());
    assertEquals(0L, ch.position());

    ch.close();
  }

  public void testChannel() throws Exception
  {
    ByteBuffer bb = ByteBuffer.allocate(1024);

    MemFileChannel ch = MemFileChannel.newChannel();
    assertTrue(ch.isOpen());
    assertEquals(0L, ch.size());
    assertEquals(0L, ch.position());
    assertEquals(-1, ch.read(bb));
    
    ch.close();

    assertFalse(ch.isOpen());

    File testFile = new File("src/test/data/V1997/compIndexTestV1997.mdb");
    ch = MemFileChannel.newChannel(testFile, "r");
    assertEquals(testFile.length(), ch.size());
    assertEquals(0L, ch.position());

    try {
      ch.position(-1);
      fail("IllegalArgumentException should have been thrown");
    } catch(IllegalArgumentException ignored) {
      // success
    }
    
    MemFileChannel ch2 = MemFileChannel.newChannel();
    ch.transferTo(ch2);
    ch2.force(true);
    assertEquals(testFile.length(), ch2.size());
    assertEquals(testFile.length(), ch2.position());

    try {
      ch2.truncate(-1L);
      fail("IllegalArgumentException should have been thrown");
    } catch(IllegalArgumentException ignored) {
      // success
    }
    
    long trucSize = ch2.size()/3;
    ch2.truncate(trucSize);
    assertEquals(trucSize, ch2.size());
    assertEquals(trucSize, ch2.position());
    ch2.position(0L);
    copy(ch, ch2, bb);

    File tmpFile = File.createTempFile("chtest_", ".dat");
    tmpFile.deleteOnExit();
    FileOutputStream fc = new FileOutputStream(tmpFile);

    ch2.transferTo(fc);

    fc.close();

    assertEquals(testFile.length(), tmpFile.length());

    assertTrue(Arrays.equals(DatabaseTest.toByteArray(testFile),
                             DatabaseTest.toByteArray(tmpFile)));

    ch2.truncate(0L);
    assertTrue(ch2.isOpen());
    assertEquals(0L, ch2.size());
    assertEquals(0L, ch2.position());
    assertEquals(-1, ch2.read(bb));

    ch2.close();
    assertFalse(ch2.isOpen());
  }

  private static void copy(FileChannel src, FileChannel dst, ByteBuffer bb)
    throws IOException
  {
    src.position(0L);
    while(true) {
      bb.clear();
      if(src.read(bb) < 0) {
        break;
      }
      bb.flip();
      dst.write(bb);
    }
  }

}