Added:
jackrabbit/oak/trunk/oak-segment-tar/src/test/java/org/apache/jackrabbit/oak/segment/standby/server/ServerTestUtils.java
URL:
http://svn.apache.org/viewvc/jackrabbit/oak/trunk/oak-segment-tar/src/test/java/org/apache/jackrabbit/oak/segment/standby/server/ServerTestUtils.java?rev=1760405&view=auto
==============================================================================
---
jackrabbit/oak/trunk/oak-segment-tar/src/test/java/org/apache/jackrabbit/oak/segment/standby/server/ServerTestUtils.java
(added)
+++
jackrabbit/oak/trunk/oak-segment-tar/src/test/java/org/apache/jackrabbit/oak/segment/standby/server/ServerTestUtils.java
Mon Sep 12 16:47:28 2016
@@ -0,0 +1,56 @@
+/*
+ * 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.jackrabbit.oak.segment.standby.server;
+
+import static org.mockito.Mockito.mock;
+
+import java.nio.ByteBuffer;
+import java.util.UUID;
+
+import com.google.common.hash.Hashing;
+import org.apache.jackrabbit.oak.segment.RecordId;
+import org.apache.jackrabbit.oak.segment.Segment;
+import org.apache.jackrabbit.oak.segment.SegmentId;
+import org.apache.jackrabbit.oak.segment.SegmentReader;
+import org.apache.jackrabbit.oak.segment.SegmentStore;
+
+class ServerTestUtils {
+
+ private ServerTestUtils() {
+ // Prevent instantiation.
+ }
+
+ static RecordId mockRecordId(long msb, long lsb, int offset) {
+ return new RecordId(new SegmentId(mock(SegmentStore.class), msb, lsb),
offset);
+ }
+
+ static Segment mockSegment(UUID uuid, byte[] buffer) {
+ SegmentStore store = mock(SegmentStore.class);
+ SegmentReader reader = mock(SegmentReader.class);
+ long msb = uuid.getMostSignificantBits();
+ long lsb = uuid.getLeastSignificantBits();
+ SegmentId id = new SegmentId(store, msb, lsb);
+ ByteBuffer data = ByteBuffer.wrap(buffer);
+ return new Segment(store, reader, id, data);
+ }
+
+ static long hash(byte[] data) {
+ return
Hashing.murmur3_32().newHasher().putBytes(data).hash().padToLong();
+ }
+
+}
Propchange:
jackrabbit/oak/trunk/oak-segment-tar/src/test/java/org/apache/jackrabbit/oak/segment/standby/server/ServerTestUtils.java
------------------------------------------------------------------------------
svn:eol-style = native