blob: fb291aa5c59078133b62d7c03a3fac37fdfb3663 [file] [log] [blame]
// Copyright 2016 The Vanadium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package io.v.syncbase.core;
import org.junit.AfterClass;
import org.junit.BeforeClass;
import org.junit.ClassRule;
import org.junit.Test;
import org.junit.rules.TemporaryFolder;
import static io.v.syncbase.core.TestConstants.anyCollectionPermissions;
import static io.v.syncbase.core.TestConstants.anyDbPermissions;
import static org.junit.Assert.assertArrayEquals;
import static org.junit.Assert.assertFalse;
import static org.junit.Assert.assertTrue;
import static org.junit.Assert.fail;
public class RowTest {
@ClassRule
public static final TemporaryFolder folder = new TemporaryFolder();
@BeforeClass
public static void setUp() throws Exception {
System.loadLibrary("syncbase");
io.v.syncbase.internal.Service.Init(folder.newFolder().getAbsolutePath(), true, 0);
io.v.syncbase.internal.Service.Login("", "");
}
@AfterClass
public static void tearDown() throws Exception {
io.v.syncbase.internal.Service.Shutdown();
}
@Test
public void all() {
Id dbId = new Id("idp:a:angrybirds", "core_collection");
Id collectionId = new Id("...", "collection");
String key = "key";
// Reference: release/go/src/v.io/v23/vom/testdata/data81/vomdata.vdl
byte[] vomValue = {(byte)0x81, 0x06, 0x03, 'a', 'b', 'c'};
try {
Database db = Service.database(dbId);
db.create(anyDbPermissions());
Collection collection = db.collection(collectionId);
collection.create(anyCollectionPermissions());
Row row = collection.row(key);
row.put(vomValue);
assertArrayEquals(vomValue, row.get());
assertTrue(row.exists());
row.delete();
assertFalse(row.exists());
} catch (VError vError) {
vError.printStackTrace();
fail(vError.toString());
}
}
}