/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you 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 org.apache.cassandra.io; import java.io.IOException; import java.util.*; import org.junit.Test; import org.apache.cassandra.CleanupHelper; import org.apache.cassandra.io.util.BufferedRandomAccessFile; import org.apache.cassandra.db.DecoratedKey; import com.google.common.base.Predicate; import com.google.common.base.Predicates; public class SSTableTest extends CleanupHelper { @Test public void testSingleWrite() throws IOException { // write test data String key = Integer.toString(1); byte[] bytes = new byte[1024]; new Random().nextBytes(bytes); TreeMap<String, byte[]> map = new TreeMap<String,byte[]>(); map.put(key, bytes); SSTableReader ssTable = SSTableUtils.writeRawSSTable("Keyspace1", "Standard1", map); // verify verifySingle(ssTable, bytes, key); ssTable = SSTableReader.open(ssTable.path); // read the index from disk verifySingle(ssTable, bytes, key); } private void verifySingle(SSTableReader sstable, byte[] bytes, String key) throws IOException { BufferedRandomAccessFile file = new BufferedRandomAccessFile(sstable.path, "r"); file.seek(sstable.getPosition(sstable.partitioner.decorateKey(key)).position); assert key.equals(file.readUTF()); int size = file.readInt(); byte[] bytes2 = new byte[size]; file.readFully(bytes2); assert Arrays.equals(bytes2, bytes); } @Test public void testManyWrites() throws IOException { TreeMap<String, byte[]> map = new TreeMap<String,byte[]>(); for ( int i = 100; i < 1000; ++i ) { map.put(Integer.toString(i), ("Avinash Lakshman is a good man: " + i).getBytes()); } // write SSTableReader ssTable = SSTableUtils.writeRawSSTable("Keyspace1", "Standard2", map); // verify verifyMany(ssTable, map); ssTable = SSTableReader.open(ssTable.path); // read the index from disk verifyMany(ssTable, map); } private void verifyMany(SSTableReader sstable, TreeMap<String, byte[]> map) throws IOException { List<String> keys = new ArrayList<String>(map.keySet()); Collections.shuffle(keys); BufferedRandomAccessFile file = new BufferedRandomAccessFile(sstable.path, "r"); for (String key : keys) { file.seek(sstable.getPosition(sstable.partitioner.decorateKey(key)).position); assert key.equals(file.readUTF()); int size = file.readInt(); byte[] bytes2 = new byte[size]; file.readFully(bytes2); assert Arrays.equals(bytes2, map.get(key)); } } }