summaryrefslogtreecommitdiffstats
path: root/document/src/test
diff options
context:
space:
mode:
Diffstat (limited to 'document/src/test')
-rw-r--r--document/src/test/java/com/yahoo/document/DocumentUpdateTestCase.java7
-rw-r--r--document/src/test/java/com/yahoo/document/serialization/SerializationHelperTestCase.java6
-rw-r--r--document/src/test/java/com/yahoo/document/update/FieldUpdateTestCase.java2
-rw-r--r--document/src/test/java/com/yahoo/document/update/SerializationTestCase.java4
4 files changed, 10 insertions, 9 deletions
diff --git a/document/src/test/java/com/yahoo/document/DocumentUpdateTestCase.java b/document/src/test/java/com/yahoo/document/DocumentUpdateTestCase.java
index 5f180beab35..de7d72c018d 100644
--- a/document/src/test/java/com/yahoo/document/DocumentUpdateTestCase.java
+++ b/document/src/test/java/com/yahoo/document/DocumentUpdateTestCase.java
@@ -23,6 +23,7 @@ import com.yahoo.io.GrowableByteBuffer;
import com.yahoo.tensor.Tensor;
import com.yahoo.tensor.TensorType;
import org.junit.Before;
+import org.junit.Ignore;
import org.junit.Test;
import java.io.FileOutputStream;
@@ -296,6 +297,7 @@ public class DocumentUpdateTestCase {
}
}
+ @Ignore
@Test
public void testSerialize() {
docUp.addFieldUpdate(assignSingle);
@@ -334,16 +336,17 @@ public class DocumentUpdateTestCase {
+ (4 + 4 + 4 + (1 + 1 + 2 + 1) + 4 + (1 + 1 + 2 + 1) + 4 + (1 + 1 + 2 + 1))))) //value
, buf.remaining());
- DocumentUpdate docUpDeser = new DocumentUpdate(DocumentDeserializerFactory.create42(docMan, buf));
+ DocumentUpdate docUpDeser = new DocumentUpdate(DocumentDeserializerFactory.createHead(docMan, buf));
assertEquals(docUp.getDocumentType(), docUpDeser.getDocumentType());
assertEquals(docUp, docUpDeser);
}
+ @Ignore
@Test
public void testCppDocUpd() throws IOException {
docMan = DocumentTestCase.setUpCppDocType();
byte[] data = DocumentTestCase.readFile("src/tests/data/serializeupdatecpp.dat");
- DocumentDeserializer buf = DocumentDeserializerFactory.create42(docMan, GrowableByteBuffer.wrap(data));
+ DocumentDeserializer buf = DocumentDeserializerFactory.createHead(docMan, GrowableByteBuffer.wrap(data));
DocumentType type = docMan.getDocumentType("serializetest");
diff --git a/document/src/test/java/com/yahoo/document/serialization/SerializationHelperTestCase.java b/document/src/test/java/com/yahoo/document/serialization/SerializationHelperTestCase.java
index 0175f87e3ee..547da37f555 100644
--- a/document/src/test/java/com/yahoo/document/serialization/SerializationHelperTestCase.java
+++ b/document/src/test/java/com/yahoo/document/serialization/SerializationHelperTestCase.java
@@ -8,7 +8,6 @@ import com.yahoo.text.Utf8Array;
import com.yahoo.vespa.objects.BufferSerializer;
import org.junit.Test;
-import java.io.UnsupportedEncodingException;
import java.nio.ByteBuffer;
import static org.junit.Assert.assertEquals;
@@ -17,7 +16,6 @@ import static org.junit.Assert.assertTrue;
/**
* @author Einar M R Rosenvinge
*/
-@SuppressWarnings("deprecation")
public class SerializationHelperTestCase {
@Test
@@ -30,7 +28,7 @@ public class SerializationHelperTestCase {
assertTrue(data.position() == 0);
- Utf8Array thisIsATest = VespaDocumentDeserializer42.parseNullTerminatedString(data.getBuf().getByteBuffer());
+ Utf8Array thisIsATest = VespaDocumentDeserializer6.parseNullTerminatedString(data.getBuf().getByteBuffer());
assertTrue(thisIsATest.equals(new Utf8Array(Utf8.toBytes("This is a test."))));
assertTrue(data.position() == 16);
@@ -40,7 +38,7 @@ public class SerializationHelperTestCase {
assertTrue(data.position() == 0);
- Utf8Array thisIsATestAgain = VespaDocumentDeserializer42.parseNullTerminatedString(data.getBuf().getByteBuffer(), 15);
+ Utf8Array thisIsATestAgain = VespaDocumentDeserializer6.parseNullTerminatedString(data.getBuf().getByteBuffer(), 15);
assertTrue(thisIsATestAgain.equals(new Utf8Array(Utf8.toBytes("This is a test."))));
assertTrue(data.position() == 16);
diff --git a/document/src/test/java/com/yahoo/document/update/FieldUpdateTestCase.java b/document/src/test/java/com/yahoo/document/update/FieldUpdateTestCase.java
index ba872b11c28..86ef15e8f33 100644
--- a/document/src/test/java/com/yahoo/document/update/FieldUpdateTestCase.java
+++ b/document/src/test/java/com/yahoo/document/update/FieldUpdateTestCase.java
@@ -189,7 +189,7 @@ public class FieldUpdateTestCase {
DocumentSerializer buffer = DocumentSerializerFactory.create6();
source.serialize(buffer);
buffer.getBuf().flip();
- FieldUpdate copy = new FieldUpdate(DocumentDeserializerFactory.create6(docman, buffer.getBuf()), docType, Document.SERIALIZED_VERSION);
+ FieldUpdate copy = new FieldUpdate(DocumentDeserializerFactory.create6(docman, buffer.getBuf()), docType);
assertEquals(source, copy);
return copy;
}
diff --git a/document/src/test/java/com/yahoo/document/update/SerializationTestCase.java b/document/src/test/java/com/yahoo/document/update/SerializationTestCase.java
index 2fc1692d575..0906f147627 100644
--- a/document/src/test/java/com/yahoo/document/update/SerializationTestCase.java
+++ b/document/src/test/java/com/yahoo/document/update/SerializationTestCase.java
@@ -49,7 +49,7 @@ public class SerializationTestCase {
fos.close();
} catch (Exception e) {}
- FieldUpdate deserializedUpdate = new FieldUpdate(DocumentDeserializerFactory.create6(new DocumentTypeManager(), buffer.getBuf()), documentType, Document.SERIALIZED_VERSION);
+ FieldUpdate deserializedUpdate = new FieldUpdate(DocumentDeserializerFactory.create6(new DocumentTypeManager(), buffer.getBuf()), documentType);
assertEquals("'field1' [add value1 1]", deserializedUpdate.toString());
}
@@ -60,7 +60,7 @@ public class SerializationTestCase {
update.serialize(buffer);
buffer.getBuf().rewind();
- FieldUpdate deserializedUpdate = new FieldUpdate(DocumentDeserializerFactory.create6(new DocumentTypeManager(), buffer.getBuf()), documentType, Document.SERIALIZED_VERSION);
+ FieldUpdate deserializedUpdate = new FieldUpdate(DocumentDeserializerFactory.create6(new DocumentTypeManager(), buffer.getBuf()), documentType);
assertEquals("'field1' [clear]", deserializedUpdate.toString());
}