aboutsummaryrefslogtreecommitdiffstats
path: root/src/test/java/com/healthmarketscience/jackcess/util/MemFileChannelTest.java
blob: 77601ea716a6f2db0f6ab291e5e0a1d8a466be5a (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
162
163
164
/*
Copyright (c) 2012 James Ahlborn

This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.

This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Lesser General Public License for more details.

You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307
USA
*/

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);
    }
  }

}