Change to using xUnit for all unit tests, and fetch that via NuGet.
This includes fetching the VS unit test runner package, so that tests can be run from Visual Studio's Test Explorer.
This commit is contained in:
parent
ce97e68682
commit
c56475088d
55 changed files with 3147 additions and 3613 deletions
3
.gitignore
vendored
3
.gitignore
vendored
|
@ -79,3 +79,6 @@ javanano/target
|
|||
vsprojects/Debug
|
||||
vsprojects/Release
|
||||
|
||||
# NuGet packages: we want the repository configuration, but not the
|
||||
# packages themselves.
|
||||
/csharp/src/packages/*/
|
||||
|
|
|
@ -1,54 +0,0 @@
|
|||
|
||||
using System;
|
||||
#if CLIENTPROFILE
|
||||
namespace Microsoft.VisualStudio.TestTools.UnitTesting
|
||||
{
|
||||
[AttributeUsage(AttributeTargets.Class, Inherited = true, AllowMultiple = false)]
|
||||
public sealed class TestClassAttribute : NUnit.Framework.TestFixtureAttribute
|
||||
{
|
||||
}
|
||||
|
||||
[AttributeUsage(AttributeTargets.Method, Inherited = true, AllowMultiple = false)]
|
||||
public sealed class TestMethodAttribute : NUnit.Framework.TestAttribute
|
||||
{
|
||||
}
|
||||
|
||||
[AttributeUsage(AttributeTargets.Method, Inherited = true, AllowMultiple = false)]
|
||||
public sealed class TestInitializeAttribute : NUnit.Framework.SetUpAttribute
|
||||
{
|
||||
}
|
||||
|
||||
[AttributeUsage(AttributeTargets.Method, Inherited = true, AllowMultiple = false)]
|
||||
public sealed class IgnoreAttribute : NUnit.Framework.IgnoreAttribute
|
||||
{
|
||||
}
|
||||
|
||||
[AttributeUsage(AttributeTargets.Method, Inherited = true, AllowMultiple = false)]
|
||||
public sealed class ExpectedExceptionAttribute : NUnit.Framework.ExpectedExceptionAttribute
|
||||
{
|
||||
public ExpectedExceptionAttribute(Type type) : base(type)
|
||||
{ }
|
||||
}
|
||||
|
||||
public class Assert : NUnit.Framework.Assert
|
||||
{
|
||||
[Obsolete("Do not use AreEqual on Byte[], use TestUtil.AssertBytesEqual(,)")]
|
||||
public static void AreEqual(byte[] b1, byte[] b2)
|
||||
{
|
||||
NUnit.Framework.Assert.AreEqual(b1, b2);
|
||||
}
|
||||
|
||||
[Obsolete("No not use assert with miss-matched types.")]
|
||||
public static new void AreEqual(object b1, object b2)
|
||||
{
|
||||
NUnit.Framework.Assert.AreEqual(b1, b2);
|
||||
}
|
||||
|
||||
//Allowed if the types match
|
||||
public static void AreEqual<T>(T b1, T b2)
|
||||
{
|
||||
NUnit.Framework.Assert.AreEqual(b1, b2);
|
||||
}
|
||||
}
|
||||
}
|
||||
#endif
|
|
@ -1,18 +0,0 @@
|
|||
<?xml version="1.0" encoding="Windows-1252"?>
|
||||
<configuration>
|
||||
|
||||
<startup>
|
||||
<requiredRuntime version="v2.0.50727" />
|
||||
</startup>
|
||||
|
||||
<runtime>
|
||||
<!-- We need this so test exceptions don't crash NUnit -->
|
||||
<legacyUnhandledExceptionPolicy enabled="1" />
|
||||
|
||||
<!-- Look for addins in the addins directory for now -->
|
||||
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
||||
<probing privatePath="lib;addins"/>
|
||||
</assemblyBinding>
|
||||
</runtime>
|
||||
|
||||
</configuration>
|
|
@ -1,18 +0,0 @@
|
|||
<?xml version="1.0" encoding="Windows-1252"?>
|
||||
<configuration>
|
||||
|
||||
<startup>
|
||||
<requiredRuntime version="v2.0.50727" />
|
||||
</startup>
|
||||
|
||||
<runtime>
|
||||
<!-- We need this so test exceptions don't crash NUnit -->
|
||||
<legacyUnhandledExceptionPolicy enabled="1" />
|
||||
|
||||
<!-- Look for addins in the addins directory for now -->
|
||||
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
||||
<probing privatePath="lib;addins"/>
|
||||
</assemblyBinding>
|
||||
</runtime>
|
||||
|
||||
</configuration>
|
|
@ -1,18 +0,0 @@
|
|||
<?xml version="1.0" encoding="Windows-1252"?>
|
||||
<configuration>
|
||||
|
||||
<startup useLegacyV2RuntimeActivationPolicy="true">
|
||||
<requiredRuntime version="v4.0.30319" safemode="true"/>
|
||||
</startup>
|
||||
|
||||
<runtime>
|
||||
<!-- We need this so test exceptions don't crash NUnit -->
|
||||
<legacyUnhandledExceptionPolicy enabled="1" />
|
||||
|
||||
<!-- Look for addins in the addins directory for now -->
|
||||
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
||||
<probing privatePath="lib;addins"/>
|
||||
</assemblyBinding>
|
||||
</runtime>
|
||||
|
||||
</configuration>
|
|
@ -38,15 +38,14 @@ using System;
|
|||
using System.Collections.Generic;
|
||||
using System.IO;
|
||||
using Google.ProtocolBuffers.Descriptors;
|
||||
using Microsoft.VisualStudio.TestTools.UnitTesting;
|
||||
using Google.ProtocolBuffers.TestProtos;
|
||||
using Xunit;
|
||||
|
||||
namespace Google.ProtocolBuffers
|
||||
{
|
||||
[TestClass]
|
||||
public class AbstractMessageTest
|
||||
{
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void Clear()
|
||||
{
|
||||
AbstractMessageWrapper message =
|
||||
|
@ -54,7 +53,7 @@ namespace Google.ProtocolBuffers
|
|||
TestUtil.AssertClear((TestAllTypes) message.WrappedMessage);
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void Copy()
|
||||
{
|
||||
AbstractMessageWrapper message =
|
||||
|
@ -62,31 +61,31 @@ namespace Google.ProtocolBuffers
|
|||
TestUtil.AssertAllFieldsSet((TestAllTypes) message.WrappedMessage);
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void CreateAndBuild()
|
||||
{
|
||||
TestAllTypes.CreateBuilder()
|
||||
.Build();
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void SerializedSize()
|
||||
{
|
||||
TestAllTypes message = TestUtil.GetAllSet();
|
||||
IMessage abstractMessage = new AbstractMessageWrapper(TestUtil.GetAllSet());
|
||||
|
||||
Assert.AreEqual(message.SerializedSize, abstractMessage.SerializedSize);
|
||||
Assert.Equal(message.SerializedSize, abstractMessage.SerializedSize);
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void Serialization()
|
||||
{
|
||||
IMessage abstractMessage = new AbstractMessageWrapper(TestUtil.GetAllSet());
|
||||
TestUtil.AssertAllFieldsSet(TestAllTypes.ParseFrom(abstractMessage.ToByteString()));
|
||||
Assert.AreEqual(TestUtil.GetAllSet().ToByteString(), abstractMessage.ToByteString());
|
||||
Assert.Equal(TestUtil.GetAllSet().ToByteString(), abstractMessage.ToByteString());
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void Parsing()
|
||||
{
|
||||
IBuilder builder = new AbstractMessageWrapper.Builder(TestAllTypes.CreateBuilder());
|
||||
|
@ -95,15 +94,15 @@ namespace Google.ProtocolBuffers
|
|||
TestUtil.AssertAllFieldsSet((TestAllTypes) message.WrappedMessage);
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void PackedSerialization()
|
||||
{
|
||||
IMessage abstractMessage = new AbstractMessageWrapper(TestUtil.GetPackedSet());
|
||||
TestUtil.AssertPackedFieldsSet(TestPackedTypes.ParseFrom(abstractMessage.ToByteString()));
|
||||
Assert.AreEqual(TestUtil.GetPackedSet().ToByteString(), abstractMessage.ToByteString());
|
||||
Assert.Equal(TestUtil.GetPackedSet().ToByteString(), abstractMessage.ToByteString());
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void PackedParsing()
|
||||
{
|
||||
AbstractMessageWrapper.Builder builder = new AbstractMessageWrapper.Builder(TestPackedTypes.CreateBuilder());
|
||||
|
@ -111,7 +110,7 @@ namespace Google.ProtocolBuffers
|
|||
TestUtil.AssertPackedFieldsSet((TestPackedTypes)message.WrappedMessage);
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void UnpackedParsingOfPackedInput()
|
||||
{
|
||||
byte[] bytes = TestUtil.GetPackedSet().ToByteArray();
|
||||
|
@ -119,7 +118,7 @@ namespace Google.ProtocolBuffers
|
|||
TestUtil.AssertUnpackedFieldsSet(message);
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void PackedParsingOfUnpackedInput()
|
||||
{
|
||||
byte[] bytes = TestUnpackedTypes.ParseFrom(TestUtil.GetPackedSet().ToByteArray()).ToByteArray();
|
||||
|
@ -127,7 +126,7 @@ namespace Google.ProtocolBuffers
|
|||
TestUtil.AssertPackedFieldsSet(message);
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void UnpackedParsingOfPackedInputExtensions()
|
||||
{
|
||||
byte[] bytes = TestUtil.GetPackedSet().ToByteArray();
|
||||
|
@ -138,7 +137,7 @@ namespace Google.ProtocolBuffers
|
|||
TestUtil.AssertUnpackedExtensionsSet(message);
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void PackedParsingOfUnpackedInputExtensions()
|
||||
{
|
||||
byte[] bytes = TestUnpackedTypes.ParseFrom(TestUtil.GetPackedSet().ToByteArray()).ToByteArray();
|
||||
|
@ -148,13 +147,13 @@ namespace Google.ProtocolBuffers
|
|||
TestUtil.AssertPackedExtensionsSet(message);
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void OptimizedForSize()
|
||||
{
|
||||
// We're mostly only Checking that this class was compiled successfully.
|
||||
TestOptimizedForSize message = TestOptimizedForSize.CreateBuilder().SetI(1).Build();
|
||||
message = TestOptimizedForSize.ParseFrom(message.ToByteString());
|
||||
Assert.AreEqual(2, message.SerializedSize);
|
||||
Assert.Equal(2, message.SerializedSize);
|
||||
}
|
||||
|
||||
// -----------------------------------------------------------------
|
||||
|
@ -165,40 +164,40 @@ namespace Google.ProtocolBuffers
|
|||
private static readonly TestRequired TestRequiredInitialized =
|
||||
TestRequired.CreateBuilder().SetA(1).SetB(2).SetC(3).Build();
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void IsInitialized()
|
||||
{
|
||||
TestRequired.Builder builder = TestRequired.CreateBuilder();
|
||||
AbstractMessageWrapper.Builder abstractBuilder = new AbstractMessageWrapper.Builder(builder);
|
||||
|
||||
Assert.IsFalse(abstractBuilder.IsInitialized);
|
||||
Assert.False(abstractBuilder.IsInitialized);
|
||||
builder.A = 1;
|
||||
Assert.IsFalse(abstractBuilder.IsInitialized);
|
||||
Assert.False(abstractBuilder.IsInitialized);
|
||||
builder.B = 1;
|
||||
Assert.IsFalse(abstractBuilder.IsInitialized);
|
||||
Assert.False(abstractBuilder.IsInitialized);
|
||||
builder.C = 1;
|
||||
Assert.IsTrue(abstractBuilder.IsInitialized);
|
||||
Assert.True(abstractBuilder.IsInitialized);
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void ForeignIsInitialized()
|
||||
{
|
||||
TestRequiredForeign.Builder builder = TestRequiredForeign.CreateBuilder();
|
||||
AbstractMessageWrapper.Builder abstractBuilder = new AbstractMessageWrapper.Builder(builder);
|
||||
|
||||
Assert.IsTrue(abstractBuilder.IsInitialized);
|
||||
Assert.True(abstractBuilder.IsInitialized);
|
||||
|
||||
builder.SetOptionalMessage(TestRequiredUninitialized);
|
||||
Assert.IsFalse(abstractBuilder.IsInitialized);
|
||||
Assert.False(abstractBuilder.IsInitialized);
|
||||
|
||||
builder.SetOptionalMessage(TestRequiredInitialized);
|
||||
Assert.IsTrue(abstractBuilder.IsInitialized);
|
||||
Assert.True(abstractBuilder.IsInitialized);
|
||||
|
||||
builder.AddRepeatedMessage(TestRequiredUninitialized);
|
||||
Assert.IsFalse(abstractBuilder.IsInitialized);
|
||||
Assert.False(abstractBuilder.IsInitialized);
|
||||
|
||||
builder.SetRepeatedMessage(0, TestRequiredInitialized);
|
||||
Assert.IsTrue(abstractBuilder.IsInitialized);
|
||||
Assert.True(abstractBuilder.IsInitialized);
|
||||
}
|
||||
|
||||
// -----------------------------------------------------------------
|
||||
|
@ -227,7 +226,7 @@ namespace Google.ProtocolBuffers
|
|||
"repeated_string: \"qux\"\n" +
|
||||
"repeated_string: \"bar\"\n";
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void MergeFrom()
|
||||
{
|
||||
AbstractMessageWrapper result = (AbstractMessageWrapper)
|
||||
|
@ -235,13 +234,13 @@ namespace Google.ProtocolBuffers
|
|||
.MergeFrom(MergeSource)
|
||||
.Build();
|
||||
|
||||
Assert.AreEqual(MergeResultText, result.ToString());
|
||||
Assert.Equal(MergeResultText, result.ToString());
|
||||
}
|
||||
|
||||
// -----------------------------------------------------------------
|
||||
// Tests for equals and hashCode
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void EqualsAndHashCode()
|
||||
{
|
||||
TestAllTypes a = TestUtil.GetAllSet();
|
||||
|
@ -297,7 +296,7 @@ namespace Google.ProtocolBuffers
|
|||
private static void CheckEqualsIsConsistent(IMessage message)
|
||||
{
|
||||
// Object should be equal to itself.
|
||||
Assert.AreEqual(message, message);
|
||||
Assert.Equal(message, message);
|
||||
|
||||
// Object should be equal to a dynamic copy of itself.
|
||||
DynamicMessage dynamic = DynamicMessage.CreateBuilder(message).Build();
|
||||
|
@ -309,9 +308,11 @@ namespace Google.ProtocolBuffers
|
|||
/// </summary>
|
||||
private static void CheckEqualsIsConsistent(IMessage message1, IMessage message2)
|
||||
{
|
||||
Assert.AreEqual(message1, message2);
|
||||
Assert.AreEqual(message2, message1);
|
||||
Assert.AreEqual(message2.GetHashCode(), message1.GetHashCode());
|
||||
// Not using Assert.AreEqual as that checks for type equality, which isn't
|
||||
// what we want bearing in mind the dynamic message checks.
|
||||
Assert.True(message1.Equals(message2));
|
||||
Assert.True(message2.Equals(message1));
|
||||
Assert.Equal(message2.GetHashCode(), message1.GetHashCode());
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
|
@ -325,10 +326,10 @@ namespace Google.ProtocolBuffers
|
|||
private static void CheckNotEqual(IMessage m1, IMessage m2)
|
||||
{
|
||||
String equalsError = string.Format("{0} should not be equal to {1}", m1, m2);
|
||||
Assert.IsFalse(m1.Equals(m2), equalsError);
|
||||
Assert.IsFalse(m2.Equals(m1), equalsError);
|
||||
Assert.False(m1.Equals(m2), equalsError);
|
||||
Assert.False(m2.Equals(m1), equalsError);
|
||||
|
||||
Assert.IsFalse(m1.GetHashCode() == m2.GetHashCode(),
|
||||
Assert.False(m1.GetHashCode() == m2.GetHashCode(),
|
||||
string.Format("{0} should have a different hash code from {1}", m1, m2));
|
||||
}
|
||||
|
||||
|
|
|
@ -36,113 +36,112 @@
|
|||
|
||||
using System;
|
||||
using System.Text;
|
||||
using Microsoft.VisualStudio.TestTools.UnitTesting;
|
||||
using Xunit;
|
||||
|
||||
namespace Google.ProtocolBuffers
|
||||
{
|
||||
[TestClass]
|
||||
public class ByteStringTest
|
||||
{
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void EmptyByteStringHasZeroSize()
|
||||
{
|
||||
Assert.AreEqual(0, ByteString.Empty.Length);
|
||||
Assert.Equal(0, ByteString.Empty.Length);
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void CopyFromStringWithExplicitEncoding()
|
||||
{
|
||||
ByteString bs = ByteString.CopyFrom("AB", Encoding.Unicode);
|
||||
Assert.AreEqual(4, bs.Length);
|
||||
Assert.AreEqual(65, bs[0]);
|
||||
Assert.AreEqual(0, bs[1]);
|
||||
Assert.AreEqual(66, bs[2]);
|
||||
Assert.AreEqual(0, bs[3]);
|
||||
Assert.Equal(4, bs.Length);
|
||||
Assert.Equal(65, bs[0]);
|
||||
Assert.Equal(0, bs[1]);
|
||||
Assert.Equal(66, bs[2]);
|
||||
Assert.Equal(0, bs[3]);
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void IsEmptyWhenEmpty()
|
||||
{
|
||||
Assert.IsTrue(ByteString.CopyFromUtf8("").IsEmpty);
|
||||
Assert.True(ByteString.CopyFromUtf8("").IsEmpty);
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void IsEmptyWhenNotEmpty()
|
||||
{
|
||||
Assert.IsFalse(ByteString.CopyFromUtf8("X").IsEmpty);
|
||||
Assert.False(ByteString.CopyFromUtf8("X").IsEmpty);
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void CopyFromByteArrayCopiesContents()
|
||||
{
|
||||
byte[] data = new byte[1];
|
||||
data[0] = 10;
|
||||
ByteString bs = ByteString.CopyFrom(data);
|
||||
Assert.AreEqual(10, bs[0]);
|
||||
Assert.Equal(10, bs[0]);
|
||||
data[0] = 5;
|
||||
Assert.AreEqual(10, bs[0]);
|
||||
Assert.Equal(10, bs[0]);
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void ToByteArrayCopiesContents()
|
||||
{
|
||||
ByteString bs = ByteString.CopyFromUtf8("Hello");
|
||||
byte[] data = bs.ToByteArray();
|
||||
Assert.AreEqual((byte)'H', data[0]);
|
||||
Assert.AreEqual((byte)'H', bs[0]);
|
||||
Assert.Equal((byte)'H', data[0]);
|
||||
Assert.Equal((byte)'H', bs[0]);
|
||||
data[0] = 0;
|
||||
Assert.AreEqual(0, data[0]);
|
||||
Assert.AreEqual((byte)'H', bs[0]);
|
||||
Assert.Equal(0, data[0]);
|
||||
Assert.Equal((byte)'H', bs[0]);
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void CopyFromUtf8UsesUtf8()
|
||||
{
|
||||
ByteString bs = ByteString.CopyFromUtf8("\u20ac");
|
||||
Assert.AreEqual(3, bs.Length);
|
||||
Assert.AreEqual(0xe2, bs[0]);
|
||||
Assert.AreEqual(0x82, bs[1]);
|
||||
Assert.AreEqual(0xac, bs[2]);
|
||||
Assert.Equal(3, bs.Length);
|
||||
Assert.Equal(0xe2, bs[0]);
|
||||
Assert.Equal(0x82, bs[1]);
|
||||
Assert.Equal(0xac, bs[2]);
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void CopyFromPortion()
|
||||
{
|
||||
byte[] data = new byte[] {0, 1, 2, 3, 4, 5, 6};
|
||||
ByteString bs = ByteString.CopyFrom(data, 2, 3);
|
||||
Assert.AreEqual(3, bs.Length);
|
||||
Assert.AreEqual(2, bs[0]);
|
||||
Assert.AreEqual(3, bs[1]);
|
||||
Assert.Equal(3, bs.Length);
|
||||
Assert.Equal(2, bs[0]);
|
||||
Assert.Equal(3, bs[1]);
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void ToStringUtf8()
|
||||
{
|
||||
ByteString bs = ByteString.CopyFromUtf8("\u20ac");
|
||||
Assert.AreEqual("\u20ac", bs.ToStringUtf8());
|
||||
Assert.Equal("\u20ac", bs.ToStringUtf8());
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void ToStringWithExplicitEncoding()
|
||||
{
|
||||
ByteString bs = ByteString.CopyFrom("\u20ac", Encoding.Unicode);
|
||||
Assert.AreEqual("\u20ac", bs.ToString(Encoding.Unicode));
|
||||
Assert.Equal("\u20ac", bs.ToString(Encoding.Unicode));
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void FromBase64_WithText()
|
||||
{
|
||||
byte[] data = new byte[] {0, 1, 2, 3, 4, 5, 6};
|
||||
string base64 = Convert.ToBase64String(data);
|
||||
ByteString bs = ByteString.FromBase64(base64);
|
||||
TestUtil.AssertBytesEqual(data, bs.ToByteArray());
|
||||
Assert.Equal(data, bs.ToByteArray());
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void FromBase64_Empty()
|
||||
{
|
||||
// Optimization which also fixes issue 61.
|
||||
Assert.AreSame(ByteString.Empty, ByteString.FromBase64(""));
|
||||
Assert.Same(ByteString.Empty, ByteString.FromBase64(""));
|
||||
}
|
||||
}
|
||||
}
|
|
@ -39,12 +39,10 @@ using System.Collections.Generic;
|
|||
using System.IO;
|
||||
using Google.ProtocolBuffers.Descriptors;
|
||||
using Google.ProtocolBuffers.TestProtos;
|
||||
using Microsoft.VisualStudio.TestTools.UnitTesting;
|
||||
using System.Diagnostics;
|
||||
using Xunit;
|
||||
|
||||
namespace Google.ProtocolBuffers
|
||||
{
|
||||
[TestClass]
|
||||
public class CodedInputStreamTest
|
||||
{
|
||||
/// <summary>
|
||||
|
@ -68,21 +66,21 @@ namespace Google.ProtocolBuffers
|
|||
private static void AssertReadVarint(byte[] data, ulong value)
|
||||
{
|
||||
CodedInputStream input = CodedInputStream.CreateInstance(data);
|
||||
Assert.AreEqual((uint) value, input.ReadRawVarint32());
|
||||
Assert.Equal((uint) value, input.ReadRawVarint32());
|
||||
|
||||
input = CodedInputStream.CreateInstance(data);
|
||||
Assert.AreEqual(value, input.ReadRawVarint64());
|
||||
Assert.IsTrue(input.IsAtEnd);
|
||||
Assert.Equal(value, input.ReadRawVarint64());
|
||||
Assert.True(input.IsAtEnd);
|
||||
|
||||
// Try different block sizes.
|
||||
for (int bufferSize = 1; bufferSize <= 16; bufferSize *= 2)
|
||||
{
|
||||
input = CodedInputStream.CreateInstance(new SmallBlockInputStream(data, bufferSize));
|
||||
Assert.AreEqual((uint) value, input.ReadRawVarint32());
|
||||
Assert.Equal((uint) value, input.ReadRawVarint32());
|
||||
|
||||
input = CodedInputStream.CreateInstance(new SmallBlockInputStream(data, bufferSize));
|
||||
Assert.AreEqual(value, input.ReadRawVarint64());
|
||||
Assert.IsTrue(input.IsAtEnd);
|
||||
Assert.Equal(value, input.ReadRawVarint64());
|
||||
Assert.True(input.IsAtEnd);
|
||||
}
|
||||
|
||||
// Try reading directly from a MemoryStream. We want to verify that it
|
||||
|
@ -92,8 +90,8 @@ namespace Google.ProtocolBuffers
|
|||
memoryStream.Write(data, 0, data.Length);
|
||||
memoryStream.WriteByte(0);
|
||||
memoryStream.Position = 0;
|
||||
Assert.AreEqual((uint) value, CodedInputStream.ReadRawVarint32(memoryStream));
|
||||
Assert.AreEqual(data.Length, memoryStream.Position);
|
||||
Assert.Equal((uint) value, CodedInputStream.ReadRawVarint32(memoryStream));
|
||||
Assert.Equal(data.Length, memoryStream.Position);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
|
@ -104,40 +102,19 @@ namespace Google.ProtocolBuffers
|
|||
private static void AssertReadVarintFailure(InvalidProtocolBufferException expected, byte[] data)
|
||||
{
|
||||
CodedInputStream input = CodedInputStream.CreateInstance(data);
|
||||
try
|
||||
{
|
||||
input.ReadRawVarint32();
|
||||
Assert.Fail("Should have thrown an exception.");
|
||||
}
|
||||
catch (InvalidProtocolBufferException e)
|
||||
{
|
||||
Assert.AreEqual(expected.Message, e.Message);
|
||||
}
|
||||
var exception = Assert.Throws<InvalidProtocolBufferException>(() => input.ReadRawVarint32());
|
||||
Assert.Equal(expected.Message, exception.Message);
|
||||
|
||||
input = CodedInputStream.CreateInstance(data);
|
||||
try
|
||||
{
|
||||
input.ReadRawVarint64();
|
||||
Assert.Fail("Should have thrown an exception.");
|
||||
}
|
||||
catch (InvalidProtocolBufferException e)
|
||||
{
|
||||
Assert.AreEqual(expected.Message, e.Message);
|
||||
}
|
||||
exception = Assert.Throws<InvalidProtocolBufferException>(() => input.ReadRawVarint64());
|
||||
Assert.Equal(expected.Message, exception.Message);
|
||||
|
||||
// Make sure we get the same error when reading directly from a Stream.
|
||||
try
|
||||
{
|
||||
CodedInputStream.ReadRawVarint32(new MemoryStream(data));
|
||||
Assert.Fail("Should have thrown an exception.");
|
||||
}
|
||||
catch (InvalidProtocolBufferException e)
|
||||
{
|
||||
Assert.AreEqual(expected.Message, e.Message);
|
||||
}
|
||||
exception = Assert.Throws<InvalidProtocolBufferException>(() => CodedInputStream.ReadRawVarint32(new MemoryStream(data)));
|
||||
Assert.Equal(expected.Message, exception.Message);
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void ReadVarint()
|
||||
{
|
||||
AssertReadVarint(Bytes(0x00), 0);
|
||||
|
@ -182,16 +159,16 @@ namespace Google.ProtocolBuffers
|
|||
private static void AssertReadLittleEndian32(byte[] data, uint value)
|
||||
{
|
||||
CodedInputStream input = CodedInputStream.CreateInstance(data);
|
||||
Assert.AreEqual(value, input.ReadRawLittleEndian32());
|
||||
Assert.IsTrue(input.IsAtEnd);
|
||||
Assert.Equal(value, input.ReadRawLittleEndian32());
|
||||
Assert.True(input.IsAtEnd);
|
||||
|
||||
// Try different block sizes.
|
||||
for (int blockSize = 1; blockSize <= 16; blockSize *= 2)
|
||||
{
|
||||
input = CodedInputStream.CreateInstance(
|
||||
new SmallBlockInputStream(data, blockSize));
|
||||
Assert.AreEqual(value, input.ReadRawLittleEndian32());
|
||||
Assert.IsTrue(input.IsAtEnd);
|
||||
Assert.Equal(value, input.ReadRawLittleEndian32());
|
||||
Assert.True(input.IsAtEnd);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -202,20 +179,20 @@ namespace Google.ProtocolBuffers
|
|||
private static void AssertReadLittleEndian64(byte[] data, ulong value)
|
||||
{
|
||||
CodedInputStream input = CodedInputStream.CreateInstance(data);
|
||||
Assert.AreEqual(value, input.ReadRawLittleEndian64());
|
||||
Assert.IsTrue(input.IsAtEnd);
|
||||
Assert.Equal(value, input.ReadRawLittleEndian64());
|
||||
Assert.True(input.IsAtEnd);
|
||||
|
||||
// Try different block sizes.
|
||||
for (int blockSize = 1; blockSize <= 16; blockSize *= 2)
|
||||
{
|
||||
input = CodedInputStream.CreateInstance(
|
||||
new SmallBlockInputStream(data, blockSize));
|
||||
Assert.AreEqual(value, input.ReadRawLittleEndian64());
|
||||
Assert.IsTrue(input.IsAtEnd);
|
||||
Assert.Equal(value, input.ReadRawLittleEndian64());
|
||||
Assert.True(input.IsAtEnd);
|
||||
}
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void ReadLittleEndian()
|
||||
{
|
||||
AssertReadLittleEndian32(Bytes(0x78, 0x56, 0x34, 0x12), 0x12345678);
|
||||
|
@ -227,41 +204,41 @@ namespace Google.ProtocolBuffers
|
|||
Bytes(0x78, 0x56, 0x34, 0x12, 0xf0, 0xde, 0xbc, 0x9a), 0x9abcdef012345678UL);
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void DecodeZigZag32()
|
||||
{
|
||||
Assert.AreEqual(0, CodedInputStream.DecodeZigZag32(0));
|
||||
Assert.AreEqual(-1, CodedInputStream.DecodeZigZag32(1));
|
||||
Assert.AreEqual(1, CodedInputStream.DecodeZigZag32(2));
|
||||
Assert.AreEqual(-2, CodedInputStream.DecodeZigZag32(3));
|
||||
Assert.AreEqual(0x3FFFFFFF, CodedInputStream.DecodeZigZag32(0x7FFFFFFE));
|
||||
Assert.AreEqual(unchecked((int) 0xC0000000), CodedInputStream.DecodeZigZag32(0x7FFFFFFF));
|
||||
Assert.AreEqual(0x7FFFFFFF, CodedInputStream.DecodeZigZag32(0xFFFFFFFE));
|
||||
Assert.AreEqual(unchecked((int) 0x80000000), CodedInputStream.DecodeZigZag32(0xFFFFFFFF));
|
||||
Assert.Equal(0, CodedInputStream.DecodeZigZag32(0));
|
||||
Assert.Equal(-1, CodedInputStream.DecodeZigZag32(1));
|
||||
Assert.Equal(1, CodedInputStream.DecodeZigZag32(2));
|
||||
Assert.Equal(-2, CodedInputStream.DecodeZigZag32(3));
|
||||
Assert.Equal(0x3FFFFFFF, CodedInputStream.DecodeZigZag32(0x7FFFFFFE));
|
||||
Assert.Equal(unchecked((int) 0xC0000000), CodedInputStream.DecodeZigZag32(0x7FFFFFFF));
|
||||
Assert.Equal(0x7FFFFFFF, CodedInputStream.DecodeZigZag32(0xFFFFFFFE));
|
||||
Assert.Equal(unchecked((int) 0x80000000), CodedInputStream.DecodeZigZag32(0xFFFFFFFF));
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void DecodeZigZag64()
|
||||
{
|
||||
Assert.AreEqual(0, CodedInputStream.DecodeZigZag64(0));
|
||||
Assert.AreEqual(-1, CodedInputStream.DecodeZigZag64(1));
|
||||
Assert.AreEqual(1, CodedInputStream.DecodeZigZag64(2));
|
||||
Assert.AreEqual(-2, CodedInputStream.DecodeZigZag64(3));
|
||||
Assert.AreEqual(0x000000003FFFFFFFL, CodedInputStream.DecodeZigZag64(0x000000007FFFFFFEL));
|
||||
Assert.AreEqual(unchecked((long) 0xFFFFFFFFC0000000L), CodedInputStream.DecodeZigZag64(0x000000007FFFFFFFL));
|
||||
Assert.AreEqual(0x000000007FFFFFFFL, CodedInputStream.DecodeZigZag64(0x00000000FFFFFFFEL));
|
||||
Assert.AreEqual(unchecked((long) 0xFFFFFFFF80000000L), CodedInputStream.DecodeZigZag64(0x00000000FFFFFFFFL));
|
||||
Assert.AreEqual(0x7FFFFFFFFFFFFFFFL, CodedInputStream.DecodeZigZag64(0xFFFFFFFFFFFFFFFEL));
|
||||
Assert.AreEqual(unchecked((long) 0x8000000000000000L), CodedInputStream.DecodeZigZag64(0xFFFFFFFFFFFFFFFFL));
|
||||
Assert.Equal(0, CodedInputStream.DecodeZigZag64(0));
|
||||
Assert.Equal(-1, CodedInputStream.DecodeZigZag64(1));
|
||||
Assert.Equal(1, CodedInputStream.DecodeZigZag64(2));
|
||||
Assert.Equal(-2, CodedInputStream.DecodeZigZag64(3));
|
||||
Assert.Equal(0x000000003FFFFFFFL, CodedInputStream.DecodeZigZag64(0x000000007FFFFFFEL));
|
||||
Assert.Equal(unchecked((long) 0xFFFFFFFFC0000000L), CodedInputStream.DecodeZigZag64(0x000000007FFFFFFFL));
|
||||
Assert.Equal(0x000000007FFFFFFFL, CodedInputStream.DecodeZigZag64(0x00000000FFFFFFFEL));
|
||||
Assert.Equal(unchecked((long) 0xFFFFFFFF80000000L), CodedInputStream.DecodeZigZag64(0x00000000FFFFFFFFL));
|
||||
Assert.Equal(0x7FFFFFFFFFFFFFFFL, CodedInputStream.DecodeZigZag64(0xFFFFFFFFFFFFFFFEL));
|
||||
Assert.Equal(unchecked((long) 0x8000000000000000L), CodedInputStream.DecodeZigZag64(0xFFFFFFFFFFFFFFFFL));
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void ReadWholeMessage()
|
||||
{
|
||||
TestAllTypes message = TestUtil.GetAllSet();
|
||||
|
||||
byte[] rawBytes = message.ToByteArray();
|
||||
Assert.AreEqual(rawBytes.Length, message.SerializedSize);
|
||||
Assert.Equal(rawBytes.Length, message.SerializedSize);
|
||||
TestAllTypes message2 = TestAllTypes.ParseFrom(rawBytes);
|
||||
TestUtil.AssertAllFieldsSet(message2);
|
||||
|
||||
|
@ -273,7 +250,7 @@ namespace Google.ProtocolBuffers
|
|||
}
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void SkipWholeMessage()
|
||||
{
|
||||
TestAllTypes message = TestUtil.GetAllSet();
|
||||
|
@ -290,8 +267,8 @@ namespace Google.ProtocolBuffers
|
|||
while (input1.ReadTag(out tag, out name))
|
||||
{
|
||||
uint tag2;
|
||||
Assert.IsTrue(input2.ReadTag(out tag2, out name));
|
||||
Assert.AreEqual(tag, tag2);
|
||||
Assert.True(input2.ReadTag(out tag2, out name));
|
||||
Assert.Equal(tag, tag2);
|
||||
|
||||
unknownFields.MergeFieldFrom(tag, input1);
|
||||
input2.SkipField();
|
||||
|
@ -302,7 +279,7 @@ namespace Google.ProtocolBuffers
|
|||
/// Test that a bug in SkipRawBytes has been fixed: if the skip
|
||||
/// skips exactly up to a limit, this should bnot break things
|
||||
/// </summary>
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void SkipRawBytesBug()
|
||||
{
|
||||
byte[] rawBytes = new byte[] {1, 2};
|
||||
|
@ -311,7 +288,7 @@ namespace Google.ProtocolBuffers
|
|||
int limit = input.PushLimit(1);
|
||||
input.SkipRawBytes(1);
|
||||
input.PopLimit(limit);
|
||||
Assert.AreEqual(2, input.ReadRawByte());
|
||||
Assert.Equal(2, input.ReadRawByte());
|
||||
}
|
||||
|
||||
public void ReadHugeBlob()
|
||||
|
@ -334,7 +311,7 @@ namespace Google.ProtocolBuffers
|
|||
// reading.
|
||||
TestAllTypes message2 = TestAllTypes.ParseFrom(message.ToByteString().CreateCodedInput());
|
||||
|
||||
Assert.AreEqual(message.OptionalBytes, message2.OptionalBytes);
|
||||
Assert.Equal(message.OptionalBytes, message2.OptionalBytes);
|
||||
|
||||
// Make sure all the other fields were parsed correctly.
|
||||
TestAllTypes message3 = TestAllTypes.CreateBuilder(message2)
|
||||
|
@ -343,7 +320,7 @@ namespace Google.ProtocolBuffers
|
|||
TestUtil.AssertAllFieldsSet(message3);
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void ReadMaliciouslyLargeBlob()
|
||||
{
|
||||
MemoryStream ms = new MemoryStream();
|
||||
|
@ -359,19 +336,12 @@ namespace Google.ProtocolBuffers
|
|||
CodedInputStream input = CodedInputStream.CreateInstance(ms);
|
||||
uint testtag;
|
||||
string ignore;
|
||||
Assert.IsTrue(input.ReadTag(out testtag, out ignore));
|
||||
Assert.AreEqual(tag, testtag);
|
||||
Assert.True(input.ReadTag(out testtag, out ignore));
|
||||
Assert.Equal(tag, testtag);
|
||||
|
||||
try
|
||||
{
|
||||
ByteString bytes = null;
|
||||
input.ReadBytes(ref bytes);
|
||||
Assert.Fail("Should have thrown an exception!");
|
||||
}
|
||||
catch (InvalidProtocolBufferException)
|
||||
{
|
||||
// success.
|
||||
}
|
||||
ByteString bytes = null;
|
||||
// TODO(jonskeet): Should this be ArgumentNullException instead?
|
||||
Assert.Throws<InvalidProtocolBufferException>(() => input.ReadBytes(ref bytes));
|
||||
}
|
||||
|
||||
private static TestRecursiveMessage MakeRecursiveMessage(int depth)
|
||||
|
@ -391,17 +361,17 @@ namespace Google.ProtocolBuffers
|
|||
{
|
||||
if (depth == 0)
|
||||
{
|
||||
Assert.IsFalse(message.HasA);
|
||||
Assert.AreEqual(5, message.I);
|
||||
Assert.False(message.HasA);
|
||||
Assert.Equal(5, message.I);
|
||||
}
|
||||
else
|
||||
{
|
||||
Assert.IsTrue(message.HasA);
|
||||
Assert.True(message.HasA);
|
||||
AssertMessageDepth(message.A, depth - 1);
|
||||
}
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void MaliciousRecursion()
|
||||
{
|
||||
ByteString data64 = MakeRecursiveMessage(64).ToByteString();
|
||||
|
@ -409,30 +379,14 @@ namespace Google.ProtocolBuffers
|
|||
|
||||
AssertMessageDepth(TestRecursiveMessage.ParseFrom(data64), 64);
|
||||
|
||||
try
|
||||
{
|
||||
TestRecursiveMessage.ParseFrom(data65);
|
||||
Assert.Fail("Should have thrown an exception!");
|
||||
}
|
||||
catch (InvalidProtocolBufferException)
|
||||
{
|
||||
// success.
|
||||
}
|
||||
Assert.Throws<InvalidProtocolBufferException>(() => TestRecursiveMessage.ParseFrom(data65));
|
||||
|
||||
CodedInputStream input = data64.CreateCodedInput();
|
||||
input.SetRecursionLimit(8);
|
||||
try
|
||||
{
|
||||
TestRecursiveMessage.ParseFrom(input);
|
||||
Assert.Fail("Should have thrown an exception!");
|
||||
}
|
||||
catch (InvalidProtocolBufferException)
|
||||
{
|
||||
// success.
|
||||
}
|
||||
Assert.Throws<InvalidProtocolBufferException>(() => TestRecursiveMessage.ParseFrom(input));
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void SizeLimit()
|
||||
{
|
||||
// Have to use a Stream rather than ByteString.CreateCodedInput as SizeLimit doesn't
|
||||
|
@ -441,18 +395,10 @@ namespace Google.ProtocolBuffers
|
|||
CodedInputStream input = CodedInputStream.CreateInstance(ms);
|
||||
input.SetSizeLimit(16);
|
||||
|
||||
try
|
||||
{
|
||||
TestAllTypes.ParseFrom(input);
|
||||
Assert.Fail("Should have thrown an exception!");
|
||||
}
|
||||
catch (InvalidProtocolBufferException)
|
||||
{
|
||||
// success.
|
||||
}
|
||||
Assert.Throws<InvalidProtocolBufferException>(() => TestAllTypes.ParseFrom(input));
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void ResetSizeCounter()
|
||||
{
|
||||
CodedInputStream input = CodedInputStream.CreateInstance(
|
||||
|
@ -460,28 +406,12 @@ namespace Google.ProtocolBuffers
|
|||
input.SetSizeLimit(16);
|
||||
input.ReadRawBytes(16);
|
||||
|
||||
try
|
||||
{
|
||||
input.ReadRawByte();
|
||||
Assert.Fail("Should have thrown an exception!");
|
||||
}
|
||||
catch (InvalidProtocolBufferException)
|
||||
{
|
||||
// Success.
|
||||
}
|
||||
Assert.Throws<InvalidProtocolBufferException>(() => input.ReadRawByte());
|
||||
|
||||
input.ResetSizeCounter();
|
||||
input.ReadRawByte(); // No exception thrown.
|
||||
|
||||
try
|
||||
{
|
||||
input.ReadRawBytes(16); // Hits limit again.
|
||||
Assert.Fail("Should have thrown an exception!");
|
||||
}
|
||||
catch (InvalidProtocolBufferException)
|
||||
{
|
||||
// Success.
|
||||
}
|
||||
Assert.Throws<InvalidProtocolBufferException>(() => input.ReadRawBytes(16));
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
|
@ -489,7 +419,7 @@ namespace Google.ProtocolBuffers
|
|||
/// is thrown. Instead, the invalid bytes are replaced with the Unicode
|
||||
/// "replacement character" U+FFFD.
|
||||
/// </summary>
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void ReadInvalidUtf8()
|
||||
{
|
||||
MemoryStream ms = new MemoryStream();
|
||||
|
@ -507,11 +437,11 @@ namespace Google.ProtocolBuffers
|
|||
uint testtag;
|
||||
string ignored;
|
||||
|
||||
Assert.IsTrue(input.ReadTag(out testtag, out ignored));
|
||||
Assert.AreEqual(tag, testtag);
|
||||
Assert.True(input.ReadTag(out testtag, out ignored));
|
||||
Assert.Equal(tag, testtag);
|
||||
string text = null;
|
||||
input.ReadString(ref text);
|
||||
Assert.AreEqual('\ufffd', text[0]);
|
||||
Assert.Equal('\ufffd', text[0]);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
|
@ -537,7 +467,7 @@ namespace Google.ProtocolBuffers
|
|||
|
||||
enum TestNegEnum { None = 0, Value = -2 }
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void TestNegativeEnum()
|
||||
{
|
||||
byte[] bytes = new byte[10] { 0xFE, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0x01 };
|
||||
|
@ -545,12 +475,12 @@ namespace Google.ProtocolBuffers
|
|||
object unk;
|
||||
TestNegEnum val = TestNegEnum.None;
|
||||
|
||||
Assert.IsTrue(input.ReadEnum(ref val, out unk));
|
||||
Assert.IsTrue(input.IsAtEnd);
|
||||
Assert.AreEqual(TestNegEnum.Value, val);
|
||||
Assert.True(input.ReadEnum(ref val, out unk));
|
||||
Assert.True(input.IsAtEnd);
|
||||
Assert.Equal(TestNegEnum.Value, val);
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void TestNegativeEnumPackedArray()
|
||||
{
|
||||
int arraySize = 1 + (10 * 5);
|
||||
|
@ -559,26 +489,26 @@ namespace Google.ProtocolBuffers
|
|||
CodedOutputStream output = CodedOutputStream.CreateInstance(bytes);
|
||||
output.WritePackedInt32Array(8, "", arraySize, new int[] { 0, -1, -2, -3, -4, -5 });
|
||||
|
||||
Assert.AreEqual(0, output.SpaceLeft);
|
||||
Assert.Equal(0, output.SpaceLeft);
|
||||
|
||||
CodedInputStream input = CodedInputStream.CreateInstance(bytes);
|
||||
uint tag;
|
||||
string name;
|
||||
Assert.IsTrue(input.ReadTag(out tag, out name));
|
||||
Assert.True(input.ReadTag(out tag, out name));
|
||||
|
||||
List<TestNegEnum> values = new List<TestNegEnum>();
|
||||
ICollection<object> unk;
|
||||
input.ReadEnumArray(tag, name, values, out unk);
|
||||
|
||||
Assert.AreEqual(2, values.Count);
|
||||
Assert.AreEqual(TestNegEnum.None, values[0]);
|
||||
Assert.AreEqual(TestNegEnum.Value, values[1]);
|
||||
Assert.Equal(2, values.Count);
|
||||
Assert.Equal(TestNegEnum.None, values[0]);
|
||||
Assert.Equal(TestNegEnum.Value, values[1]);
|
||||
|
||||
Assert.IsNotNull(unk);
|
||||
Assert.AreEqual(4, unk.Count);
|
||||
Assert.NotNull(unk);
|
||||
Assert.Equal(4, unk.Count);
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void TestNegativeEnumArray()
|
||||
{
|
||||
int arraySize = 1 + 1 + (11 * 5);
|
||||
|
@ -587,27 +517,27 @@ namespace Google.ProtocolBuffers
|
|||
CodedOutputStream output = CodedOutputStream.CreateInstance(bytes);
|
||||
output.WriteInt32Array(8, "", new int[] { 0, -1, -2, -3, -4, -5 });
|
||||
|
||||
Assert.AreEqual(0, output.SpaceLeft);
|
||||
Assert.Equal(0, output.SpaceLeft);
|
||||
|
||||
CodedInputStream input = CodedInputStream.CreateInstance(bytes);
|
||||
uint tag;
|
||||
string name;
|
||||
Assert.IsTrue(input.ReadTag(out tag, out name));
|
||||
Assert.True(input.ReadTag(out tag, out name));
|
||||
|
||||
List<TestNegEnum> values = new List<TestNegEnum>();
|
||||
ICollection<object> unk;
|
||||
input.ReadEnumArray(tag, name, values, out unk);
|
||||
|
||||
Assert.AreEqual(2, values.Count);
|
||||
Assert.AreEqual(TestNegEnum.None, values[0]);
|
||||
Assert.AreEqual(TestNegEnum.Value, values[1]);
|
||||
Assert.Equal(2, values.Count);
|
||||
Assert.Equal(TestNegEnum.None, values[0]);
|
||||
Assert.Equal(TestNegEnum.Value, values[1]);
|
||||
|
||||
Assert.IsNotNull(unk);
|
||||
Assert.AreEqual(4, unk.Count);
|
||||
Assert.NotNull(unk);
|
||||
Assert.Equal(4, unk.Count);
|
||||
}
|
||||
|
||||
//Issue 71: CodedInputStream.ReadBytes go to slow path unnecessarily
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void TestSlowPathAvoidance()
|
||||
{
|
||||
using (var ms = new MemoryStream())
|
||||
|
@ -624,15 +554,15 @@ namespace Google.ProtocolBuffers
|
|||
string ignore;
|
||||
ByteString value;
|
||||
|
||||
Assert.IsTrue(input.ReadTag(out tag, out ignore));
|
||||
Assert.AreEqual(1, WireFormat.GetTagFieldNumber(tag));
|
||||
Assert.True(input.ReadTag(out tag, out ignore));
|
||||
Assert.Equal(1, WireFormat.GetTagFieldNumber(tag));
|
||||
value = ByteString.Empty;
|
||||
Assert.IsTrue(input.ReadBytes(ref value) && value.Length == 100);
|
||||
Assert.True(input.ReadBytes(ref value) && value.Length == 100);
|
||||
|
||||
Assert.IsTrue(input.ReadTag(out tag, out ignore));
|
||||
Assert.AreEqual(2, WireFormat.GetTagFieldNumber(tag));
|
||||
Assert.True(input.ReadTag(out tag, out ignore));
|
||||
Assert.Equal(2, WireFormat.GetTagFieldNumber(tag));
|
||||
value = ByteString.Empty;
|
||||
Assert.IsTrue(input.ReadBytes(ref value) && value.Length == 100);
|
||||
Assert.True(input.ReadBytes(ref value) && value.Length == 100);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -38,11 +38,10 @@ using System;
|
|||
using System.Collections.Generic;
|
||||
using System.IO;
|
||||
using Google.ProtocolBuffers.TestProtos;
|
||||
using Microsoft.VisualStudio.TestTools.UnitTesting;
|
||||
using Xunit;
|
||||
|
||||
namespace Google.ProtocolBuffers
|
||||
{
|
||||
[TestClass]
|
||||
public class CodedOutputStreamTest
|
||||
{
|
||||
/// <summary>
|
||||
|
@ -58,9 +57,9 @@ namespace Google.ProtocolBuffers
|
|||
CodedOutputStream output = CodedOutputStream.CreateInstance(rawOutput);
|
||||
output.WriteRawVarint32((uint) value);
|
||||
output.Flush();
|
||||
TestUtil.AssertBytesEqual(data, rawOutput.ToArray());
|
||||
Assert.Equal(data, rawOutput.ToArray());
|
||||
// Also try computing size.
|
||||
Assert.AreEqual(data.Length, CodedOutputStream.ComputeRawVarint32Size((uint) value));
|
||||
Assert.Equal(data.Length, CodedOutputStream.ComputeRawVarint32Size((uint) value));
|
||||
}
|
||||
|
||||
{
|
||||
|
@ -68,10 +67,10 @@ namespace Google.ProtocolBuffers
|
|||
CodedOutputStream output = CodedOutputStream.CreateInstance(rawOutput);
|
||||
output.WriteRawVarint64(value);
|
||||
output.Flush();
|
||||
TestUtil.AssertBytesEqual(data, rawOutput.ToArray());
|
||||
Assert.Equal(data, rawOutput.ToArray());
|
||||
|
||||
// Also try computing size.
|
||||
Assert.AreEqual(data.Length, CodedOutputStream.ComputeRawVarint64Size(value));
|
||||
Assert.Equal(data.Length, CodedOutputStream.ComputeRawVarint64Size(value));
|
||||
}
|
||||
|
||||
// Try different buffer sizes.
|
||||
|
@ -85,7 +84,7 @@ namespace Google.ProtocolBuffers
|
|||
CodedOutputStream.CreateInstance(rawOutput, bufferSize);
|
||||
output.WriteRawVarint32((uint) value);
|
||||
output.Flush();
|
||||
TestUtil.AssertBytesEqual(data, rawOutput.ToArray());
|
||||
Assert.Equal(data, rawOutput.ToArray());
|
||||
}
|
||||
|
||||
{
|
||||
|
@ -93,7 +92,7 @@ namespace Google.ProtocolBuffers
|
|||
CodedOutputStream output = CodedOutputStream.CreateInstance(rawOutput, bufferSize);
|
||||
output.WriteRawVarint64(value);
|
||||
output.Flush();
|
||||
TestUtil.AssertBytesEqual(data, rawOutput.ToArray());
|
||||
Assert.Equal(data, rawOutput.ToArray());
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -101,7 +100,7 @@ namespace Google.ProtocolBuffers
|
|||
/// <summary>
|
||||
/// Tests WriteRawVarint32() and WriteRawVarint64()
|
||||
/// </summary>
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void WriteVarint()
|
||||
{
|
||||
AssertWriteVarint(new byte[] {0x00}, 0);
|
||||
|
@ -143,7 +142,7 @@ namespace Google.ProtocolBuffers
|
|||
CodedOutputStream output = CodedOutputStream.CreateInstance(rawOutput);
|
||||
output.WriteRawLittleEndian32(value);
|
||||
output.Flush();
|
||||
TestUtil.AssertBytesEqual(data, rawOutput.ToArray());
|
||||
Assert.Equal(data, rawOutput.ToArray());
|
||||
|
||||
// Try different buffer sizes.
|
||||
for (int bufferSize = 1; bufferSize <= 16; bufferSize *= 2)
|
||||
|
@ -152,7 +151,7 @@ namespace Google.ProtocolBuffers
|
|||
output = CodedOutputStream.CreateInstance(rawOutput, bufferSize);
|
||||
output.WriteRawLittleEndian32(value);
|
||||
output.Flush();
|
||||
TestUtil.AssertBytesEqual(data, rawOutput.ToArray());
|
||||
Assert.Equal(data, rawOutput.ToArray());
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -166,7 +165,7 @@ namespace Google.ProtocolBuffers
|
|||
CodedOutputStream output = CodedOutputStream.CreateInstance(rawOutput);
|
||||
output.WriteRawLittleEndian64(value);
|
||||
output.Flush();
|
||||
TestUtil.AssertBytesEqual(data, rawOutput.ToArray());
|
||||
Assert.Equal(data, rawOutput.ToArray());
|
||||
|
||||
// Try different block sizes.
|
||||
for (int blockSize = 1; blockSize <= 16; blockSize *= 2)
|
||||
|
@ -175,14 +174,14 @@ namespace Google.ProtocolBuffers
|
|||
output = CodedOutputStream.CreateInstance(rawOutput, blockSize);
|
||||
output.WriteRawLittleEndian64(value);
|
||||
output.Flush();
|
||||
TestUtil.AssertBytesEqual(data, rawOutput.ToArray());
|
||||
Assert.Equal(data, rawOutput.ToArray());
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Tests writeRawLittleEndian32() and writeRawLittleEndian64().
|
||||
/// </summary>
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void WriteLittleEndian()
|
||||
{
|
||||
AssertWriteLittleEndian32(new byte[] {0x78, 0x56, 0x34, 0x12}, 0x12345678);
|
||||
|
@ -196,7 +195,7 @@ namespace Google.ProtocolBuffers
|
|||
0x9abcdef012345678UL);
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void WriteWholeMessage()
|
||||
{
|
||||
TestAllTypes message = TestUtil.GetAllSet();
|
||||
|
@ -220,7 +219,7 @@ namespace Google.ProtocolBuffers
|
|||
/// Tests writing a whole message with every packed field type. Ensures the
|
||||
/// wire format of packed fields is compatible with C++.
|
||||
/// </summary>
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void WriteWholePackedFieldsMessage()
|
||||
{
|
||||
TestPackedTypes message = TestUtil.GetPackedSet();
|
||||
|
@ -230,97 +229,97 @@ namespace Google.ProtocolBuffers
|
|||
rawBytes);
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void EncodeZigZag32()
|
||||
{
|
||||
Assert.AreEqual(0u, CodedOutputStream.EncodeZigZag32(0));
|
||||
Assert.AreEqual(1u, CodedOutputStream.EncodeZigZag32(-1));
|
||||
Assert.AreEqual(2u, CodedOutputStream.EncodeZigZag32(1));
|
||||
Assert.AreEqual(3u, CodedOutputStream.EncodeZigZag32(-2));
|
||||
Assert.AreEqual(0x7FFFFFFEu, CodedOutputStream.EncodeZigZag32(0x3FFFFFFF));
|
||||
Assert.AreEqual(0x7FFFFFFFu, CodedOutputStream.EncodeZigZag32(unchecked((int) 0xC0000000)));
|
||||
Assert.AreEqual(0xFFFFFFFEu, CodedOutputStream.EncodeZigZag32(0x7FFFFFFF));
|
||||
Assert.AreEqual(0xFFFFFFFFu, CodedOutputStream.EncodeZigZag32(unchecked((int) 0x80000000)));
|
||||
Assert.Equal(0u, CodedOutputStream.EncodeZigZag32(0));
|
||||
Assert.Equal(1u, CodedOutputStream.EncodeZigZag32(-1));
|
||||
Assert.Equal(2u, CodedOutputStream.EncodeZigZag32(1));
|
||||
Assert.Equal(3u, CodedOutputStream.EncodeZigZag32(-2));
|
||||
Assert.Equal(0x7FFFFFFEu, CodedOutputStream.EncodeZigZag32(0x3FFFFFFF));
|
||||
Assert.Equal(0x7FFFFFFFu, CodedOutputStream.EncodeZigZag32(unchecked((int) 0xC0000000)));
|
||||
Assert.Equal(0xFFFFFFFEu, CodedOutputStream.EncodeZigZag32(0x7FFFFFFF));
|
||||
Assert.Equal(0xFFFFFFFFu, CodedOutputStream.EncodeZigZag32(unchecked((int) 0x80000000)));
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void EncodeZigZag64()
|
||||
{
|
||||
Assert.AreEqual(0u, CodedOutputStream.EncodeZigZag64(0));
|
||||
Assert.AreEqual(1u, CodedOutputStream.EncodeZigZag64(-1));
|
||||
Assert.AreEqual(2u, CodedOutputStream.EncodeZigZag64(1));
|
||||
Assert.AreEqual(3u, CodedOutputStream.EncodeZigZag64(-2));
|
||||
Assert.AreEqual(0x000000007FFFFFFEuL,
|
||||
Assert.Equal(0u, CodedOutputStream.EncodeZigZag64(0));
|
||||
Assert.Equal(1u, CodedOutputStream.EncodeZigZag64(-1));
|
||||
Assert.Equal(2u, CodedOutputStream.EncodeZigZag64(1));
|
||||
Assert.Equal(3u, CodedOutputStream.EncodeZigZag64(-2));
|
||||
Assert.Equal(0x000000007FFFFFFEuL,
|
||||
CodedOutputStream.EncodeZigZag64(unchecked((long) 0x000000003FFFFFFFUL)));
|
||||
Assert.AreEqual(0x000000007FFFFFFFuL,
|
||||
Assert.Equal(0x000000007FFFFFFFuL,
|
||||
CodedOutputStream.EncodeZigZag64(unchecked((long) 0xFFFFFFFFC0000000UL)));
|
||||
Assert.AreEqual(0x00000000FFFFFFFEuL,
|
||||
Assert.Equal(0x00000000FFFFFFFEuL,
|
||||
CodedOutputStream.EncodeZigZag64(unchecked((long) 0x000000007FFFFFFFUL)));
|
||||
Assert.AreEqual(0x00000000FFFFFFFFuL,
|
||||
Assert.Equal(0x00000000FFFFFFFFuL,
|
||||
CodedOutputStream.EncodeZigZag64(unchecked((long) 0xFFFFFFFF80000000UL)));
|
||||
Assert.AreEqual(0xFFFFFFFFFFFFFFFEL,
|
||||
Assert.Equal(0xFFFFFFFFFFFFFFFEL,
|
||||
CodedOutputStream.EncodeZigZag64(unchecked((long) 0x7FFFFFFFFFFFFFFFUL)));
|
||||
Assert.AreEqual(0xFFFFFFFFFFFFFFFFL,
|
||||
Assert.Equal(0xFFFFFFFFFFFFFFFFL,
|
||||
CodedOutputStream.EncodeZigZag64(unchecked((long) 0x8000000000000000UL)));
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void RoundTripZigZag32()
|
||||
{
|
||||
// Some easier-to-verify round-trip tests. The inputs (other than 0, 1, -1)
|
||||
// were chosen semi-randomly via keyboard bashing.
|
||||
Assert.AreEqual(0, CodedInputStream.DecodeZigZag32(CodedOutputStream.EncodeZigZag32(0)));
|
||||
Assert.AreEqual(1, CodedInputStream.DecodeZigZag32(CodedOutputStream.EncodeZigZag32(1)));
|
||||
Assert.AreEqual(-1, CodedInputStream.DecodeZigZag32(CodedOutputStream.EncodeZigZag32(-1)));
|
||||
Assert.AreEqual(14927, CodedInputStream.DecodeZigZag32(CodedOutputStream.EncodeZigZag32(14927)));
|
||||
Assert.AreEqual(-3612, CodedInputStream.DecodeZigZag32(CodedOutputStream.EncodeZigZag32(-3612)));
|
||||
Assert.Equal(0, CodedInputStream.DecodeZigZag32(CodedOutputStream.EncodeZigZag32(0)));
|
||||
Assert.Equal(1, CodedInputStream.DecodeZigZag32(CodedOutputStream.EncodeZigZag32(1)));
|
||||
Assert.Equal(-1, CodedInputStream.DecodeZigZag32(CodedOutputStream.EncodeZigZag32(-1)));
|
||||
Assert.Equal(14927, CodedInputStream.DecodeZigZag32(CodedOutputStream.EncodeZigZag32(14927)));
|
||||
Assert.Equal(-3612, CodedInputStream.DecodeZigZag32(CodedOutputStream.EncodeZigZag32(-3612)));
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void RoundTripZigZag64()
|
||||
{
|
||||
Assert.AreEqual(0, CodedInputStream.DecodeZigZag64(CodedOutputStream.EncodeZigZag64(0)));
|
||||
Assert.AreEqual(1, CodedInputStream.DecodeZigZag64(CodedOutputStream.EncodeZigZag64(1)));
|
||||
Assert.AreEqual(-1, CodedInputStream.DecodeZigZag64(CodedOutputStream.EncodeZigZag64(-1)));
|
||||
Assert.AreEqual(14927, CodedInputStream.DecodeZigZag64(CodedOutputStream.EncodeZigZag64(14927)));
|
||||
Assert.AreEqual(-3612, CodedInputStream.DecodeZigZag64(CodedOutputStream.EncodeZigZag64(-3612)));
|
||||
Assert.Equal(0, CodedInputStream.DecodeZigZag64(CodedOutputStream.EncodeZigZag64(0)));
|
||||
Assert.Equal(1, CodedInputStream.DecodeZigZag64(CodedOutputStream.EncodeZigZag64(1)));
|
||||
Assert.Equal(-1, CodedInputStream.DecodeZigZag64(CodedOutputStream.EncodeZigZag64(-1)));
|
||||
Assert.Equal(14927, CodedInputStream.DecodeZigZag64(CodedOutputStream.EncodeZigZag64(14927)));
|
||||
Assert.Equal(-3612, CodedInputStream.DecodeZigZag64(CodedOutputStream.EncodeZigZag64(-3612)));
|
||||
|
||||
Assert.AreEqual(856912304801416L,
|
||||
Assert.Equal(856912304801416L,
|
||||
CodedInputStream.DecodeZigZag64(CodedOutputStream.EncodeZigZag64(856912304801416L)));
|
||||
Assert.AreEqual(-75123905439571256L,
|
||||
Assert.Equal(-75123905439571256L,
|
||||
CodedInputStream.DecodeZigZag64(CodedOutputStream.EncodeZigZag64(-75123905439571256L)));
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void TestNegativeEnumNoTag()
|
||||
{
|
||||
Assert.AreEqual(10, CodedOutputStream.ComputeInt32SizeNoTag(-2));
|
||||
Assert.AreEqual(10, CodedOutputStream.ComputeEnumSizeNoTag(-2));
|
||||
Assert.Equal(10, CodedOutputStream.ComputeInt32SizeNoTag(-2));
|
||||
Assert.Equal(10, CodedOutputStream.ComputeEnumSizeNoTag(-2));
|
||||
|
||||
byte[] bytes = new byte[10];
|
||||
CodedOutputStream output = CodedOutputStream.CreateInstance(bytes);
|
||||
output.WriteEnumNoTag(-2);
|
||||
|
||||
Assert.AreEqual(0, output.SpaceLeft);
|
||||
Assert.AreEqual("FE-FF-FF-FF-FF-FF-FF-FF-FF-01", BitConverter.ToString(bytes));
|
||||
Assert.Equal(0, output.SpaceLeft);
|
||||
Assert.Equal("FE-FF-FF-FF-FF-FF-FF-FF-FF-01", BitConverter.ToString(bytes));
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void TestNegativeEnumWithTag()
|
||||
{
|
||||
Assert.AreEqual(11, CodedOutputStream.ComputeInt32Size(8, -2));
|
||||
Assert.AreEqual(11, CodedOutputStream.ComputeEnumSize(8, -2));
|
||||
Assert.Equal(11, CodedOutputStream.ComputeInt32Size(8, -2));
|
||||
Assert.Equal(11, CodedOutputStream.ComputeEnumSize(8, -2));
|
||||
|
||||
byte[] bytes = new byte[11];
|
||||
CodedOutputStream output = CodedOutputStream.CreateInstance(bytes);
|
||||
output.WriteEnum(8, "", -2, -2);
|
||||
|
||||
Assert.AreEqual(0, output.SpaceLeft);
|
||||
Assert.Equal(0, output.SpaceLeft);
|
||||
//fyi, 0x40 == 0x08 << 3 + 0, field num + wire format shift
|
||||
Assert.AreEqual("40-FE-FF-FF-FF-FF-FF-FF-FF-FF-01", BitConverter.ToString(bytes));
|
||||
Assert.Equal("40-FE-FF-FF-FF-FF-FF-FF-FF-FF-01", BitConverter.ToString(bytes));
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void TestNegativeEnumArrayPacked()
|
||||
{
|
||||
int arraySize = 1 + (10 * 5);
|
||||
|
@ -329,22 +328,22 @@ namespace Google.ProtocolBuffers
|
|||
CodedOutputStream output = CodedOutputStream.CreateInstance(bytes);
|
||||
output.WritePackedEnumArray(8, "", arraySize, new int[] { 0, -1, -2, -3, -4, -5 });
|
||||
|
||||
Assert.AreEqual(0, output.SpaceLeft);
|
||||
Assert.Equal(0, output.SpaceLeft);
|
||||
|
||||
CodedInputStream input = CodedInputStream.CreateInstance(bytes);
|
||||
uint tag;
|
||||
string name;
|
||||
Assert.IsTrue(input.ReadTag(out tag, out name));
|
||||
Assert.True(input.ReadTag(out tag, out name));
|
||||
|
||||
List<int> values = new List<int>();
|
||||
input.ReadInt32Array(tag, name, values);
|
||||
|
||||
Assert.AreEqual(6, values.Count);
|
||||
Assert.Equal(6, values.Count);
|
||||
for (int i = 0; i > -6; i--)
|
||||
Assert.AreEqual(i, values[Math.Abs(i)]);
|
||||
Assert.Equal(i, values[Math.Abs(i)]);
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void TestNegativeEnumArray()
|
||||
{
|
||||
int arraySize = 1 + 1 + (11 * 5);
|
||||
|
@ -353,22 +352,22 @@ namespace Google.ProtocolBuffers
|
|||
CodedOutputStream output = CodedOutputStream.CreateInstance(bytes);
|
||||
output.WriteEnumArray(8, "", new int[] { 0, -1, -2, -3, -4, -5 });
|
||||
|
||||
Assert.AreEqual(0, output.SpaceLeft);
|
||||
Assert.Equal(0, output.SpaceLeft);
|
||||
|
||||
CodedInputStream input = CodedInputStream.CreateInstance(bytes);
|
||||
uint tag;
|
||||
string name;
|
||||
Assert.IsTrue(input.ReadTag(out tag, out name));
|
||||
Assert.True(input.ReadTag(out tag, out name));
|
||||
|
||||
List<int> values = new List<int>();
|
||||
input.ReadInt32Array(tag, name, values);
|
||||
|
||||
Assert.AreEqual(6, values.Count);
|
||||
Assert.Equal(6, values.Count);
|
||||
for (int i = 0; i > -6; i--)
|
||||
Assert.AreEqual(i, values[Math.Abs(i)]);
|
||||
Assert.Equal(i, values[Math.Abs(i)]);
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void TestCodedInputOutputPosition()
|
||||
{
|
||||
byte[] content = new byte[110];
|
||||
|
@ -381,19 +380,19 @@ namespace Google.ProtocolBuffers
|
|||
CodedOutputStream cout = CodedOutputStream.CreateInstance(ms, 20);
|
||||
// Field 11: numeric value: 500
|
||||
cout.WriteTag(11, WireFormat.WireType.Varint);
|
||||
Assert.AreEqual(1, cout.Position);
|
||||
Assert.Equal(1, cout.Position);
|
||||
cout.WriteInt32NoTag(500);
|
||||
Assert.AreEqual(3, cout.Position);
|
||||
Assert.Equal(3, cout.Position);
|
||||
//Field 12: length delimited 120 bytes
|
||||
cout.WriteTag(12, WireFormat.WireType.LengthDelimited);
|
||||
Assert.AreEqual(4, cout.Position);
|
||||
Assert.Equal(4, cout.Position);
|
||||
cout.WriteBytesNoTag(ByteString.CopyFrom(content));
|
||||
Assert.AreEqual(115, cout.Position);
|
||||
Assert.Equal(115, cout.Position);
|
||||
// Field 13: fixed numeric value: 501
|
||||
cout.WriteTag(13, WireFormat.WireType.Fixed32);
|
||||
Assert.AreEqual(116, cout.Position);
|
||||
Assert.Equal(116, cout.Position);
|
||||
cout.WriteSFixed32NoTag(501);
|
||||
Assert.AreEqual(120, cout.Position);
|
||||
Assert.Equal(120, cout.Position);
|
||||
cout.Flush();
|
||||
}
|
||||
|
||||
|
@ -402,19 +401,19 @@ namespace Google.ProtocolBuffers
|
|||
CodedOutputStream cout = CodedOutputStream.CreateInstance(bytes);
|
||||
// Field 1: numeric value: 500
|
||||
cout.WriteTag(1, WireFormat.WireType.Varint);
|
||||
Assert.AreEqual(1, cout.Position);
|
||||
Assert.Equal(1, cout.Position);
|
||||
cout.WriteInt32NoTag(500);
|
||||
Assert.AreEqual(3, cout.Position);
|
||||
Assert.Equal(3, cout.Position);
|
||||
//Field 2: length delimited 120 bytes
|
||||
cout.WriteTag(2, WireFormat.WireType.LengthDelimited);
|
||||
Assert.AreEqual(4, cout.Position);
|
||||
Assert.Equal(4, cout.Position);
|
||||
cout.WriteBytesNoTag(ByteString.CopyFrom(child));
|
||||
Assert.AreEqual(125, cout.Position);
|
||||
Assert.Equal(125, cout.Position);
|
||||
// Field 3: fixed numeric value: 500
|
||||
cout.WriteTag(3, WireFormat.WireType.Fixed32);
|
||||
Assert.AreEqual(126, cout.Position);
|
||||
Assert.Equal(126, cout.Position);
|
||||
cout.WriteSFixed32NoTag(501);
|
||||
Assert.AreEqual(130, cout.Position);
|
||||
Assert.Equal(130, cout.Position);
|
||||
cout.Flush();
|
||||
}
|
||||
//Now test Input stream:
|
||||
|
@ -423,49 +422,49 @@ namespace Google.ProtocolBuffers
|
|||
uint tag;
|
||||
int intValue = 0;
|
||||
string ignore;
|
||||
Assert.AreEqual(0, cin.Position);
|
||||
Assert.Equal(0, cin.Position);
|
||||
// Field 1:
|
||||
Assert.IsTrue(cin.ReadTag(out tag, out ignore) && tag >> 3 == 1);
|
||||
Assert.AreEqual(1, cin.Position);
|
||||
Assert.IsTrue(cin.ReadInt32(ref intValue) && intValue == 500);
|
||||
Assert.AreEqual(3, cin.Position);
|
||||
Assert.True(cin.ReadTag(out tag, out ignore) && tag >> 3 == 1);
|
||||
Assert.Equal(1, cin.Position);
|
||||
Assert.True(cin.ReadInt32(ref intValue) && intValue == 500);
|
||||
Assert.Equal(3, cin.Position);
|
||||
//Field 2:
|
||||
Assert.IsTrue(cin.ReadTag(out tag, out ignore) && tag >> 3 == 2);
|
||||
Assert.AreEqual(4, cin.Position);
|
||||
Assert.True(cin.ReadTag(out tag, out ignore) && tag >> 3 == 2);
|
||||
Assert.Equal(4, cin.Position);
|
||||
uint childlen = cin.ReadRawVarint32();
|
||||
Assert.AreEqual(120u, childlen);
|
||||
Assert.AreEqual(5, cin.Position);
|
||||
Assert.Equal(120u, childlen);
|
||||
Assert.Equal(5, cin.Position);
|
||||
int oldlimit = cin.PushLimit((int)childlen);
|
||||
Assert.AreEqual(5, cin.Position);
|
||||
Assert.Equal(5, cin.Position);
|
||||
// Now we are reading child message
|
||||
{
|
||||
// Field 11: numeric value: 500
|
||||
Assert.IsTrue(cin.ReadTag(out tag, out ignore) && tag >> 3 == 11);
|
||||
Assert.AreEqual(6, cin.Position);
|
||||
Assert.IsTrue(cin.ReadInt32(ref intValue) && intValue == 500);
|
||||
Assert.AreEqual(8, cin.Position);
|
||||
Assert.True(cin.ReadTag(out tag, out ignore) && tag >> 3 == 11);
|
||||
Assert.Equal(6, cin.Position);
|
||||
Assert.True(cin.ReadInt32(ref intValue) && intValue == 500);
|
||||
Assert.Equal(8, cin.Position);
|
||||
//Field 12: length delimited 120 bytes
|
||||
Assert.IsTrue(cin.ReadTag(out tag, out ignore) && tag >> 3 == 12);
|
||||
Assert.AreEqual(9, cin.Position);
|
||||
Assert.True(cin.ReadTag(out tag, out ignore) && tag >> 3 == 12);
|
||||
Assert.Equal(9, cin.Position);
|
||||
ByteString bstr = null;
|
||||
Assert.IsTrue(cin.ReadBytes(ref bstr) && bstr.Length == 110 && bstr.ToByteArray()[109] == 109);
|
||||
Assert.AreEqual(120, cin.Position);
|
||||
Assert.True(cin.ReadBytes(ref bstr) && bstr.Length == 110 && bstr.ToByteArray()[109] == 109);
|
||||
Assert.Equal(120, cin.Position);
|
||||
// Field 13: fixed numeric value: 501
|
||||
Assert.IsTrue(cin.ReadTag(out tag, out ignore) && tag >> 3 == 13);
|
||||
Assert.True(cin.ReadTag(out tag, out ignore) && tag >> 3 == 13);
|
||||
// ROK - Previously broken here, this returned 126 failing to account for bufferSizeAfterLimit
|
||||
Assert.AreEqual(121, cin.Position);
|
||||
Assert.IsTrue(cin.ReadSFixed32(ref intValue) && intValue == 501);
|
||||
Assert.AreEqual(125, cin.Position);
|
||||
Assert.IsTrue(cin.IsAtEnd);
|
||||
Assert.Equal(121, cin.Position);
|
||||
Assert.True(cin.ReadSFixed32(ref intValue) && intValue == 501);
|
||||
Assert.Equal(125, cin.Position);
|
||||
Assert.True(cin.IsAtEnd);
|
||||
}
|
||||
cin.PopLimit(oldlimit);
|
||||
Assert.AreEqual(125, cin.Position);
|
||||
Assert.Equal(125, cin.Position);
|
||||
// Field 3: fixed numeric value: 501
|
||||
Assert.IsTrue(cin.ReadTag(out tag, out ignore) && tag >> 3 == 3);
|
||||
Assert.AreEqual(126, cin.Position);
|
||||
Assert.IsTrue(cin.ReadSFixed32(ref intValue) && intValue == 501);
|
||||
Assert.AreEqual(130, cin.Position);
|
||||
Assert.IsTrue(cin.IsAtEnd);
|
||||
Assert.True(cin.ReadTag(out tag, out ignore) && tag >> 3 == 3);
|
||||
Assert.Equal(126, cin.Position);
|
||||
Assert.True(cin.ReadSFixed32(ref intValue) && intValue == 501);
|
||||
Assert.Equal(130, cin.Position);
|
||||
Assert.True(cin.IsAtEnd);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -36,40 +36,39 @@
|
|||
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using Microsoft.VisualStudio.TestTools.UnitTesting;
|
||||
using Xunit;
|
||||
|
||||
namespace Google.ProtocolBuffers.Collections
|
||||
{
|
||||
[TestClass]
|
||||
public class PopsicleListTest
|
||||
{
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void MutatingOperationsOnFrozenList()
|
||||
{
|
||||
PopsicleList<string> list = new PopsicleList<string>();
|
||||
list.MakeReadOnly();
|
||||
TestUtil.AssertNotSupported(() => list.Add(""));
|
||||
TestUtil.AssertNotSupported(() => list.Clear());
|
||||
TestUtil.AssertNotSupported(() => list.Insert(0, ""));
|
||||
TestUtil.AssertNotSupported(() => list.Remove(""));
|
||||
TestUtil.AssertNotSupported(() => list.RemoveAt(0));
|
||||
TestUtil.AssertNotSupported(() => list.Add(new[] { "", "" }));
|
||||
Assert.Throws<NotSupportedException>(() => list.Add(""));
|
||||
Assert.Throws<NotSupportedException>(() => list.Clear());
|
||||
Assert.Throws<NotSupportedException>(() => list.Insert(0, ""));
|
||||
Assert.Throws<NotSupportedException>(() => list.Remove(""));
|
||||
Assert.Throws<NotSupportedException>(() => list.RemoveAt(0));
|
||||
Assert.Throws<NotSupportedException>(() => list.Add(new[] { "", "" }));
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void NonMutatingOperationsOnFrozenList()
|
||||
{
|
||||
PopsicleList<string> list = new PopsicleList<string>();
|
||||
list.MakeReadOnly();
|
||||
Assert.IsFalse(list.Contains(""));
|
||||
Assert.AreEqual(0, list.Count);
|
||||
Assert.False(list.Contains(""));
|
||||
Assert.Equal(0, list.Count);
|
||||
list.CopyTo(new string[5], 0);
|
||||
list.GetEnumerator();
|
||||
Assert.AreEqual(-1, list.IndexOf(""));
|
||||
Assert.IsTrue(list.IsReadOnly);
|
||||
Assert.Equal(-1, list.IndexOf(""));
|
||||
Assert.True(list.IsReadOnly);
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void MutatingOperationsOnFluidList()
|
||||
{
|
||||
PopsicleList<string> list = new PopsicleList<string>();
|
||||
|
@ -81,73 +80,46 @@ namespace Google.ProtocolBuffers.Collections
|
|||
list.RemoveAt(0);
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void NonMutatingOperationsOnFluidList()
|
||||
{
|
||||
PopsicleList<string> list = new PopsicleList<string>();
|
||||
Assert.IsFalse(list.Contains(""));
|
||||
Assert.AreEqual(0, list.Count);
|
||||
Assert.False(list.Contains(""));
|
||||
Assert.Equal(0, list.Count);
|
||||
list.CopyTo(new string[5], 0);
|
||||
list.GetEnumerator();
|
||||
Assert.AreEqual(-1, list.IndexOf(""));
|
||||
Assert.IsFalse(list.IsReadOnly);
|
||||
Assert.Equal(-1, list.IndexOf(""));
|
||||
Assert.False(list.IsReadOnly);
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void DoesNotAddNullEnumerable()
|
||||
{
|
||||
PopsicleList<string> list = new PopsicleList<string>();
|
||||
try
|
||||
{
|
||||
list.Add((IEnumerable<string>)null);
|
||||
}
|
||||
catch (ArgumentNullException)
|
||||
{ return; }
|
||||
|
||||
Assert.Fail("List should not allow nulls.");
|
||||
Assert.Throws<ArgumentNullException>(() => list.Add((IEnumerable<string>) null));
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void DoesNotAddRangeWithNull()
|
||||
{
|
||||
PopsicleList<string> list = new PopsicleList<string>();
|
||||
try
|
||||
{
|
||||
list.Add(new[] { "a", "b", null });
|
||||
}
|
||||
catch (ArgumentNullException)
|
||||
{ return; }
|
||||
|
||||
Assert.Fail("List should not allow nulls.");
|
||||
// TODO(jonskeet): Change to ArgumentException? The argument isn't null...
|
||||
Assert.Throws<ArgumentNullException>(() => list.Add(new[] {"a", "b", null}));
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void DoesNotAddNull()
|
||||
{
|
||||
PopsicleList<string> list = new PopsicleList<string>();
|
||||
try
|
||||
{
|
||||
list.Add((string)null);
|
||||
}
|
||||
catch (ArgumentNullException)
|
||||
{ return; }
|
||||
|
||||
Assert.Fail("List should not allow nulls.");
|
||||
Assert.Throws<ArgumentNullException>(() => list.Add((string) null));
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void DoesNotSetNull()
|
||||
{
|
||||
PopsicleList<string> list = new PopsicleList<string>();
|
||||
list.Add("a");
|
||||
try
|
||||
{
|
||||
list[0] = null;
|
||||
}
|
||||
catch (ArgumentNullException)
|
||||
{ return; }
|
||||
|
||||
Assert.Fail("List should not allow nulls.");
|
||||
Assert.Throws<ArgumentNullException>(() => list[0] = null);
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,9 +1,7 @@
|
|||
using System;
|
||||
using Microsoft.VisualStudio.TestTools.UnitTesting;
|
||||
|
||||
namespace Google.ProtocolBuffers.Compatibility
|
||||
{
|
||||
[TestClass]
|
||||
public class BinaryCompatibilityTests : CompatibilityTests
|
||||
{
|
||||
protected override object SerializeMessage<TMessage, TBuilder>(TMessage message)
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
using System;
|
||||
using Google.ProtocolBuffers.TestProtos;
|
||||
using Microsoft.VisualStudio.TestTools.UnitTesting;
|
||||
using Xunit;
|
||||
|
||||
|
||||
namespace Google.ProtocolBuffers.Compatibility
|
||||
|
@ -22,10 +22,10 @@ namespace Google.ProtocolBuffers.Compatibility
|
|||
|
||||
protected virtual void AssertOutputEquals(object lhs, object rhs)
|
||||
{
|
||||
Assert.AreEqual<object>(lhs, rhs);
|
||||
Assert.Equal<object>(lhs, rhs);
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public virtual void RoundTripWithEmptyChildMessageSize()
|
||||
{
|
||||
SizeMessage1 msg = SizeMessage1.CreateBuilder()
|
||||
|
@ -37,12 +37,12 @@ namespace Google.ProtocolBuffers.Compatibility
|
|||
|
||||
SizeMessage1 copy = DeserializeMessage<SizeMessage1, SizeMessage1.Builder>(content, SizeMessage1.CreateBuilder(), ExtensionRegistry.Empty).BuildPartial();
|
||||
|
||||
Assert.AreEqual(msg, copy);
|
||||
Assert.Equal(msg, copy);
|
||||
AssertOutputEquals(content, SerializeMessage<SizeMessage1, SizeMessage1.Builder>(copy));
|
||||
Assert.AreEqual(Convert.ToBase64String(contents), Convert.ToBase64String(copy.ToByteArray()));
|
||||
Assert.Equal(Convert.ToBase64String(contents), Convert.ToBase64String(copy.ToByteArray()));
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public virtual void RoundTripWithEmptyChildMessageSpeed()
|
||||
{
|
||||
SpeedMessage1 msg = SpeedMessage1.CreateBuilder()
|
||||
|
@ -54,12 +54,12 @@ namespace Google.ProtocolBuffers.Compatibility
|
|||
|
||||
SpeedMessage1 copy = DeserializeMessage<SpeedMessage1, SpeedMessage1.Builder>(content, SpeedMessage1.CreateBuilder(), ExtensionRegistry.Empty).BuildPartial();
|
||||
|
||||
Assert.AreEqual(msg, copy);
|
||||
Assert.Equal(msg, copy);
|
||||
AssertOutputEquals(content, SerializeMessage<SpeedMessage1, SpeedMessage1.Builder>(copy));
|
||||
Assert.AreEqual(Convert.ToBase64String(contents), Convert.ToBase64String(copy.ToByteArray()));
|
||||
Assert.Equal(Convert.ToBase64String(contents), Convert.ToBase64String(copy.ToByteArray()));
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public virtual void RoundTripMessage1OptimizeSize()
|
||||
{
|
||||
SizeMessage1 msg = SizeMessage1.CreateBuilder().MergeFrom(TestResources.google_message1).Build();
|
||||
|
@ -67,12 +67,12 @@ namespace Google.ProtocolBuffers.Compatibility
|
|||
|
||||
SizeMessage1 copy = DeserializeMessage<SizeMessage1, SizeMessage1.Builder>(content, SizeMessage1.CreateBuilder(), ExtensionRegistry.Empty).Build();
|
||||
|
||||
Assert.AreEqual(msg, copy);
|
||||
Assert.Equal(msg, copy);
|
||||
AssertOutputEquals(content, SerializeMessage<SizeMessage1, SizeMessage1.Builder>(copy));
|
||||
Assert.AreEqual(Convert.ToBase64String(TestResources.google_message1), Convert.ToBase64String(copy.ToByteArray()));
|
||||
Assert.Equal(Convert.ToBase64String(TestResources.google_message1), Convert.ToBase64String(copy.ToByteArray()));
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public virtual void RoundTripMessage2OptimizeSize()
|
||||
{
|
||||
SizeMessage2 msg = SizeMessage2.CreateBuilder().MergeFrom(TestResources.google_message2).Build();
|
||||
|
@ -80,12 +80,12 @@ namespace Google.ProtocolBuffers.Compatibility
|
|||
|
||||
SizeMessage2 copy = DeserializeMessage<SizeMessage2, SizeMessage2.Builder>(content, SizeMessage2.CreateBuilder(), ExtensionRegistry.Empty).Build();
|
||||
|
||||
Assert.AreEqual(msg, copy);
|
||||
Assert.Equal(msg, copy);
|
||||
AssertOutputEquals(content, SerializeMessage<SizeMessage2, SizeMessage2.Builder>(copy));
|
||||
Assert.AreEqual(Convert.ToBase64String(TestResources.google_message2), Convert.ToBase64String(copy.ToByteArray()));
|
||||
Assert.Equal(Convert.ToBase64String(TestResources.google_message2), Convert.ToBase64String(copy.ToByteArray()));
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public virtual void RoundTripMessage1OptimizeSpeed()
|
||||
{
|
||||
SpeedMessage1 msg = SpeedMessage1.CreateBuilder().MergeFrom(TestResources.google_message1).Build();
|
||||
|
@ -93,12 +93,12 @@ namespace Google.ProtocolBuffers.Compatibility
|
|||
|
||||
SpeedMessage1 copy = DeserializeMessage<SpeedMessage1, SpeedMessage1.Builder>(content, SpeedMessage1.CreateBuilder(), ExtensionRegistry.Empty).Build();
|
||||
|
||||
Assert.AreEqual(msg, copy);
|
||||
Assert.Equal(msg, copy);
|
||||
AssertOutputEquals(content, SerializeMessage<SpeedMessage1, SpeedMessage1.Builder>(copy));
|
||||
Assert.AreEqual(Convert.ToBase64String(TestResources.google_message1), Convert.ToBase64String(copy.ToByteArray()));
|
||||
Assert.Equal(Convert.ToBase64String(TestResources.google_message1), Convert.ToBase64String(copy.ToByteArray()));
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public virtual void RoundTripMessage2OptimizeSpeed()
|
||||
{
|
||||
SpeedMessage2 msg = SpeedMessage2.CreateBuilder().MergeFrom(TestResources.google_message2).Build();
|
||||
|
@ -106,9 +106,9 @@ namespace Google.ProtocolBuffers.Compatibility
|
|||
|
||||
SpeedMessage2 copy = DeserializeMessage<SpeedMessage2, SpeedMessage2.Builder>(content, SpeedMessage2.CreateBuilder(), ExtensionRegistry.Empty).Build();
|
||||
|
||||
Assert.AreEqual(msg, copy);
|
||||
Assert.Equal(msg, copy);
|
||||
AssertOutputEquals(content, SerializeMessage<SpeedMessage2, SpeedMessage2.Builder>(copy));
|
||||
Assert.AreEqual(Convert.ToBase64String(TestResources.google_message2), Convert.ToBase64String(copy.ToByteArray()));
|
||||
Assert.Equal(Convert.ToBase64String(TestResources.google_message2), Convert.ToBase64String(copy.ToByteArray()));
|
||||
}
|
||||
|
||||
#region Test message builders
|
||||
|
@ -185,7 +185,7 @@ namespace Google.ProtocolBuffers.Compatibility
|
|||
|
||||
#endregion
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void TestRoundTripAllTypes()
|
||||
{
|
||||
TestAllTypes msg = AddAllTypes(new TestAllTypes.Builder()).Build();
|
||||
|
@ -193,12 +193,12 @@ namespace Google.ProtocolBuffers.Compatibility
|
|||
|
||||
TestAllTypes copy = DeserializeMessage<TestAllTypes, TestAllTypes.Builder>(content, TestAllTypes.CreateBuilder(), ExtensionRegistry.Empty).Build();
|
||||
|
||||
Assert.AreEqual(msg, copy);
|
||||
Assert.Equal(msg, copy);
|
||||
AssertOutputEquals(content, SerializeMessage<TestAllTypes, TestAllTypes.Builder>(copy));
|
||||
Assert.AreEqual(Convert.ToBase64String(msg.ToByteArray()), Convert.ToBase64String(copy.ToByteArray()));
|
||||
Assert.Equal(Convert.ToBase64String(msg.ToByteArray()), Convert.ToBase64String(copy.ToByteArray()));
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void TestRoundTripRepeatedTypes()
|
||||
{
|
||||
TestAllTypes msg = AddRepeatedTypes(new TestAllTypes.Builder(), 5).Build();
|
||||
|
@ -206,12 +206,12 @@ namespace Google.ProtocolBuffers.Compatibility
|
|||
|
||||
TestAllTypes copy = DeserializeMessage<TestAllTypes, TestAllTypes.Builder>(content, TestAllTypes.CreateBuilder(), ExtensionRegistry.Empty).Build();
|
||||
|
||||
Assert.AreEqual(msg, copy);
|
||||
Assert.Equal(msg, copy);
|
||||
AssertOutputEquals(content, SerializeMessage<TestAllTypes, TestAllTypes.Builder>(copy));
|
||||
Assert.AreEqual(Convert.ToBase64String(msg.ToByteArray()), Convert.ToBase64String(copy.ToByteArray()));
|
||||
Assert.Equal(Convert.ToBase64String(msg.ToByteArray()), Convert.ToBase64String(copy.ToByteArray()));
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void TestRoundTripPackedTypes()
|
||||
{
|
||||
TestPackedTypes msg = AddPackedTypes(new TestPackedTypes.Builder(), 5).Build();
|
||||
|
@ -219,9 +219,9 @@ namespace Google.ProtocolBuffers.Compatibility
|
|||
|
||||
TestPackedTypes copy = DeserializeMessage<TestPackedTypes, TestPackedTypes.Builder>(content, TestPackedTypes.CreateBuilder(), ExtensionRegistry.Empty).Build();
|
||||
|
||||
Assert.AreEqual(msg, copy);
|
||||
Assert.Equal(msg, copy);
|
||||
AssertOutputEquals(content, SerializeMessage<TestPackedTypes, TestPackedTypes.Builder>(copy));
|
||||
Assert.AreEqual(Convert.ToBase64String(msg.ToByteArray()), Convert.ToBase64String(copy.ToByteArray()));
|
||||
Assert.Equal(Convert.ToBase64String(msg.ToByteArray()), Convert.ToBase64String(copy.ToByteArray()));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,13 +1,10 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.IO;
|
||||
using System.Text;
|
||||
using Google.ProtocolBuffers.Serialization;
|
||||
using Microsoft.VisualStudio.TestTools.UnitTesting;
|
||||
using Xunit;
|
||||
|
||||
namespace Google.ProtocolBuffers.Compatibility
|
||||
{
|
||||
[TestClass]
|
||||
public class DictionaryCompatibilityTests : CompatibilityTests
|
||||
{
|
||||
protected override object SerializeMessage<TMessage, TBuilder>(TMessage message)
|
||||
|
@ -28,7 +25,7 @@ namespace Google.ProtocolBuffers.Compatibility
|
|||
IDictionary<string, object> left = (IDictionary<string, object>)lhs;
|
||||
IDictionary<string, object> right = (IDictionary<string, object>)rhs;
|
||||
|
||||
Assert.AreEqual(
|
||||
Assert.Equal(
|
||||
String.Join(",", new List<string>(left.Keys).ToArray()),
|
||||
String.Join(",", new List<string>(right.Keys).ToArray())
|
||||
);
|
||||
|
|
|
@ -1,11 +1,8 @@
|
|||
using System.IO;
|
||||
using System.Text;
|
||||
using Google.ProtocolBuffers.Serialization;
|
||||
using Microsoft.VisualStudio.TestTools.UnitTesting;
|
||||
|
||||
namespace Google.ProtocolBuffers.Compatibility
|
||||
{
|
||||
[TestClass]
|
||||
public class JsonCompatibilityTests : CompatibilityTests
|
||||
{
|
||||
protected override object SerializeMessage<TMessage, TBuilder>(TMessage message)
|
||||
|
@ -23,7 +20,6 @@ namespace Google.ProtocolBuffers.Compatibility
|
|||
}
|
||||
}
|
||||
|
||||
[TestClass]
|
||||
public class JsonCompatibilityFormattedTests : CompatibilityTests
|
||||
{
|
||||
protected override object SerializeMessage<TMessage, TBuilder>(TMessage message)
|
||||
|
|
|
@ -1,8 +1,5 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.IO;
|
||||
using System.Text;
|
||||
using Microsoft.VisualStudio.TestTools.UnitTesting;
|
||||
using System.IO;
|
||||
using Xunit;
|
||||
|
||||
namespace Google.ProtocolBuffers.Compatibility
|
||||
{
|
||||
|
@ -15,11 +12,11 @@ namespace Google.ProtocolBuffers.Compatibility
|
|||
Stream resource = typeof(TestResources).Assembly.GetManifestResourceStream(
|
||||
typeof(TestResources).Namespace + ".google_message1.dat");
|
||||
|
||||
Assert.IsNotNull(resource, "Unable to the locate resource: google_message1");
|
||||
Assert.NotNull(resource);
|
||||
|
||||
byte[] bytes = new byte[resource.Length];
|
||||
int amtRead = resource.Read(bytes, 0, bytes.Length);
|
||||
Assert.AreEqual(bytes.Length, amtRead);
|
||||
Assert.Equal(bytes.Length, amtRead);
|
||||
return bytes;
|
||||
}
|
||||
}
|
||||
|
@ -30,11 +27,10 @@ namespace Google.ProtocolBuffers.Compatibility
|
|||
Stream resource = typeof(TestResources).Assembly.GetManifestResourceStream(
|
||||
typeof(TestResources).Namespace + ".google_message2.dat");
|
||||
|
||||
Assert.IsNotNull(resource, "Unable to the locate resource: google_message2");
|
||||
|
||||
Assert.NotNull(resource);
|
||||
byte[] bytes = new byte[resource.Length];
|
||||
int amtRead = resource.Read(bytes, 0, bytes.Length);
|
||||
Assert.AreEqual(bytes.Length, amtRead);
|
||||
Assert.Equal(bytes.Length, amtRead);
|
||||
return bytes;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,10 +1,8 @@
|
|||
using System.ComponentModel;
|
||||
using System.IO;
|
||||
using Microsoft.VisualStudio.TestTools.UnitTesting;
|
||||
using Xunit;
|
||||
|
||||
namespace Google.ProtocolBuffers.Compatibility
|
||||
{
|
||||
[TestClass]
|
||||
public class TextCompatibilityTests : CompatibilityTests
|
||||
{
|
||||
protected override object SerializeMessage<TMessage, TBuilder>(TMessage message)
|
||||
|
@ -20,14 +18,14 @@ namespace Google.ProtocolBuffers.Compatibility
|
|||
return builder;
|
||||
}
|
||||
//This test can take a very long time to run.
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public override void RoundTripMessage2OptimizeSize()
|
||||
{
|
||||
//base.RoundTripMessage2OptimizeSize();
|
||||
}
|
||||
|
||||
//This test can take a very long time to run.
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public override void RoundTripMessage2OptimizeSpeed()
|
||||
{
|
||||
//base.RoundTripMessage2OptimizeSpeed();
|
||||
|
|
|
@ -1,12 +1,9 @@
|
|||
using System.IO;
|
||||
using System.Xml;
|
||||
using Google.ProtocolBuffers.Serialization;
|
||||
using Google.ProtocolBuffers.TestProtos;
|
||||
using Microsoft.VisualStudio.TestTools.UnitTesting;
|
||||
|
||||
namespace Google.ProtocolBuffers.Compatibility
|
||||
{
|
||||
[TestClass]
|
||||
public class XmlCompatibilityTests : CompatibilityTests
|
||||
{
|
||||
protected override object SerializeMessage<TMessage, TBuilder>(TMessage message)
|
||||
|
@ -24,7 +21,6 @@ namespace Google.ProtocolBuffers.Compatibility
|
|||
}
|
||||
}
|
||||
|
||||
[TestClass]
|
||||
public class XmlCompatibilityFormattedTests : CompatibilityTests
|
||||
{
|
||||
protected override object SerializeMessage<TMessage, TBuilder>(TMessage message)
|
||||
|
|
|
@ -1,22 +1,19 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Reflection;
|
||||
using System.Text;
|
||||
using Microsoft.VisualStudio.TestTools.UnitTesting;
|
||||
using UnitTest.Issues.TestProtos;
|
||||
using Xunit;
|
||||
|
||||
namespace Google.ProtocolBuffers
|
||||
{
|
||||
[TestClass]
|
||||
public class DeprecatedMemberTest
|
||||
{
|
||||
private static void AssertIsDeprecated(MemberInfo member)
|
||||
{
|
||||
Assert.IsNotNull(member);
|
||||
Assert.IsTrue(member.IsDefined(typeof(ObsoleteAttribute), false), "Member not obsolete: " + member);
|
||||
Assert.NotNull(member);
|
||||
Assert.True(member.IsDefined(typeof(ObsoleteAttribute), false), "Member not obsolete: " + member);
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void TestDepreatedPrimitiveValue()
|
||||
{
|
||||
AssertIsDeprecated(typeof(DeprecatedFieldsMessage).GetProperty("HasPrimitiveValue"));
|
||||
|
@ -27,7 +24,7 @@ namespace Google.ProtocolBuffers
|
|||
AssertIsDeprecated(typeof(DeprecatedFieldsMessage.Builder).GetMethod("ClearPrimitiveValue"));
|
||||
AssertIsDeprecated(typeof(DeprecatedFieldsMessage.Builder).GetMethod("SetPrimitiveValue"));
|
||||
}
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void TestDepreatedPrimitiveArray()
|
||||
{
|
||||
AssertIsDeprecated(typeof(DeprecatedFieldsMessage).GetProperty("PrimitiveArrayList"));
|
||||
|
@ -42,7 +39,7 @@ namespace Google.ProtocolBuffers
|
|||
AssertIsDeprecated(typeof(DeprecatedFieldsMessage.Builder).GetMethod("AddRangePrimitiveArray"));
|
||||
AssertIsDeprecated(typeof(DeprecatedFieldsMessage.Builder).GetMethod("ClearPrimitiveArray"));
|
||||
}
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void TestDepreatedMessageValue()
|
||||
{
|
||||
AssertIsDeprecated(typeof(DeprecatedFieldsMessage).GetProperty("HasMessageValue"));
|
||||
|
@ -55,7 +52,7 @@ namespace Google.ProtocolBuffers
|
|||
AssertIsDeprecated(typeof(DeprecatedFieldsMessage.Builder).GetMethod("SetMessageValue", new[] { typeof(DeprecatedChild) }));
|
||||
AssertIsDeprecated(typeof(DeprecatedFieldsMessage.Builder).GetMethod("SetMessageValue", new[] { typeof(DeprecatedChild.Builder) }));
|
||||
}
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void TestDepreatedMessageArray()
|
||||
{
|
||||
AssertIsDeprecated(typeof(DeprecatedFieldsMessage).GetProperty("MessageArrayList"));
|
||||
|
@ -72,7 +69,7 @@ namespace Google.ProtocolBuffers
|
|||
AssertIsDeprecated(typeof(DeprecatedFieldsMessage.Builder).GetMethod("AddRangeMessageArray"));
|
||||
AssertIsDeprecated(typeof(DeprecatedFieldsMessage.Builder).GetMethod("ClearMessageArray"));
|
||||
}
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void TestDepreatedEnumValue()
|
||||
{
|
||||
AssertIsDeprecated(typeof(DeprecatedFieldsMessage).GetProperty("HasEnumValue"));
|
||||
|
@ -83,7 +80,7 @@ namespace Google.ProtocolBuffers
|
|||
AssertIsDeprecated(typeof(DeprecatedFieldsMessage.Builder).GetMethod("ClearEnumValue"));
|
||||
AssertIsDeprecated(typeof(DeprecatedFieldsMessage.Builder).GetMethod("SetEnumValue"));
|
||||
}
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void TestDepreatedEnumArray()
|
||||
{
|
||||
AssertIsDeprecated(typeof(DeprecatedFieldsMessage).GetProperty("EnumArrayList"));
|
||||
|
|
|
@ -34,10 +34,9 @@
|
|||
|
||||
#endregion
|
||||
|
||||
using System.Text;
|
||||
using Google.ProtocolBuffers.Descriptors;
|
||||
using Google.ProtocolBuffers.TestProtos;
|
||||
using Microsoft.VisualStudio.TestTools.UnitTesting;
|
||||
using Xunit;
|
||||
|
||||
namespace Google.ProtocolBuffers
|
||||
{
|
||||
|
@ -45,106 +44,105 @@ namespace Google.ProtocolBuffers
|
|||
/// Tests for descriptors. (Not in its own namespace or broken up into individual classes as the
|
||||
/// size doesn't warrant it. On the other hand, this makes me feel a bit dirty...)
|
||||
/// </summary>
|
||||
[TestClass]
|
||||
public class DescriptorsTest
|
||||
{
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void FileDescriptor()
|
||||
{
|
||||
FileDescriptor file = Unittest.Descriptor;
|
||||
|
||||
Assert.AreEqual("google/protobuf/unittest.proto", file.Name);
|
||||
Assert.AreEqual("protobuf_unittest", file.Package);
|
||||
Assert.Equal("google/protobuf/unittest.proto", file.Name);
|
||||
Assert.Equal("protobuf_unittest", file.Package);
|
||||
|
||||
Assert.AreEqual("UnittestProto", file.Options.JavaOuterClassname);
|
||||
Assert.AreEqual("google/protobuf/unittest.proto", file.Proto.Name);
|
||||
Assert.Equal("UnittestProto", file.Options.JavaOuterClassname);
|
||||
Assert.Equal("google/protobuf/unittest.proto", file.Proto.Name);
|
||||
|
||||
// unittest.proto doesn't have any public imports, but unittest_import.proto does.
|
||||
Assert.AreEqual(0, file.PublicDependencies.Count);
|
||||
Assert.AreEqual(1, UnittestImport.Descriptor.PublicDependencies.Count);
|
||||
Assert.AreEqual(UnittestImportPublic.Descriptor, UnittestImport.Descriptor.PublicDependencies[0]);
|
||||
Assert.Equal(0, file.PublicDependencies.Count);
|
||||
Assert.Equal(1, UnittestImport.Descriptor.PublicDependencies.Count);
|
||||
Assert.Equal(UnittestImportPublic.Descriptor, UnittestImport.Descriptor.PublicDependencies[0]);
|
||||
|
||||
Assert.AreEqual(1, file.Dependencies.Count);
|
||||
Assert.AreEqual(UnittestImport.Descriptor, file.Dependencies[0]);
|
||||
Assert.Equal(1, file.Dependencies.Count);
|
||||
Assert.Equal(UnittestImport.Descriptor, file.Dependencies[0]);
|
||||
|
||||
MessageDescriptor messageType = TestAllTypes.Descriptor;
|
||||
Assert.AreEqual(messageType, file.MessageTypes[0]);
|
||||
Assert.AreEqual(messageType, file.FindTypeByName<MessageDescriptor>("TestAllTypes"));
|
||||
Assert.IsNull(file.FindTypeByName<MessageDescriptor>("NoSuchType"));
|
||||
Assert.IsNull(file.FindTypeByName<MessageDescriptor>("protobuf_unittest.TestAllTypes"));
|
||||
Assert.Equal(messageType, file.MessageTypes[0]);
|
||||
Assert.Equal(messageType, file.FindTypeByName<MessageDescriptor>("TestAllTypes"));
|
||||
Assert.Null(file.FindTypeByName<MessageDescriptor>("NoSuchType"));
|
||||
Assert.Null(file.FindTypeByName<MessageDescriptor>("protobuf_unittest.TestAllTypes"));
|
||||
for (int i = 0; i < file.MessageTypes.Count; i++)
|
||||
{
|
||||
Assert.AreEqual(i, file.MessageTypes[i].Index);
|
||||
Assert.Equal(i, file.MessageTypes[i].Index);
|
||||
}
|
||||
|
||||
Assert.AreEqual(file.EnumTypes[0], file.FindTypeByName<EnumDescriptor>("ForeignEnum"));
|
||||
Assert.IsNull(file.FindTypeByName<EnumDescriptor>("NoSuchType"));
|
||||
Assert.IsNull(file.FindTypeByName<EnumDescriptor>("protobuf_unittest.ForeignEnum"));
|
||||
Assert.AreEqual(1, UnittestImport.Descriptor.EnumTypes.Count);
|
||||
Assert.AreEqual("ImportEnum", UnittestImport.Descriptor.EnumTypes[0].Name);
|
||||
Assert.Equal(file.EnumTypes[0], file.FindTypeByName<EnumDescriptor>("ForeignEnum"));
|
||||
Assert.Null(file.FindTypeByName<EnumDescriptor>("NoSuchType"));
|
||||
Assert.Null(file.FindTypeByName<EnumDescriptor>("protobuf_unittest.ForeignEnum"));
|
||||
Assert.Equal(1, UnittestImport.Descriptor.EnumTypes.Count);
|
||||
Assert.Equal("ImportEnum", UnittestImport.Descriptor.EnumTypes[0].Name);
|
||||
for (int i = 0; i < file.EnumTypes.Count; i++)
|
||||
{
|
||||
Assert.AreEqual(i, file.EnumTypes[i].Index);
|
||||
Assert.Equal(i, file.EnumTypes[i].Index);
|
||||
}
|
||||
|
||||
FieldDescriptor extension = Unittest.OptionalInt32Extension.Descriptor;
|
||||
Assert.AreEqual(extension, file.Extensions[0]);
|
||||
Assert.AreEqual(extension, file.FindTypeByName<FieldDescriptor>("optional_int32_extension"));
|
||||
Assert.IsNull(file.FindTypeByName<FieldDescriptor>("no_such_ext"));
|
||||
Assert.IsNull(file.FindTypeByName<FieldDescriptor>("protobuf_unittest.optional_int32_extension"));
|
||||
Assert.AreEqual(0, UnittestImport.Descriptor.Extensions.Count);
|
||||
Assert.Equal(extension, file.Extensions[0]);
|
||||
Assert.Equal(extension, file.FindTypeByName<FieldDescriptor>("optional_int32_extension"));
|
||||
Assert.Null(file.FindTypeByName<FieldDescriptor>("no_such_ext"));
|
||||
Assert.Null(file.FindTypeByName<FieldDescriptor>("protobuf_unittest.optional_int32_extension"));
|
||||
Assert.Equal(0, UnittestImport.Descriptor.Extensions.Count);
|
||||
for (int i = 0; i < file.Extensions.Count; i++)
|
||||
{
|
||||
Assert.AreEqual(i, file.Extensions[i].Index);
|
||||
Assert.Equal(i, file.Extensions[i].Index);
|
||||
}
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void MessageDescriptor()
|
||||
{
|
||||
MessageDescriptor messageType = TestAllTypes.Descriptor;
|
||||
MessageDescriptor nestedType = TestAllTypes.Types.NestedMessage.Descriptor;
|
||||
|
||||
Assert.AreEqual("TestAllTypes", messageType.Name);
|
||||
Assert.AreEqual("protobuf_unittest.TestAllTypes", messageType.FullName);
|
||||
Assert.AreEqual(Unittest.Descriptor, messageType.File);
|
||||
Assert.IsNull(messageType.ContainingType);
|
||||
Assert.AreEqual(DescriptorProtos.MessageOptions.DefaultInstance, messageType.Options);
|
||||
Assert.AreEqual("TestAllTypes", messageType.Proto.Name);
|
||||
Assert.Equal("TestAllTypes", messageType.Name);
|
||||
Assert.Equal("protobuf_unittest.TestAllTypes", messageType.FullName);
|
||||
Assert.Equal(Unittest.Descriptor, messageType.File);
|
||||
Assert.Null(messageType.ContainingType);
|
||||
Assert.Equal(DescriptorProtos.MessageOptions.DefaultInstance, messageType.Options);
|
||||
Assert.Equal("TestAllTypes", messageType.Proto.Name);
|
||||
|
||||
Assert.AreEqual("NestedMessage", nestedType.Name);
|
||||
Assert.AreEqual("protobuf_unittest.TestAllTypes.NestedMessage", nestedType.FullName);
|
||||
Assert.AreEqual(Unittest.Descriptor, nestedType.File);
|
||||
Assert.AreEqual(messageType, nestedType.ContainingType);
|
||||
Assert.Equal("NestedMessage", nestedType.Name);
|
||||
Assert.Equal("protobuf_unittest.TestAllTypes.NestedMessage", nestedType.FullName);
|
||||
Assert.Equal(Unittest.Descriptor, nestedType.File);
|
||||
Assert.Equal(messageType, nestedType.ContainingType);
|
||||
|
||||
FieldDescriptor field = messageType.Fields[0];
|
||||
Assert.AreEqual("optional_int32", field.Name);
|
||||
Assert.AreEqual(field, messageType.FindDescriptor<FieldDescriptor>("optional_int32"));
|
||||
Assert.IsNull(messageType.FindDescriptor<FieldDescriptor>("no_such_field"));
|
||||
Assert.AreEqual(field, messageType.FindFieldByNumber(1));
|
||||
Assert.IsNull(messageType.FindFieldByNumber(571283));
|
||||
Assert.Equal("optional_int32", field.Name);
|
||||
Assert.Equal(field, messageType.FindDescriptor<FieldDescriptor>("optional_int32"));
|
||||
Assert.Null(messageType.FindDescriptor<FieldDescriptor>("no_such_field"));
|
||||
Assert.Equal(field, messageType.FindFieldByNumber(1));
|
||||
Assert.Null(messageType.FindFieldByNumber(571283));
|
||||
for (int i = 0; i < messageType.Fields.Count; i++)
|
||||
{
|
||||
Assert.AreEqual(i, messageType.Fields[i].Index);
|
||||
Assert.Equal(i, messageType.Fields[i].Index);
|
||||
}
|
||||
|
||||
Assert.AreEqual(nestedType, messageType.NestedTypes[0]);
|
||||
Assert.AreEqual(nestedType, messageType.FindDescriptor<MessageDescriptor>("NestedMessage"));
|
||||
Assert.IsNull(messageType.FindDescriptor<MessageDescriptor>("NoSuchType"));
|
||||
Assert.Equal(nestedType, messageType.NestedTypes[0]);
|
||||
Assert.Equal(nestedType, messageType.FindDescriptor<MessageDescriptor>("NestedMessage"));
|
||||
Assert.Null(messageType.FindDescriptor<MessageDescriptor>("NoSuchType"));
|
||||
for (int i = 0; i < messageType.NestedTypes.Count; i++)
|
||||
{
|
||||
Assert.AreEqual(i, messageType.NestedTypes[i].Index);
|
||||
Assert.Equal(i, messageType.NestedTypes[i].Index);
|
||||
}
|
||||
|
||||
Assert.AreEqual(messageType.EnumTypes[0], messageType.FindDescriptor<EnumDescriptor>("NestedEnum"));
|
||||
Assert.IsNull(messageType.FindDescriptor<EnumDescriptor>("NoSuchType"));
|
||||
Assert.Equal(messageType.EnumTypes[0], messageType.FindDescriptor<EnumDescriptor>("NestedEnum"));
|
||||
Assert.Null(messageType.FindDescriptor<EnumDescriptor>("NoSuchType"));
|
||||
for (int i = 0; i < messageType.EnumTypes.Count; i++)
|
||||
{
|
||||
Assert.AreEqual(i, messageType.EnumTypes[i].Index);
|
||||
Assert.Equal(i, messageType.EnumTypes[i].Index);
|
||||
}
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void FieldDescriptor()
|
||||
{
|
||||
MessageDescriptor messageType = TestAllTypes.Descriptor;
|
||||
|
@ -155,54 +153,54 @@ namespace Google.ProtocolBuffers
|
|||
FieldDescriptor extension = Unittest.OptionalInt32Extension.Descriptor;
|
||||
FieldDescriptor nestedExtension = TestRequired.Single.Descriptor;
|
||||
|
||||
Assert.AreEqual("optional_int32", primitiveField.Name);
|
||||
Assert.AreEqual("protobuf_unittest.TestAllTypes.optional_int32",
|
||||
Assert.Equal("optional_int32", primitiveField.Name);
|
||||
Assert.Equal("protobuf_unittest.TestAllTypes.optional_int32",
|
||||
primitiveField.FullName);
|
||||
Assert.AreEqual(1, primitiveField.FieldNumber);
|
||||
Assert.AreEqual(messageType, primitiveField.ContainingType);
|
||||
Assert.AreEqual(Unittest.Descriptor, primitiveField.File);
|
||||
Assert.AreEqual(FieldType.Int32, primitiveField.FieldType);
|
||||
Assert.AreEqual(MappedType.Int32, primitiveField.MappedType);
|
||||
Assert.AreEqual(DescriptorProtos.FieldOptions.DefaultInstance, primitiveField.Options);
|
||||
Assert.IsFalse(primitiveField.IsExtension);
|
||||
Assert.AreEqual("optional_int32", primitiveField.Proto.Name);
|
||||
Assert.Equal(1, primitiveField.FieldNumber);
|
||||
Assert.Equal(messageType, primitiveField.ContainingType);
|
||||
Assert.Equal(Unittest.Descriptor, primitiveField.File);
|
||||
Assert.Equal(FieldType.Int32, primitiveField.FieldType);
|
||||
Assert.Equal(MappedType.Int32, primitiveField.MappedType);
|
||||
Assert.Equal(DescriptorProtos.FieldOptions.DefaultInstance, primitiveField.Options);
|
||||
Assert.False(primitiveField.IsExtension);
|
||||
Assert.Equal("optional_int32", primitiveField.Proto.Name);
|
||||
|
||||
Assert.AreEqual("optional_nested_enum", enumField.Name);
|
||||
Assert.AreEqual(FieldType.Enum, enumField.FieldType);
|
||||
Assert.AreEqual(MappedType.Enum, enumField.MappedType);
|
||||
// Assert.AreEqual(TestAllTypes.Types.NestedEnum.DescriptorProtoFile, enumField.EnumType);
|
||||
Assert.Equal("optional_nested_enum", enumField.Name);
|
||||
Assert.Equal(FieldType.Enum, enumField.FieldType);
|
||||
Assert.Equal(MappedType.Enum, enumField.MappedType);
|
||||
// Assert.Equal(TestAllTypes.Types.NestedEnum.DescriptorProtoFile, enumField.EnumType);
|
||||
|
||||
Assert.AreEqual("optional_foreign_message", messageField.Name);
|
||||
Assert.AreEqual(FieldType.Message, messageField.FieldType);
|
||||
Assert.AreEqual(MappedType.Message, messageField.MappedType);
|
||||
Assert.AreEqual(ForeignMessage.Descriptor, messageField.MessageType);
|
||||
Assert.Equal("optional_foreign_message", messageField.Name);
|
||||
Assert.Equal(FieldType.Message, messageField.FieldType);
|
||||
Assert.Equal(MappedType.Message, messageField.MappedType);
|
||||
Assert.Equal(ForeignMessage.Descriptor, messageField.MessageType);
|
||||
|
||||
Assert.AreEqual("optional_cord", cordField.Name);
|
||||
Assert.AreEqual(FieldType.String, cordField.FieldType);
|
||||
Assert.AreEqual(MappedType.String, cordField.MappedType);
|
||||
Assert.AreEqual(DescriptorProtos.FieldOptions.Types.CType.CORD, cordField.Options.Ctype);
|
||||
Assert.Equal("optional_cord", cordField.Name);
|
||||
Assert.Equal(FieldType.String, cordField.FieldType);
|
||||
Assert.Equal(MappedType.String, cordField.MappedType);
|
||||
Assert.Equal(DescriptorProtos.FieldOptions.Types.CType.CORD, cordField.Options.Ctype);
|
||||
|
||||
Assert.AreEqual("optional_int32_extension", extension.Name);
|
||||
Assert.AreEqual("protobuf_unittest.optional_int32_extension", extension.FullName);
|
||||
Assert.AreEqual(1, extension.FieldNumber);
|
||||
Assert.AreEqual(TestAllExtensions.Descriptor, extension.ContainingType);
|
||||
Assert.AreEqual(Unittest.Descriptor, extension.File);
|
||||
Assert.AreEqual(FieldType.Int32, extension.FieldType);
|
||||
Assert.AreEqual(MappedType.Int32, extension.MappedType);
|
||||
Assert.AreEqual(DescriptorProtos.FieldOptions.DefaultInstance,
|
||||
Assert.Equal("optional_int32_extension", extension.Name);
|
||||
Assert.Equal("protobuf_unittest.optional_int32_extension", extension.FullName);
|
||||
Assert.Equal(1, extension.FieldNumber);
|
||||
Assert.Equal(TestAllExtensions.Descriptor, extension.ContainingType);
|
||||
Assert.Equal(Unittest.Descriptor, extension.File);
|
||||
Assert.Equal(FieldType.Int32, extension.FieldType);
|
||||
Assert.Equal(MappedType.Int32, extension.MappedType);
|
||||
Assert.Equal(DescriptorProtos.FieldOptions.DefaultInstance,
|
||||
extension.Options);
|
||||
Assert.IsTrue(extension.IsExtension);
|
||||
Assert.AreEqual(null, extension.ExtensionScope);
|
||||
Assert.AreEqual("optional_int32_extension", extension.Proto.Name);
|
||||
Assert.True(extension.IsExtension);
|
||||
Assert.Equal(null, extension.ExtensionScope);
|
||||
Assert.Equal("optional_int32_extension", extension.Proto.Name);
|
||||
|
||||
Assert.AreEqual("single", nestedExtension.Name);
|
||||
Assert.AreEqual("protobuf_unittest.TestRequired.single",
|
||||
Assert.Equal("single", nestedExtension.Name);
|
||||
Assert.Equal("protobuf_unittest.TestRequired.single",
|
||||
nestedExtension.FullName);
|
||||
Assert.AreEqual(TestRequired.Descriptor,
|
||||
Assert.Equal(TestRequired.Descriptor,
|
||||
nestedExtension.ExtensionScope);
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void FieldDescriptorLabel()
|
||||
{
|
||||
FieldDescriptor requiredField =
|
||||
|
@ -212,76 +210,76 @@ namespace Google.ProtocolBuffers
|
|||
FieldDescriptor repeatedField =
|
||||
TestAllTypes.Descriptor.FindDescriptor<FieldDescriptor>("repeated_int32");
|
||||
|
||||
Assert.IsTrue(requiredField.IsRequired);
|
||||
Assert.IsFalse(requiredField.IsRepeated);
|
||||
Assert.IsFalse(optionalField.IsRequired);
|
||||
Assert.IsFalse(optionalField.IsRepeated);
|
||||
Assert.IsFalse(repeatedField.IsRequired);
|
||||
Assert.IsTrue(repeatedField.IsRepeated);
|
||||
Assert.True(requiredField.IsRequired);
|
||||
Assert.False(requiredField.IsRepeated);
|
||||
Assert.False(optionalField.IsRequired);
|
||||
Assert.False(optionalField.IsRepeated);
|
||||
Assert.False(repeatedField.IsRequired);
|
||||
Assert.True(repeatedField.IsRepeated);
|
||||
}
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void FieldDescriptorDefault()
|
||||
{
|
||||
MessageDescriptor d = TestAllTypes.Descriptor;
|
||||
Assert.IsFalse(d.FindDescriptor<FieldDescriptor>("optional_int32").HasDefaultValue);
|
||||
Assert.AreEqual<object>(0, d.FindDescriptor<FieldDescriptor>("optional_int32").DefaultValue);
|
||||
Assert.IsTrue(d.FindDescriptor<FieldDescriptor>("default_int32").HasDefaultValue);
|
||||
Assert.AreEqual<object>(41, d.FindDescriptor<FieldDescriptor>("default_int32").DefaultValue);
|
||||
Assert.False(d.FindDescriptor<FieldDescriptor>("optional_int32").HasDefaultValue);
|
||||
Assert.Equal<object>(0, d.FindDescriptor<FieldDescriptor>("optional_int32").DefaultValue);
|
||||
Assert.True(d.FindDescriptor<FieldDescriptor>("default_int32").HasDefaultValue);
|
||||
Assert.Equal<object>(41, d.FindDescriptor<FieldDescriptor>("default_int32").DefaultValue);
|
||||
|
||||
d = TestExtremeDefaultValues.Descriptor;
|
||||
Assert.AreEqual<object>(TestExtremeDefaultValues.DefaultInstance.EscapedBytes,
|
||||
Assert.Equal<object>(TestExtremeDefaultValues.DefaultInstance.EscapedBytes,
|
||||
d.FindDescriptor<FieldDescriptor>("escaped_bytes").DefaultValue);
|
||||
|
||||
Assert.AreEqual<object>(uint.MaxValue, d.FindDescriptor<FieldDescriptor>("large_uint32").DefaultValue);
|
||||
Assert.AreEqual<object>(ulong.MaxValue, d.FindDescriptor<FieldDescriptor>("large_uint64").DefaultValue);
|
||||
Assert.Equal<object>(uint.MaxValue, d.FindDescriptor<FieldDescriptor>("large_uint32").DefaultValue);
|
||||
Assert.Equal<object>(ulong.MaxValue, d.FindDescriptor<FieldDescriptor>("large_uint64").DefaultValue);
|
||||
}
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void EnumDescriptor()
|
||||
{
|
||||
// Note: this test is a bit different to the Java version because there's no static way of getting to the descriptor
|
||||
EnumDescriptor enumType = Unittest.Descriptor.FindTypeByName<EnumDescriptor>("ForeignEnum");
|
||||
EnumDescriptor nestedType = TestAllTypes.Descriptor.FindDescriptor<EnumDescriptor>("NestedEnum");
|
||||
|
||||
Assert.AreEqual("ForeignEnum", enumType.Name);
|
||||
Assert.AreEqual("protobuf_unittest.ForeignEnum", enumType.FullName);
|
||||
Assert.AreEqual(Unittest.Descriptor, enumType.File);
|
||||
Assert.IsNull(enumType.ContainingType);
|
||||
Assert.AreEqual(DescriptorProtos.EnumOptions.DefaultInstance,
|
||||
Assert.Equal("ForeignEnum", enumType.Name);
|
||||
Assert.Equal("protobuf_unittest.ForeignEnum", enumType.FullName);
|
||||
Assert.Equal(Unittest.Descriptor, enumType.File);
|
||||
Assert.Null(enumType.ContainingType);
|
||||
Assert.Equal(DescriptorProtos.EnumOptions.DefaultInstance,
|
||||
enumType.Options);
|
||||
|
||||
Assert.AreEqual("NestedEnum", nestedType.Name);
|
||||
Assert.AreEqual("protobuf_unittest.TestAllTypes.NestedEnum",
|
||||
Assert.Equal("NestedEnum", nestedType.Name);
|
||||
Assert.Equal("protobuf_unittest.TestAllTypes.NestedEnum",
|
||||
nestedType.FullName);
|
||||
Assert.AreEqual(Unittest.Descriptor, nestedType.File);
|
||||
Assert.AreEqual(TestAllTypes.Descriptor, nestedType.ContainingType);
|
||||
Assert.Equal(Unittest.Descriptor, nestedType.File);
|
||||
Assert.Equal(TestAllTypes.Descriptor, nestedType.ContainingType);
|
||||
|
||||
EnumValueDescriptor value = enumType.FindValueByName("FOREIGN_FOO");
|
||||
Assert.AreEqual(value, enumType.Values[0]);
|
||||
Assert.AreEqual("FOREIGN_FOO", value.Name);
|
||||
Assert.AreEqual(4, value.Number);
|
||||
Assert.AreEqual((int) ForeignEnum.FOREIGN_FOO, value.Number);
|
||||
Assert.AreEqual(value, enumType.FindValueByNumber(4));
|
||||
Assert.IsNull(enumType.FindValueByName("NO_SUCH_VALUE"));
|
||||
Assert.Equal(value, enumType.Values[0]);
|
||||
Assert.Equal("FOREIGN_FOO", value.Name);
|
||||
Assert.Equal(4, value.Number);
|
||||
Assert.Equal((int) ForeignEnum.FOREIGN_FOO, value.Number);
|
||||
Assert.Equal(value, enumType.FindValueByNumber(4));
|
||||
Assert.Null(enumType.FindValueByName("NO_SUCH_VALUE"));
|
||||
for (int i = 0; i < enumType.Values.Count; i++)
|
||||
{
|
||||
Assert.AreEqual(i, enumType.Values[i].Index);
|
||||
Assert.Equal(i, enumType.Values[i].Index);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void CustomOptions()
|
||||
{
|
||||
MessageDescriptor descriptor = TestMessageWithCustomOptions.Descriptor;
|
||||
Assert.IsTrue(descriptor.Options.HasExtension(UnittestCustomOptions.MessageOpt1));
|
||||
Assert.AreEqual(-56, descriptor.Options.GetExtension(UnittestCustomOptions.MessageOpt1));
|
||||
Assert.True(descriptor.Options.HasExtension(UnittestCustomOptions.MessageOpt1));
|
||||
Assert.Equal(-56, descriptor.Options.GetExtension(UnittestCustomOptions.MessageOpt1));
|
||||
|
||||
|
||||
FieldDescriptor field = descriptor.FindFieldByName("field1");
|
||||
Assert.IsNotNull(field);
|
||||
Assert.NotNull(field);
|
||||
|
||||
Assert.IsTrue(field.Options.HasExtension(UnittestCustomOptions.FieldOpt1));
|
||||
Assert.AreEqual(8765432109uL, field.Options.GetExtension(UnittestCustomOptions.FieldOpt1));
|
||||
Assert.True(field.Options.HasExtension(UnittestCustomOptions.FieldOpt1));
|
||||
Assert.Equal(8765432109uL, field.Options.GetExtension(UnittestCustomOptions.FieldOpt1));
|
||||
|
||||
}
|
||||
}
|
||||
|
|
|
@ -37,26 +37,24 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using Google.ProtocolBuffers.TestProtos;
|
||||
using Microsoft.VisualStudio.TestTools.UnitTesting;
|
||||
using Xunit;
|
||||
|
||||
namespace Google.ProtocolBuffers
|
||||
{
|
||||
[TestClass]
|
||||
public class DynamicMessageTest
|
||||
{
|
||||
private ReflectionTester reflectionTester;
|
||||
private ReflectionTester extensionsReflectionTester;
|
||||
private ReflectionTester packedReflectionTester;
|
||||
|
||||
[TestInitialize]
|
||||
public void SetUp()
|
||||
public DynamicMessageTest()
|
||||
{
|
||||
reflectionTester = ReflectionTester.CreateTestAllTypesInstance();
|
||||
extensionsReflectionTester = ReflectionTester.CreateTestAllExtensionsInstance();
|
||||
packedReflectionTester = ReflectionTester.CreateTestPackedTypesInstance();
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void DynamicMessageAccessors()
|
||||
{
|
||||
IBuilder builder = DynamicMessage.CreateBuilder(TestAllTypes.Descriptor);
|
||||
|
@ -65,30 +63,22 @@ namespace Google.ProtocolBuffers
|
|||
reflectionTester.AssertAllFieldsSetViaReflection(message);
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void DoubleBuildError()
|
||||
{
|
||||
DynamicMessage.Builder builder = DynamicMessage.CreateBuilder(TestAllTypes.Descriptor);
|
||||
builder.Build();
|
||||
try
|
||||
{
|
||||
builder.Build();
|
||||
Assert.Fail("Should have thrown exception.");
|
||||
}
|
||||
catch (InvalidOperationException)
|
||||
{
|
||||
// Success.
|
||||
}
|
||||
Assert.Throws<InvalidOperationException>(() => builder.Build());
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void DynamicMessageSettersRejectNull()
|
||||
{
|
||||
IBuilder builder = DynamicMessage.CreateBuilder(TestAllTypes.Descriptor);
|
||||
reflectionTester.AssertReflectionSettersRejectNull(builder);
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void DynamicMessageExtensionAccessors()
|
||||
{
|
||||
// We don't need to extensively test DynamicMessage's handling of
|
||||
|
@ -100,14 +90,14 @@ namespace Google.ProtocolBuffers
|
|||
extensionsReflectionTester.AssertAllFieldsSetViaReflection(message);
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void DynamicMessageExtensionSettersRejectNull()
|
||||
{
|
||||
IBuilder builder = DynamicMessage.CreateBuilder(TestAllExtensions.Descriptor);
|
||||
extensionsReflectionTester.AssertReflectionSettersRejectNull(builder);
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void DynamicMessageRepeatedSetters()
|
||||
{
|
||||
IBuilder builder = DynamicMessage.CreateBuilder(TestAllTypes.Descriptor);
|
||||
|
@ -117,21 +107,21 @@ namespace Google.ProtocolBuffers
|
|||
reflectionTester.AssertRepeatedFieldsModifiedViaReflection(message);
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void DynamicMessageRepeatedSettersRejectNull()
|
||||
{
|
||||
IBuilder builder = DynamicMessage.CreateBuilder(TestAllTypes.Descriptor);
|
||||
reflectionTester.AssertReflectionRepeatedSettersRejectNull(builder);
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void DynamicMessageDefaults()
|
||||
{
|
||||
reflectionTester.AssertClearViaReflection(DynamicMessage.GetDefaultInstance(TestAllTypes.Descriptor));
|
||||
reflectionTester.AssertClearViaReflection(DynamicMessage.CreateBuilder(TestAllTypes.Descriptor).Build());
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void DynamicMessageSerializedSize()
|
||||
{
|
||||
TestAllTypes message = TestUtil.GetAllSet();
|
||||
|
@ -140,10 +130,10 @@ namespace Google.ProtocolBuffers
|
|||
reflectionTester.SetAllFieldsViaReflection(dynamicBuilder);
|
||||
IMessage dynamicMessage = dynamicBuilder.WeakBuild();
|
||||
|
||||
Assert.AreEqual(message.SerializedSize, dynamicMessage.SerializedSize);
|
||||
Assert.Equal(message.SerializedSize, dynamicMessage.SerializedSize);
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void DynamicMessageSerialization()
|
||||
{
|
||||
IBuilder builder = DynamicMessage.CreateBuilder(TestAllTypes.Descriptor);
|
||||
|
@ -156,10 +146,10 @@ namespace Google.ProtocolBuffers
|
|||
TestUtil.AssertAllFieldsSet(message2);
|
||||
|
||||
// In fact, the serialized forms should be exactly the same, byte-for-byte.
|
||||
Assert.AreEqual(TestUtil.GetAllSet().ToByteString(), rawBytes);
|
||||
Assert.Equal(TestUtil.GetAllSet().ToByteString(), rawBytes);
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void DynamicMessageParsing()
|
||||
{
|
||||
TestAllTypes.Builder builder = TestAllTypes.CreateBuilder();
|
||||
|
@ -172,7 +162,7 @@ namespace Google.ProtocolBuffers
|
|||
reflectionTester.AssertAllFieldsSetViaReflection(message2);
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void DynamicMessagePackedSerialization()
|
||||
{
|
||||
IBuilder builder = DynamicMessage.CreateBuilder(TestPackedTypes.Descriptor);
|
||||
|
@ -185,11 +175,11 @@ namespace Google.ProtocolBuffers
|
|||
TestUtil.AssertPackedFieldsSet(message2);
|
||||
|
||||
// In fact, the serialized forms should be exactly the same, byte-for-byte.
|
||||
Assert.AreEqual(TestUtil.GetPackedSet().ToByteString(), rawBytes);
|
||||
Assert.Equal(TestUtil.GetPackedSet().ToByteString(), rawBytes);
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
public void testDynamicMessagePackedParsing()
|
||||
[Fact]
|
||||
public void DynamicMessagePackedParsing()
|
||||
{
|
||||
TestPackedTypes.Builder builder = TestPackedTypes.CreateBuilder();
|
||||
TestUtil.SetPackedFields(builder);
|
||||
|
@ -201,7 +191,7 @@ namespace Google.ProtocolBuffers
|
|||
packedReflectionTester.AssertPackedFieldsSetViaReflection(message2);
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void DynamicMessageCopy()
|
||||
{
|
||||
TestAllTypes.Builder builder = TestAllTypes.CreateBuilder();
|
||||
|
@ -212,7 +202,7 @@ namespace Google.ProtocolBuffers
|
|||
reflectionTester.AssertAllFieldsSetViaReflection(copy);
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void ToBuilder()
|
||||
{
|
||||
DynamicMessage.Builder builder =
|
||||
|
@ -230,8 +220,8 @@ namespace Google.ProtocolBuffers
|
|||
reflectionTester.AssertAllFieldsSetViaReflection(derived);
|
||||
|
||||
IList<ulong> values = derived.UnknownFields.FieldDictionary[unknownFieldNum].VarintList;
|
||||
Assert.AreEqual(1, values.Count);
|
||||
Assert.AreEqual(unknownFieldVal, values[0]);
|
||||
Assert.Equal(1, values.Count);
|
||||
Assert.Equal(unknownFieldVal, values[0]);
|
||||
}
|
||||
}
|
||||
}
|
|
@ -35,24 +35,22 @@
|
|||
#endregion
|
||||
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using Google.ProtocolBuffers;
|
||||
using Google.ProtocolBuffers.TestProtos;
|
||||
using Microsoft.VisualStudio.TestTools.UnitTesting;
|
||||
using Xunit;
|
||||
|
||||
namespace Google.ProtocolBuffers
|
||||
{
|
||||
[TestClass]
|
||||
public class ExtendableMessageTest
|
||||
{
|
||||
[TestMethod, ExpectedException(typeof(ArgumentException))]
|
||||
[Fact]
|
||||
public void ExtensionWriterInvalidExtension()
|
||||
{
|
||||
TestPackedExtensions.CreateBuilder()[Unittest.OptionalForeignMessageExtension.Descriptor] =
|
||||
ForeignMessage.DefaultInstance;
|
||||
Assert.Throws<ArgumentException>(() =>
|
||||
TestPackedExtensions.CreateBuilder()[Unittest.OptionalForeignMessageExtension.Descriptor] =
|
||||
ForeignMessage.DefaultInstance);
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void ExtensionWriterTest()
|
||||
{
|
||||
TestAllExtensions.Builder builder = TestAllExtensions.CreateBuilder()
|
||||
|
@ -128,75 +126,75 @@ namespace Google.ProtocolBuffers
|
|||
registry);
|
||||
TestAllExtensions copy = copyBuilder.Build();
|
||||
|
||||
TestUtil.AssertBytesEqual(msg.ToByteArray(), copy.ToByteArray());
|
||||
Assert.Equal(msg.ToByteArray(), copy.ToByteArray());
|
||||
|
||||
Assert.AreEqual(true, copy.GetExtension(Unittest.DefaultBoolExtension));
|
||||
Assert.AreEqual(ByteString.CopyFromUtf8("123"), copy.GetExtension(Unittest.DefaultBytesExtension));
|
||||
Assert.AreEqual("123", copy.GetExtension(Unittest.DefaultCordExtension));
|
||||
Assert.AreEqual(123, copy.GetExtension(Unittest.DefaultDoubleExtension));
|
||||
Assert.AreEqual(123u, copy.GetExtension(Unittest.DefaultFixed32Extension));
|
||||
Assert.AreEqual(123u, copy.GetExtension(Unittest.DefaultFixed64Extension));
|
||||
Assert.AreEqual(123, copy.GetExtension(Unittest.DefaultFloatExtension));
|
||||
Assert.AreEqual(ForeignEnum.FOREIGN_BAZ, copy.GetExtension(Unittest.DefaultForeignEnumExtension));
|
||||
Assert.AreEqual(ImportEnum.IMPORT_BAZ, copy.GetExtension(Unittest.DefaultImportEnumExtension));
|
||||
Assert.AreEqual(123, copy.GetExtension(Unittest.DefaultInt32Extension));
|
||||
Assert.AreEqual(123, copy.GetExtension(Unittest.DefaultInt64Extension));
|
||||
Assert.AreEqual(TestAllTypes.Types.NestedEnum.FOO,
|
||||
Assert.Equal(true, copy.GetExtension(Unittest.DefaultBoolExtension));
|
||||
Assert.Equal(ByteString.CopyFromUtf8("123"), copy.GetExtension(Unittest.DefaultBytesExtension));
|
||||
Assert.Equal("123", copy.GetExtension(Unittest.DefaultCordExtension));
|
||||
Assert.Equal(123, copy.GetExtension(Unittest.DefaultDoubleExtension));
|
||||
Assert.Equal(123u, copy.GetExtension(Unittest.DefaultFixed32Extension));
|
||||
Assert.Equal(123u, copy.GetExtension(Unittest.DefaultFixed64Extension));
|
||||
Assert.Equal(123, copy.GetExtension(Unittest.DefaultFloatExtension));
|
||||
Assert.Equal(ForeignEnum.FOREIGN_BAZ, copy.GetExtension(Unittest.DefaultForeignEnumExtension));
|
||||
Assert.Equal(ImportEnum.IMPORT_BAZ, copy.GetExtension(Unittest.DefaultImportEnumExtension));
|
||||
Assert.Equal(123, copy.GetExtension(Unittest.DefaultInt32Extension));
|
||||
Assert.Equal(123, copy.GetExtension(Unittest.DefaultInt64Extension));
|
||||
Assert.Equal(TestAllTypes.Types.NestedEnum.FOO,
|
||||
copy.GetExtension(Unittest.DefaultNestedEnumExtension));
|
||||
Assert.AreEqual(123, copy.GetExtension(Unittest.DefaultSfixed32Extension));
|
||||
Assert.AreEqual(123, copy.GetExtension(Unittest.DefaultSfixed64Extension));
|
||||
Assert.AreEqual(123, copy.GetExtension(Unittest.DefaultSint32Extension));
|
||||
Assert.AreEqual(123, copy.GetExtension(Unittest.DefaultSint64Extension));
|
||||
Assert.AreEqual("123", copy.GetExtension(Unittest.DefaultStringExtension));
|
||||
Assert.AreEqual("123", copy.GetExtension(Unittest.DefaultStringPieceExtension));
|
||||
Assert.AreEqual(123u, copy.GetExtension(Unittest.DefaultUint32Extension));
|
||||
Assert.AreEqual(123u, copy.GetExtension(Unittest.DefaultUint64Extension));
|
||||
Assert.Equal(123, copy.GetExtension(Unittest.DefaultSfixed32Extension));
|
||||
Assert.Equal(123, copy.GetExtension(Unittest.DefaultSfixed64Extension));
|
||||
Assert.Equal(123, copy.GetExtension(Unittest.DefaultSint32Extension));
|
||||
Assert.Equal(123, copy.GetExtension(Unittest.DefaultSint64Extension));
|
||||
Assert.Equal("123", copy.GetExtension(Unittest.DefaultStringExtension));
|
||||
Assert.Equal("123", copy.GetExtension(Unittest.DefaultStringPieceExtension));
|
||||
Assert.Equal(123u, copy.GetExtension(Unittest.DefaultUint32Extension));
|
||||
Assert.Equal(123u, copy.GetExtension(Unittest.DefaultUint64Extension));
|
||||
|
||||
Assert.AreEqual(true, copy.GetExtension(Unittest.OptionalBoolExtension));
|
||||
Assert.AreEqual(ByteString.CopyFromUtf8("123"), copy.GetExtension(Unittest.OptionalBytesExtension));
|
||||
Assert.AreEqual("123", copy.GetExtension(Unittest.OptionalCordExtension));
|
||||
Assert.AreEqual(123, copy.GetExtension(Unittest.OptionalDoubleExtension));
|
||||
Assert.AreEqual(123u, copy.GetExtension(Unittest.OptionalFixed32Extension));
|
||||
Assert.AreEqual(123u, copy.GetExtension(Unittest.OptionalFixed64Extension));
|
||||
Assert.AreEqual(123, copy.GetExtension(Unittest.OptionalFloatExtension));
|
||||
Assert.AreEqual(ForeignEnum.FOREIGN_BAZ, copy.GetExtension(Unittest.OptionalForeignEnumExtension));
|
||||
Assert.AreEqual(ImportEnum.IMPORT_BAZ, copy.GetExtension(Unittest.OptionalImportEnumExtension));
|
||||
Assert.AreEqual(123, copy.GetExtension(Unittest.OptionalInt32Extension));
|
||||
Assert.AreEqual(123, copy.GetExtension(Unittest.OptionalInt64Extension));
|
||||
Assert.AreEqual(TestAllTypes.Types.NestedEnum.FOO,
|
||||
Assert.Equal(true, copy.GetExtension(Unittest.OptionalBoolExtension));
|
||||
Assert.Equal(ByteString.CopyFromUtf8("123"), copy.GetExtension(Unittest.OptionalBytesExtension));
|
||||
Assert.Equal("123", copy.GetExtension(Unittest.OptionalCordExtension));
|
||||
Assert.Equal(123, copy.GetExtension(Unittest.OptionalDoubleExtension));
|
||||
Assert.Equal(123u, copy.GetExtension(Unittest.OptionalFixed32Extension));
|
||||
Assert.Equal(123u, copy.GetExtension(Unittest.OptionalFixed64Extension));
|
||||
Assert.Equal(123, copy.GetExtension(Unittest.OptionalFloatExtension));
|
||||
Assert.Equal(ForeignEnum.FOREIGN_BAZ, copy.GetExtension(Unittest.OptionalForeignEnumExtension));
|
||||
Assert.Equal(ImportEnum.IMPORT_BAZ, copy.GetExtension(Unittest.OptionalImportEnumExtension));
|
||||
Assert.Equal(123, copy.GetExtension(Unittest.OptionalInt32Extension));
|
||||
Assert.Equal(123, copy.GetExtension(Unittest.OptionalInt64Extension));
|
||||
Assert.Equal(TestAllTypes.Types.NestedEnum.FOO,
|
||||
copy.GetExtension(Unittest.OptionalNestedEnumExtension));
|
||||
Assert.AreEqual(123, copy.GetExtension(Unittest.OptionalSfixed32Extension));
|
||||
Assert.AreEqual(123, copy.GetExtension(Unittest.OptionalSfixed64Extension));
|
||||
Assert.AreEqual(123, copy.GetExtension(Unittest.OptionalSint32Extension));
|
||||
Assert.AreEqual(123, copy.GetExtension(Unittest.OptionalSint64Extension));
|
||||
Assert.AreEqual("123", copy.GetExtension(Unittest.OptionalStringExtension));
|
||||
Assert.AreEqual("123", copy.GetExtension(Unittest.OptionalStringPieceExtension));
|
||||
Assert.AreEqual(123u, copy.GetExtension(Unittest.OptionalUint32Extension));
|
||||
Assert.AreEqual(123u, copy.GetExtension(Unittest.OptionalUint64Extension));
|
||||
Assert.Equal(123, copy.GetExtension(Unittest.OptionalSfixed32Extension));
|
||||
Assert.Equal(123, copy.GetExtension(Unittest.OptionalSfixed64Extension));
|
||||
Assert.Equal(123, copy.GetExtension(Unittest.OptionalSint32Extension));
|
||||
Assert.Equal(123, copy.GetExtension(Unittest.OptionalSint64Extension));
|
||||
Assert.Equal("123", copy.GetExtension(Unittest.OptionalStringExtension));
|
||||
Assert.Equal("123", copy.GetExtension(Unittest.OptionalStringPieceExtension));
|
||||
Assert.Equal(123u, copy.GetExtension(Unittest.OptionalUint32Extension));
|
||||
Assert.Equal(123u, copy.GetExtension(Unittest.OptionalUint64Extension));
|
||||
|
||||
Assert.AreEqual(true, copy.GetExtension(Unittest.RepeatedBoolExtension, 0));
|
||||
Assert.AreEqual(ByteString.CopyFromUtf8("123"),
|
||||
Assert.Equal(true, copy.GetExtension(Unittest.RepeatedBoolExtension, 0));
|
||||
Assert.Equal(ByteString.CopyFromUtf8("123"),
|
||||
copy.GetExtension(Unittest.RepeatedBytesExtension, 0));
|
||||
Assert.AreEqual("123", copy.GetExtension(Unittest.RepeatedCordExtension, 0));
|
||||
Assert.AreEqual(123, copy.GetExtension(Unittest.RepeatedDoubleExtension, 0));
|
||||
Assert.AreEqual(123u, copy.GetExtension(Unittest.RepeatedFixed32Extension, 0));
|
||||
Assert.AreEqual(123u, copy.GetExtension(Unittest.RepeatedFixed64Extension, 0));
|
||||
Assert.AreEqual(123, copy.GetExtension(Unittest.RepeatedFloatExtension, 0));
|
||||
Assert.AreEqual(ForeignEnum.FOREIGN_BAZ,
|
||||
Assert.Equal("123", copy.GetExtension(Unittest.RepeatedCordExtension, 0));
|
||||
Assert.Equal(123, copy.GetExtension(Unittest.RepeatedDoubleExtension, 0));
|
||||
Assert.Equal(123u, copy.GetExtension(Unittest.RepeatedFixed32Extension, 0));
|
||||
Assert.Equal(123u, copy.GetExtension(Unittest.RepeatedFixed64Extension, 0));
|
||||
Assert.Equal(123, copy.GetExtension(Unittest.RepeatedFloatExtension, 0));
|
||||
Assert.Equal(ForeignEnum.FOREIGN_BAZ,
|
||||
copy.GetExtension(Unittest.RepeatedForeignEnumExtension, 0));
|
||||
Assert.AreEqual(ImportEnum.IMPORT_BAZ, copy.GetExtension(Unittest.RepeatedImportEnumExtension, 0));
|
||||
Assert.AreEqual(123, copy.GetExtension(Unittest.RepeatedInt32Extension, 0));
|
||||
Assert.AreEqual(123, copy.GetExtension(Unittest.RepeatedInt64Extension, 0));
|
||||
Assert.AreEqual(TestAllTypes.Types.NestedEnum.FOO,
|
||||
Assert.Equal(ImportEnum.IMPORT_BAZ, copy.GetExtension(Unittest.RepeatedImportEnumExtension, 0));
|
||||
Assert.Equal(123, copy.GetExtension(Unittest.RepeatedInt32Extension, 0));
|
||||
Assert.Equal(123, copy.GetExtension(Unittest.RepeatedInt64Extension, 0));
|
||||
Assert.Equal(TestAllTypes.Types.NestedEnum.FOO,
|
||||
copy.GetExtension(Unittest.RepeatedNestedEnumExtension, 0));
|
||||
Assert.AreEqual(123, copy.GetExtension(Unittest.RepeatedSfixed32Extension, 0));
|
||||
Assert.AreEqual(123, copy.GetExtension(Unittest.RepeatedSfixed64Extension, 0));
|
||||
Assert.AreEqual(123, copy.GetExtension(Unittest.RepeatedSint32Extension, 0));
|
||||
Assert.AreEqual(123, copy.GetExtension(Unittest.RepeatedSint64Extension, 0));
|
||||
Assert.AreEqual("123", copy.GetExtension(Unittest.RepeatedStringExtension, 0));
|
||||
Assert.AreEqual("123", copy.GetExtension(Unittest.RepeatedStringPieceExtension, 0));
|
||||
Assert.AreEqual(123u, copy.GetExtension(Unittest.RepeatedUint32Extension, 0));
|
||||
Assert.AreEqual(123u, copy.GetExtension(Unittest.RepeatedUint64Extension, 0));
|
||||
Assert.Equal(123, copy.GetExtension(Unittest.RepeatedSfixed32Extension, 0));
|
||||
Assert.Equal(123, copy.GetExtension(Unittest.RepeatedSfixed64Extension, 0));
|
||||
Assert.Equal(123, copy.GetExtension(Unittest.RepeatedSint32Extension, 0));
|
||||
Assert.Equal(123, copy.GetExtension(Unittest.RepeatedSint64Extension, 0));
|
||||
Assert.Equal("123", copy.GetExtension(Unittest.RepeatedStringExtension, 0));
|
||||
Assert.Equal("123", copy.GetExtension(Unittest.RepeatedStringPieceExtension, 0));
|
||||
Assert.Equal(123u, copy.GetExtension(Unittest.RepeatedUint32Extension, 0));
|
||||
Assert.Equal(123u, copy.GetExtension(Unittest.RepeatedUint64Extension, 0));
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,12 +1,10 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
using Google.ProtocolBuffers.TestProtos;
|
||||
using Microsoft.VisualStudio.TestTools.UnitTesting;
|
||||
using Xunit;
|
||||
|
||||
namespace Google.ProtocolBuffers
|
||||
{
|
||||
[TestClass]
|
||||
public class GeneratedBuilderTest
|
||||
{
|
||||
class OneTimeEnumerator<T> : IEnumerable<T>
|
||||
|
@ -19,107 +17,86 @@ namespace Google.ProtocolBuffers
|
|||
}
|
||||
public IEnumerator<T> GetEnumerator()
|
||||
{
|
||||
Assert.IsFalse(_enumerated, "The collection {0} has already been enumerated", GetType());
|
||||
Assert.False(_enumerated);
|
||||
_enumerated = true;
|
||||
yield return _item;
|
||||
}
|
||||
System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator()
|
||||
{ return GetEnumerator(); }
|
||||
{
|
||||
return GetEnumerator();
|
||||
}
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void DoesNotEnumerateTwiceForMessageList()
|
||||
{
|
||||
TestAllTypes.Builder b = new TestAllTypes.Builder();
|
||||
b.AddRangeRepeatedForeignMessage(
|
||||
new OneTimeEnumerator<ForeignMessage>(
|
||||
ForeignMessage.DefaultInstance));
|
||||
b.AddRangeRepeatedForeignMessage(new OneTimeEnumerator<ForeignMessage>(ForeignMessage.DefaultInstance));
|
||||
}
|
||||
[TestMethod]
|
||||
|
||||
[Fact]
|
||||
public void DoesNotEnumerateTwiceForPrimitiveList()
|
||||
{
|
||||
TestAllTypes.Builder b = new TestAllTypes.Builder();
|
||||
b.AddRangeRepeatedInt32(new OneTimeEnumerator<int>(1));
|
||||
}
|
||||
[TestMethod]
|
||||
|
||||
[Fact]
|
||||
public void DoesNotEnumerateTwiceForStringList()
|
||||
{
|
||||
TestAllTypes.Builder b = new TestAllTypes.Builder();
|
||||
b.AddRangeRepeatedString(new OneTimeEnumerator<string>("test"));
|
||||
}
|
||||
[TestMethod]
|
||||
|
||||
[Fact]
|
||||
public void DoesNotEnumerateTwiceForEnumList()
|
||||
{
|
||||
TestAllTypes.Builder b = new TestAllTypes.Builder();
|
||||
b.AddRangeRepeatedForeignEnum(new OneTimeEnumerator<ForeignEnum>(ForeignEnum.FOREIGN_BAR));
|
||||
}
|
||||
|
||||
private delegate void TestMethod();
|
||||
|
||||
private static void AssertThrows<T>(TestMethod method) where T : Exception
|
||||
{
|
||||
try
|
||||
{
|
||||
method();
|
||||
}
|
||||
catch (Exception error)
|
||||
{
|
||||
if (error is T)
|
||||
return;
|
||||
throw;
|
||||
}
|
||||
Assert.Fail("Expected exception of type " + typeof(T));
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
|
||||
[Fact]
|
||||
public void DoesNotAddNullToMessageListByAddRange()
|
||||
{
|
||||
TestAllTypes.Builder b = new TestAllTypes.Builder();
|
||||
AssertThrows<ArgumentNullException>(
|
||||
() => b.AddRangeRepeatedForeignMessage(new ForeignMessage[] { null })
|
||||
);
|
||||
Assert.Throws<ArgumentNullException>(() => b.AddRangeRepeatedForeignMessage(new ForeignMessage[] { null }));
|
||||
}
|
||||
[TestMethod]
|
||||
|
||||
[Fact]
|
||||
public void DoesNotAddNullToMessageListByAdd()
|
||||
{
|
||||
TestAllTypes.Builder b = new TestAllTypes.Builder();
|
||||
AssertThrows<ArgumentNullException>(
|
||||
() => b.AddRepeatedForeignMessage((ForeignMessage)null)
|
||||
);
|
||||
Assert.Throws<ArgumentNullException>(() => b.AddRepeatedForeignMessage((ForeignMessage)null));
|
||||
}
|
||||
[TestMethod]
|
||||
|
||||
[Fact]
|
||||
public void DoesNotAddNullToMessageListBySet()
|
||||
{
|
||||
TestAllTypes.Builder b = new TestAllTypes.Builder();
|
||||
b.AddRepeatedForeignMessage(ForeignMessage.DefaultInstance);
|
||||
AssertThrows<ArgumentNullException>(
|
||||
() => b.SetRepeatedForeignMessage(0, (ForeignMessage)null)
|
||||
);
|
||||
Assert.Throws<ArgumentNullException>(() => b.SetRepeatedForeignMessage(0, (ForeignMessage)null));
|
||||
}
|
||||
[TestMethod]
|
||||
|
||||
[Fact]
|
||||
public void DoesNotAddNullToStringListByAddRange()
|
||||
{
|
||||
TestAllTypes.Builder b = new TestAllTypes.Builder();
|
||||
AssertThrows<ArgumentNullException>(
|
||||
() => b.AddRangeRepeatedString(new String[] { null })
|
||||
);
|
||||
Assert.Throws<ArgumentNullException>(() => b.AddRangeRepeatedString(new String[] { null }));
|
||||
}
|
||||
[TestMethod]
|
||||
|
||||
[Fact]
|
||||
public void DoesNotAddNullToStringListByAdd()
|
||||
{
|
||||
TestAllTypes.Builder b = new TestAllTypes.Builder();
|
||||
AssertThrows<ArgumentNullException>(
|
||||
() => b.AddRepeatedString(null)
|
||||
);
|
||||
Assert.Throws<ArgumentNullException>(() => b.AddRepeatedString(null));
|
||||
}
|
||||
[TestMethod]
|
||||
|
||||
[Fact]
|
||||
public void DoesNotAddNullToStringListBySet()
|
||||
{
|
||||
TestAllTypes.Builder b = new TestAllTypes.Builder();
|
||||
b.AddRepeatedString("one");
|
||||
AssertThrows<ArgumentNullException>(
|
||||
() => b.SetRepeatedString(0, null)
|
||||
);
|
||||
Assert.Throws<ArgumentNullException>(() => b.SetRepeatedString(0, null));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -38,31 +38,29 @@ using System;
|
|||
using System.Collections.Generic;
|
||||
using Google.ProtocolBuffers.Collections;
|
||||
using Google.ProtocolBuffers.TestProtos;
|
||||
using Microsoft.VisualStudio.TestTools.UnitTesting;
|
||||
using Xunit;
|
||||
|
||||
namespace Google.ProtocolBuffers
|
||||
{
|
||||
[TestClass]
|
||||
public class GeneratedMessageTest
|
||||
{
|
||||
private ReflectionTester reflectionTester;
|
||||
private ReflectionTester extensionsReflectionTester;
|
||||
private readonly ReflectionTester reflectionTester;
|
||||
private readonly ReflectionTester extensionsReflectionTester;
|
||||
|
||||
[TestInitialize]
|
||||
public void SetUp()
|
||||
public GeneratedMessageTest()
|
||||
{
|
||||
reflectionTester = ReflectionTester.CreateTestAllTypesInstance();
|
||||
extensionsReflectionTester = ReflectionTester.CreateTestAllExtensionsInstance();
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void RepeatedAddPrimitiveBeforeBuild()
|
||||
{
|
||||
TestAllTypes message = new TestAllTypes.Builder {RepeatedInt32List = {1, 2, 3}}.Build();
|
||||
TestUtil.AssertEqual(new int[] {1, 2, 3}, message.RepeatedInt32List);
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void AddPrimitiveFailsAfterBuild()
|
||||
{
|
||||
TestAllTypes.Builder builder = new TestAllTypes.Builder();
|
||||
|
@ -70,18 +68,10 @@ namespace Google.ProtocolBuffers
|
|||
list.Add(1); // Fine
|
||||
builder.Build();
|
||||
|
||||
try
|
||||
{
|
||||
list.Add(2);
|
||||
Assert.Fail("List should be frozen");
|
||||
}
|
||||
catch (NotSupportedException)
|
||||
{
|
||||
// Expected
|
||||
}
|
||||
Assert.Throws<NotSupportedException>(() => list.Add(2));
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void RepeatedAddMessageBeforeBuild()
|
||||
{
|
||||
TestAllTypes message = new TestAllTypes.Builder
|
||||
|
@ -89,36 +79,28 @@ namespace Google.ProtocolBuffers
|
|||
RepeatedNestedMessageList =
|
||||
{new TestAllTypes.Types.NestedMessage.Builder {Bb = 10}.Build()}
|
||||
}.Build();
|
||||
Assert.AreEqual(1, message.RepeatedNestedMessageCount);
|
||||
Assert.AreEqual(10, message.RepeatedNestedMessageList[0].Bb);
|
||||
Assert.Equal(1, message.RepeatedNestedMessageCount);
|
||||
Assert.Equal(10, message.RepeatedNestedMessageList[0].Bb);
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void AddMessageFailsAfterBuild()
|
||||
{
|
||||
TestAllTypes.Builder builder = new TestAllTypes.Builder();
|
||||
IList<TestAllTypes.Types.NestedMessage> list = builder.RepeatedNestedMessageList;
|
||||
builder.Build();
|
||||
|
||||
try
|
||||
{
|
||||
list.Add(new TestAllTypes.Types.NestedMessage.Builder {Bb = 10}.Build());
|
||||
Assert.Fail("List should be frozen");
|
||||
}
|
||||
catch (NotSupportedException)
|
||||
{
|
||||
// Expected
|
||||
}
|
||||
Assert.Throws<NotSupportedException>(() => list.Add(new TestAllTypes.Types.NestedMessage.Builder { Bb = 10 }.Build()));
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void DefaultInstance()
|
||||
{
|
||||
Assert.AreSame(TestAllTypes.DefaultInstance, TestAllTypes.DefaultInstance.DefaultInstanceForType);
|
||||
Assert.AreSame(TestAllTypes.DefaultInstance, TestAllTypes.CreateBuilder().DefaultInstanceForType);
|
||||
Assert.Same(TestAllTypes.DefaultInstance, TestAllTypes.DefaultInstance.DefaultInstanceForType);
|
||||
Assert.Same(TestAllTypes.DefaultInstance, TestAllTypes.CreateBuilder().DefaultInstanceForType);
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void Accessors()
|
||||
{
|
||||
TestAllTypes.Builder builder = TestAllTypes.CreateBuilder();
|
||||
|
@ -127,25 +109,25 @@ namespace Google.ProtocolBuffers
|
|||
TestUtil.AssertAllFieldsSet(message);
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void SettersRejectNull()
|
||||
{
|
||||
TestAllTypes.Builder builder = TestAllTypes.CreateBuilder();
|
||||
TestUtil.AssertArgumentNullException(() => builder.SetOptionalString(null));
|
||||
TestUtil.AssertArgumentNullException(() => builder.SetOptionalBytes(null));
|
||||
TestUtil.AssertArgumentNullException(
|
||||
Assert.Throws<ArgumentNullException>(() => builder.SetOptionalString(null));
|
||||
Assert.Throws<ArgumentNullException>(() => builder.SetOptionalBytes(null));
|
||||
Assert.Throws<ArgumentNullException>(
|
||||
() => builder.SetOptionalNestedMessage((TestAllTypes.Types.NestedMessage) null));
|
||||
TestUtil.AssertArgumentNullException(
|
||||
Assert.Throws<ArgumentNullException>(
|
||||
() => builder.SetOptionalNestedMessage((TestAllTypes.Types.NestedMessage.Builder) null));
|
||||
TestUtil.AssertArgumentNullException(() => builder.AddRepeatedString(null));
|
||||
TestUtil.AssertArgumentNullException(() => builder.AddRepeatedBytes(null));
|
||||
TestUtil.AssertArgumentNullException(
|
||||
Assert.Throws<ArgumentNullException>(() => builder.AddRepeatedString(null));
|
||||
Assert.Throws<ArgumentNullException>(() => builder.AddRepeatedBytes(null));
|
||||
Assert.Throws<ArgumentNullException>(
|
||||
() => builder.AddRepeatedNestedMessage((TestAllTypes.Types.NestedMessage) null));
|
||||
TestUtil.AssertArgumentNullException(
|
||||
Assert.Throws<ArgumentNullException>(
|
||||
() => builder.AddRepeatedNestedMessage((TestAllTypes.Types.NestedMessage.Builder) null));
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void RepeatedSetters()
|
||||
{
|
||||
TestAllTypes.Builder builder = TestAllTypes.CreateBuilder();
|
||||
|
@ -155,7 +137,7 @@ namespace Google.ProtocolBuffers
|
|||
TestUtil.AssertRepeatedFieldsModified(message);
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void RepeatedAppend()
|
||||
{
|
||||
TestAllTypes.Builder builder = TestAllTypes.CreateBuilder();
|
||||
|
@ -169,26 +151,26 @@ namespace Google.ProtocolBuffers
|
|||
TestAllTypes message = builder.Build();
|
||||
TestUtil.AssertEqual(message.RepeatedInt32List, new int[] {1, 2, 3, 4});
|
||||
TestUtil.AssertEqual(message.RepeatedForeignEnumList, new ForeignEnum[] {ForeignEnum.FOREIGN_BAZ});
|
||||
Assert.AreEqual(1, message.RepeatedForeignMessageCount);
|
||||
Assert.AreEqual(12, message.GetRepeatedForeignMessage(0).C);
|
||||
Assert.Equal(1, message.RepeatedForeignMessageCount);
|
||||
Assert.Equal(12, message.GetRepeatedForeignMessage(0).C);
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void RepeatedAppendRejectsNull()
|
||||
{
|
||||
TestAllTypes.Builder builder = TestAllTypes.CreateBuilder();
|
||||
|
||||
ForeignMessage foreignMessage = ForeignMessage.CreateBuilder().SetC(12).Build();
|
||||
TestUtil.AssertArgumentNullException(
|
||||
Assert.Throws<ArgumentNullException>(
|
||||
() => builder.AddRangeRepeatedForeignMessage(new[] {foreignMessage, null}));
|
||||
TestUtil.AssertArgumentNullException(() => builder.AddRangeRepeatedForeignMessage(null));
|
||||
TestUtil.AssertArgumentNullException(() => builder.AddRangeRepeatedForeignEnum(null));
|
||||
TestUtil.AssertArgumentNullException(() => builder.AddRangeRepeatedString(new[] {"one", null}));
|
||||
TestUtil.AssertArgumentNullException(
|
||||
Assert.Throws<ArgumentNullException>(() => builder.AddRangeRepeatedForeignMessage(null));
|
||||
Assert.Throws<ArgumentNullException>(() => builder.AddRangeRepeatedForeignEnum(null));
|
||||
Assert.Throws<ArgumentNullException>(() => builder.AddRangeRepeatedString(new[] {"one", null}));
|
||||
Assert.Throws<ArgumentNullException>(
|
||||
() => builder.AddRangeRepeatedBytes(new[] {TestUtil.ToBytes("one"), null}));
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void SettingForeignMessageUsingBuilder()
|
||||
{
|
||||
TestAllTypes message = TestAllTypes.CreateBuilder()
|
||||
|
@ -199,10 +181,10 @@ namespace Google.ProtocolBuffers
|
|||
// Create expected version passing foreign message instance explicitly.
|
||||
.SetOptionalForeignMessage(ForeignMessage.CreateBuilder().SetC(123).Build())
|
||||
.Build();
|
||||
Assert.AreEqual(expectedMessage, message);
|
||||
Assert.Equal(expectedMessage, message);
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void SettingRepeatedForeignMessageUsingBuilder()
|
||||
{
|
||||
TestAllTypes message = TestAllTypes.CreateBuilder()
|
||||
|
@ -213,10 +195,10 @@ namespace Google.ProtocolBuffers
|
|||
// Create expected version passing foreign message instance explicitly.
|
||||
.AddRepeatedForeignMessage(ForeignMessage.CreateBuilder().SetC(456).Build())
|
||||
.Build();
|
||||
Assert.AreEqual(expectedMessage, message);
|
||||
Assert.Equal(expectedMessage, message);
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void SettingRepeatedValuesUsingRangeInCollectionInitializer()
|
||||
{
|
||||
int[] values = {1, 2, 3};
|
||||
|
@ -224,29 +206,29 @@ namespace Google.ProtocolBuffers
|
|||
{
|
||||
RepeatedSint32List = {values}
|
||||
}.Build();
|
||||
Assert.IsTrue(Lists.Equals(values, message.RepeatedSint32List));
|
||||
Assert.True(Lists.Equals(values, message.RepeatedSint32List));
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void SettingRepeatedValuesUsingIndividualValuesInCollectionInitializer()
|
||||
{
|
||||
TestAllTypes message = new TestAllTypes.Builder
|
||||
{
|
||||
RepeatedSint32List = {6, 7}
|
||||
}.Build();
|
||||
Assert.IsTrue(Lists.Equals(new int[] {6, 7}, message.RepeatedSint32List));
|
||||
Assert.True(Lists.Equals(new int[] {6, 7}, message.RepeatedSint32List));
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void Defaults()
|
||||
{
|
||||
TestUtil.AssertClear(TestAllTypes.DefaultInstance);
|
||||
TestUtil.AssertClear(TestAllTypes.CreateBuilder().Build());
|
||||
|
||||
Assert.AreEqual("\u1234", TestExtremeDefaultValues.DefaultInstance.Utf8String);
|
||||
Assert.Equal("\u1234", TestExtremeDefaultValues.DefaultInstance.Utf8String);
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void ReflectionGetters()
|
||||
{
|
||||
TestAllTypes.Builder builder = TestAllTypes.CreateBuilder();
|
||||
|
@ -255,7 +237,7 @@ namespace Google.ProtocolBuffers
|
|||
reflectionTester.AssertAllFieldsSetViaReflection(message);
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void ReflectionSetters()
|
||||
{
|
||||
TestAllTypes.Builder builder = TestAllTypes.CreateBuilder();
|
||||
|
@ -264,7 +246,7 @@ namespace Google.ProtocolBuffers
|
|||
TestUtil.AssertAllFieldsSet(message);
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void ReflectionClear()
|
||||
{
|
||||
TestAllTypes.Builder builder = TestAllTypes.CreateBuilder();
|
||||
|
@ -274,14 +256,14 @@ namespace Google.ProtocolBuffers
|
|||
TestUtil.AssertClear(message);
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void ReflectionSettersRejectNull()
|
||||
{
|
||||
TestAllTypes.Builder builder = TestAllTypes.CreateBuilder();
|
||||
reflectionTester.AssertReflectionSettersRejectNull(builder);
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void ReflectionRepeatedSetters()
|
||||
{
|
||||
TestAllTypes.Builder builder = TestAllTypes.CreateBuilder();
|
||||
|
@ -291,14 +273,14 @@ namespace Google.ProtocolBuffers
|
|||
TestUtil.AssertRepeatedFieldsModified(message);
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void TestReflectionRepeatedSettersRejectNull()
|
||||
{
|
||||
TestAllTypes.Builder builder = TestAllTypes.CreateBuilder();
|
||||
reflectionTester.AssertReflectionRepeatedSettersRejectNull(builder);
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void ReflectionDefaults()
|
||||
{
|
||||
TestUtil.TestInMultipleCultures(() =>
|
||||
|
@ -313,7 +295,7 @@ namespace Google.ProtocolBuffers
|
|||
// =================================================================
|
||||
// Extensions.
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void ExtensionAccessors()
|
||||
{
|
||||
TestAllExtensions.Builder builder = TestAllExtensions.CreateBuilder();
|
||||
|
@ -322,7 +304,7 @@ namespace Google.ProtocolBuffers
|
|||
TestUtil.AssertAllExtensionsSet(message);
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void ExtensionRepeatedSetters()
|
||||
{
|
||||
TestAllExtensions.Builder builder = TestAllExtensions.CreateBuilder();
|
||||
|
@ -332,14 +314,14 @@ namespace Google.ProtocolBuffers
|
|||
TestUtil.AssertRepeatedExtensionsModified(message);
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void ExtensionDefaults()
|
||||
{
|
||||
TestUtil.AssertExtensionsClear(TestAllExtensions.DefaultInstance);
|
||||
TestUtil.AssertExtensionsClear(TestAllExtensions.CreateBuilder().Build());
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void ExtensionReflectionGetters()
|
||||
{
|
||||
TestAllExtensions.Builder builder = TestAllExtensions.CreateBuilder();
|
||||
|
@ -348,7 +330,7 @@ namespace Google.ProtocolBuffers
|
|||
extensionsReflectionTester.AssertAllFieldsSetViaReflection(message);
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void ExtensionReflectionSetters()
|
||||
{
|
||||
TestAllExtensions.Builder builder = TestAllExtensions.CreateBuilder();
|
||||
|
@ -357,14 +339,14 @@ namespace Google.ProtocolBuffers
|
|||
TestUtil.AssertAllExtensionsSet(message);
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void ExtensionReflectionSettersRejectNull()
|
||||
{
|
||||
TestAllExtensions.Builder builder = TestAllExtensions.CreateBuilder();
|
||||
extensionsReflectionTester.AssertReflectionSettersRejectNull(builder);
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void ExtensionReflectionRepeatedSetters()
|
||||
{
|
||||
TestAllExtensions.Builder builder = TestAllExtensions.CreateBuilder();
|
||||
|
@ -374,14 +356,14 @@ namespace Google.ProtocolBuffers
|
|||
TestUtil.AssertRepeatedExtensionsModified(message);
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void ExtensionReflectionRepeatedSettersRejectNull()
|
||||
{
|
||||
TestAllExtensions.Builder builder = TestAllExtensions.CreateBuilder();
|
||||
extensionsReflectionTester.AssertReflectionRepeatedSettersRejectNull(builder);
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void ExtensionReflectionDefaults()
|
||||
{
|
||||
TestUtil.TestInMultipleCultures(() =>
|
||||
|
@ -393,33 +375,33 @@ namespace Google.ProtocolBuffers
|
|||
});
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void ClearExtension()
|
||||
{
|
||||
// ClearExtension() is not actually used in TestUtil, so try it manually.
|
||||
Assert.IsFalse(TestAllExtensions.CreateBuilder()
|
||||
Assert.False(TestAllExtensions.CreateBuilder()
|
||||
.SetExtension(Unittest.OptionalInt32Extension, 1)
|
||||
.ClearExtension(Unittest.OptionalInt32Extension)
|
||||
.HasExtension(Unittest.OptionalInt32Extension));
|
||||
Assert.AreEqual(0, TestAllExtensions.CreateBuilder()
|
||||
Assert.Equal(0, TestAllExtensions.CreateBuilder()
|
||||
.AddExtension(Unittest.RepeatedInt32Extension, 1)
|
||||
.ClearExtension(Unittest.RepeatedInt32Extension)
|
||||
.GetExtensionCount(Unittest.RepeatedInt32Extension));
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void ExtensionMergeFrom()
|
||||
{
|
||||
TestAllExtensions original = TestAllExtensions.CreateBuilder()
|
||||
.SetExtension(Unittest.OptionalInt32Extension, 1).Build();
|
||||
TestAllExtensions merged =
|
||||
TestAllExtensions.CreateBuilder().MergeFrom(original).Build();
|
||||
Assert.IsTrue((merged.HasExtension(Unittest.OptionalInt32Extension)));
|
||||
Assert.AreEqual(1, (int) merged.GetExtension(Unittest.OptionalInt32Extension));
|
||||
Assert.True((merged.HasExtension(Unittest.OptionalInt32Extension)));
|
||||
Assert.Equal(1, (int) merged.GetExtension(Unittest.OptionalInt32Extension));
|
||||
}
|
||||
|
||||
/* Removed multiple files option for the moment
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void MultipleFilesOption() {
|
||||
// We mostly just want to check that things compile.
|
||||
MessageWithNoOuter message = MessageWithNoOuter.CreateBuilder()
|
||||
|
@ -428,63 +410,63 @@ namespace Google.ProtocolBuffers
|
|||
.SetNestedEnum(MessageWithNoOuter.Types.NestedEnum.BAZ)
|
||||
.SetForeignEnum(EnumWithNoOuter.BAR)
|
||||
.Build();
|
||||
Assert.AreEqual(message, MessageWithNoOuter.ParseFrom(message.ToByteString()));
|
||||
Assert.Equal(message, MessageWithNoOuter.ParseFrom(message.ToByteString()));
|
||||
|
||||
Assert.AreEqual(MultiFileProto.DescriptorProtoFile, MessageWithNoOuter.DescriptorProtoFile.File);
|
||||
Assert.Equal(MultiFileProto.DescriptorProtoFile, MessageWithNoOuter.DescriptorProtoFile.File);
|
||||
|
||||
FieldDescriptor field = MessageWithNoOuter.DescriptorProtoFile.FindDescriptor<FieldDescriptor>("foreign_enum");
|
||||
Assert.AreEqual(MultiFileProto.DescriptorProtoFile.FindTypeByName<EnumDescriptor>("EnumWithNoOuter")
|
||||
Assert.Equal(MultiFileProto.DescriptorProtoFile.FindTypeByName<EnumDescriptor>("EnumWithNoOuter")
|
||||
.FindValueByNumber((int)EnumWithNoOuter.BAR), message[field]);
|
||||
|
||||
Assert.AreEqual(MultiFileProto.DescriptorProtoFile, ServiceWithNoOuter.DescriptorProtoFile.File);
|
||||
Assert.Equal(MultiFileProto.DescriptorProtoFile, ServiceWithNoOuter.DescriptorProtoFile.File);
|
||||
|
||||
Assert.IsFalse(TestAllExtensions.DefaultInstance.HasExtension(MultiFileProto.ExtensionWithOuter));
|
||||
Assert.False(TestAllExtensions.DefaultInstance.HasExtension(MultiFileProto.ExtensionWithOuter));
|
||||
}*/
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void OptionalFieldWithRequiredSubfieldsOptimizedForSize()
|
||||
{
|
||||
TestOptionalOptimizedForSize message = TestOptionalOptimizedForSize.DefaultInstance;
|
||||
Assert.IsTrue(message.IsInitialized);
|
||||
Assert.True(message.IsInitialized);
|
||||
|
||||
message = TestOptionalOptimizedForSize.CreateBuilder().SetO(
|
||||
TestRequiredOptimizedForSize.CreateBuilder().BuildPartial()
|
||||
).BuildPartial();
|
||||
Assert.IsFalse(message.IsInitialized);
|
||||
Assert.False(message.IsInitialized);
|
||||
|
||||
message = TestOptionalOptimizedForSize.CreateBuilder().SetO(
|
||||
TestRequiredOptimizedForSize.CreateBuilder().SetX(5).BuildPartial()
|
||||
).BuildPartial();
|
||||
Assert.IsTrue(message.IsInitialized);
|
||||
Assert.True(message.IsInitialized);
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void OptimizedForSizeMergeUsesAllFieldsFromTarget()
|
||||
{
|
||||
TestOptimizedForSize withFieldSet = new TestOptimizedForSize.Builder {I = 10}.Build();
|
||||
TestOptimizedForSize.Builder builder = new TestOptimizedForSize.Builder();
|
||||
builder.MergeFrom(withFieldSet);
|
||||
TestOptimizedForSize built = builder.Build();
|
||||
Assert.AreEqual(10, built.I);
|
||||
Assert.Equal(10, built.I);
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void UninitializedExtensionInOptimizedForSizeMakesMessageUninitialized()
|
||||
{
|
||||
TestOptimizedForSize.Builder builder = new TestOptimizedForSize.Builder();
|
||||
builder.SetExtension(TestOptimizedForSize.TestExtension2,
|
||||
new TestRequiredOptimizedForSize.Builder().BuildPartial());
|
||||
Assert.IsFalse(builder.IsInitialized);
|
||||
Assert.IsFalse(builder.BuildPartial().IsInitialized);
|
||||
Assert.False(builder.IsInitialized);
|
||||
Assert.False(builder.BuildPartial().IsInitialized);
|
||||
|
||||
builder = new TestOptimizedForSize.Builder();
|
||||
builder.SetExtension(TestOptimizedForSize.TestExtension2,
|
||||
new TestRequiredOptimizedForSize.Builder {X = 10}.BuildPartial());
|
||||
Assert.IsTrue(builder.IsInitialized);
|
||||
Assert.IsTrue(builder.BuildPartial().IsInitialized);
|
||||
Assert.True(builder.IsInitialized);
|
||||
Assert.True(builder.BuildPartial().IsInitialized);
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void ToBuilder()
|
||||
{
|
||||
TestAllTypes.Builder builder = TestAllTypes.CreateBuilder();
|
||||
|
@ -493,40 +475,40 @@ namespace Google.ProtocolBuffers
|
|||
TestUtil.AssertAllFieldsSet(message.ToBuilder().Build());
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void FieldConstantValues()
|
||||
{
|
||||
Assert.AreEqual(TestAllTypes.Types.NestedMessage.BbFieldNumber, 1);
|
||||
Assert.AreEqual(TestAllTypes.OptionalInt32FieldNumber, 1);
|
||||
Assert.AreEqual(TestAllTypes.OptionalGroupFieldNumber, 16);
|
||||
Assert.AreEqual(TestAllTypes.OptionalNestedMessageFieldNumber, 18);
|
||||
Assert.AreEqual(TestAllTypes.OptionalNestedEnumFieldNumber, 21);
|
||||
Assert.AreEqual(TestAllTypes.RepeatedInt32FieldNumber, 31);
|
||||
Assert.AreEqual(TestAllTypes.RepeatedGroupFieldNumber, 46);
|
||||
Assert.AreEqual(TestAllTypes.RepeatedNestedMessageFieldNumber, 48);
|
||||
Assert.AreEqual(TestAllTypes.RepeatedNestedEnumFieldNumber, 51);
|
||||
Assert.Equal(TestAllTypes.Types.NestedMessage.BbFieldNumber, 1);
|
||||
Assert.Equal(TestAllTypes.OptionalInt32FieldNumber, 1);
|
||||
Assert.Equal(TestAllTypes.OptionalGroupFieldNumber, 16);
|
||||
Assert.Equal(TestAllTypes.OptionalNestedMessageFieldNumber, 18);
|
||||
Assert.Equal(TestAllTypes.OptionalNestedEnumFieldNumber, 21);
|
||||
Assert.Equal(TestAllTypes.RepeatedInt32FieldNumber, 31);
|
||||
Assert.Equal(TestAllTypes.RepeatedGroupFieldNumber, 46);
|
||||
Assert.Equal(TestAllTypes.RepeatedNestedMessageFieldNumber, 48);
|
||||
Assert.Equal(TestAllTypes.RepeatedNestedEnumFieldNumber, 51);
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void ExtensionConstantValues()
|
||||
{
|
||||
Assert.AreEqual(TestRequired.SingleFieldNumber, 1000);
|
||||
Assert.AreEqual(TestRequired.MultiFieldNumber, 1001);
|
||||
Assert.AreEqual(Unittest.OptionalInt32ExtensionFieldNumber, 1);
|
||||
Assert.AreEqual(Unittest.OptionalGroupExtensionFieldNumber, 16);
|
||||
Assert.AreEqual(Unittest.OptionalNestedMessageExtensionFieldNumber, 18);
|
||||
Assert.AreEqual(Unittest.OptionalNestedEnumExtensionFieldNumber, 21);
|
||||
Assert.AreEqual(Unittest.RepeatedInt32ExtensionFieldNumber, 31);
|
||||
Assert.AreEqual(Unittest.RepeatedGroupExtensionFieldNumber, 46);
|
||||
Assert.AreEqual(Unittest.RepeatedNestedMessageExtensionFieldNumber, 48);
|
||||
Assert.AreEqual(Unittest.RepeatedNestedEnumExtensionFieldNumber, 51);
|
||||
Assert.Equal(TestRequired.SingleFieldNumber, 1000);
|
||||
Assert.Equal(TestRequired.MultiFieldNumber, 1001);
|
||||
Assert.Equal(Unittest.OptionalInt32ExtensionFieldNumber, 1);
|
||||
Assert.Equal(Unittest.OptionalGroupExtensionFieldNumber, 16);
|
||||
Assert.Equal(Unittest.OptionalNestedMessageExtensionFieldNumber, 18);
|
||||
Assert.Equal(Unittest.OptionalNestedEnumExtensionFieldNumber, 21);
|
||||
Assert.Equal(Unittest.RepeatedInt32ExtensionFieldNumber, 31);
|
||||
Assert.Equal(Unittest.RepeatedGroupExtensionFieldNumber, 46);
|
||||
Assert.Equal(Unittest.RepeatedNestedMessageExtensionFieldNumber, 48);
|
||||
Assert.Equal(Unittest.RepeatedNestedEnumExtensionFieldNumber, 51);
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void EmptyPackedValue()
|
||||
{
|
||||
TestPackedTypes empty = new TestPackedTypes.Builder().Build();
|
||||
Assert.AreEqual(0, empty.SerializedSize);
|
||||
Assert.Equal(0, empty.SerializedSize);
|
||||
}
|
||||
}
|
||||
}
|
|
@ -35,13 +35,9 @@
|
|||
#endregion
|
||||
|
||||
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using Google.ProtocolBuffers.Collections;
|
||||
using Google.ProtocolBuffers.Descriptors;
|
||||
using Google.ProtocolBuffers.TestProtos;
|
||||
using Microsoft.VisualStudio.TestTools.UnitTesting;
|
||||
using UnitTest.Issues.TestProtos;
|
||||
using Xunit;
|
||||
|
||||
|
||||
namespace Google.ProtocolBuffers
|
||||
|
@ -49,17 +45,16 @@ namespace Google.ProtocolBuffers
|
|||
/// <summary>
|
||||
/// Tests for issues which aren't easily compartmentalized into other unit tests.
|
||||
/// </summary>
|
||||
[TestClass]
|
||||
public class IssuesTest
|
||||
{
|
||||
// Issue 45
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void FieldCalledItem()
|
||||
{
|
||||
ItemField message = new ItemField.Builder { Item = 3 }.Build();
|
||||
FieldDescriptor field = ItemField.Descriptor.FindFieldByName("item");
|
||||
Assert.IsNotNull(field);
|
||||
Assert.AreEqual(3, (int)message[field]);
|
||||
Assert.NotNull(field);
|
||||
Assert.Equal(3, (int)message[field]);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -37,28 +37,27 @@
|
|||
using System.Collections.Generic;
|
||||
using System.IO;
|
||||
using Google.ProtocolBuffers.TestProtos;
|
||||
using Microsoft.VisualStudio.TestTools.UnitTesting;
|
||||
using Xunit;
|
||||
using NestedMessage = Google.ProtocolBuffers.TestProtos.TestAllTypes.Types.NestedMessage;
|
||||
|
||||
namespace Google.ProtocolBuffers
|
||||
{
|
||||
[TestClass]
|
||||
public class MessageStreamIteratorTest
|
||||
{
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void ThreeMessagesInMemory()
|
||||
{
|
||||
MemoryStream stream = new MemoryStream(MessageStreamWriterTest.ThreeMessageData);
|
||||
IEnumerable<NestedMessage> iterator = MessageStreamIterator<NestedMessage>.FromStreamProvider(() => stream);
|
||||
List<NestedMessage> messages = new List<NestedMessage>(iterator);
|
||||
|
||||
Assert.AreEqual(3, messages.Count);
|
||||
Assert.AreEqual(5, messages[0].Bb);
|
||||
Assert.AreEqual(1500, messages[1].Bb);
|
||||
Assert.IsFalse(messages[2].HasBb);
|
||||
Assert.Equal(3, messages.Count);
|
||||
Assert.Equal(5, messages[0].Bb);
|
||||
Assert.Equal(1500, messages[1].Bb);
|
||||
Assert.False(messages[2].HasBb);
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void ManyMessagesShouldNotTriggerSizeAlert()
|
||||
{
|
||||
int messageSize = TestUtil.GetAllSet().SerializedSize;
|
||||
|
@ -84,7 +83,7 @@ namespace Google.ProtocolBuffers
|
|||
count++;
|
||||
TestUtil.AssertAllFieldsSet(message);
|
||||
}
|
||||
Assert.AreEqual(correctCount, count);
|
||||
Assert.Equal(correctCount, count);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -35,12 +35,11 @@
|
|||
#endregion
|
||||
|
||||
using System.IO;
|
||||
using Microsoft.VisualStudio.TestTools.UnitTesting;
|
||||
using Xunit;
|
||||
using NestedMessage = Google.ProtocolBuffers.TestProtos.TestAllTypes.Types.NestedMessage;
|
||||
|
||||
namespace Google.ProtocolBuffers
|
||||
{
|
||||
[TestClass]
|
||||
public class MessageStreamWriterTest
|
||||
{
|
||||
internal static readonly byte[] ThreeMessageData = new byte[]
|
||||
|
@ -55,7 +54,7 @@ namespace Google.ProtocolBuffers
|
|||
(1 << 3) | 2, 0, // Field 1, no data (third message)
|
||||
};
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void ThreeMessages()
|
||||
{
|
||||
NestedMessage message1 = new NestedMessage.Builder {Bb = 5}.Build();
|
||||
|
|
|
@ -37,7 +37,7 @@
|
|||
using System.IO;
|
||||
using Google.ProtocolBuffers.Descriptors;
|
||||
using Google.ProtocolBuffers.TestProtos;
|
||||
using Microsoft.VisualStudio.TestTools.UnitTesting;
|
||||
using Xunit;
|
||||
|
||||
namespace Google.ProtocolBuffers
|
||||
{
|
||||
|
@ -45,7 +45,6 @@ namespace Google.ProtocolBuffers
|
|||
/// Miscellaneous tests for message operations that apply to both
|
||||
/// generated and dynamic messages.
|
||||
/// </summary>
|
||||
[TestClass]
|
||||
public class MessageTest
|
||||
{
|
||||
// =================================================================
|
||||
|
@ -77,12 +76,12 @@ namespace Google.ProtocolBuffers
|
|||
"repeated_string: \"qux\"\n" +
|
||||
"repeated_string: \"bar\"\n";
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void MergeFrom()
|
||||
{
|
||||
TestAllTypes result = TestAllTypes.CreateBuilder(MergeDest).MergeFrom(MergeSource).Build();
|
||||
|
||||
Assert.AreEqual(MergeResultText, result.ToString());
|
||||
Assert.Equal(MergeResultText, result.ToString());
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
|
@ -90,20 +89,20 @@ namespace Google.ProtocolBuffers
|
|||
/// As long as they have the same descriptor, this should work, but it is an
|
||||
/// entirely different code path.
|
||||
/// </summary>
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void MergeFromDynamic()
|
||||
{
|
||||
TestAllTypes result = (TestAllTypes) TestAllTypes.CreateBuilder(MergeDest)
|
||||
.MergeFrom(DynamicMessage.CreateBuilder(MergeSource).Build())
|
||||
.Build();
|
||||
|
||||
Assert.AreEqual(MergeResultText, result.ToString());
|
||||
Assert.Equal(MergeResultText, result.ToString());
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Test merging two DynamicMessages.
|
||||
/// </summary>
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void DynamicMergeFrom()
|
||||
{
|
||||
DynamicMessage result = (DynamicMessage) DynamicMessage.CreateBuilder(MergeDest)
|
||||
|
@ -112,7 +111,7 @@ namespace Google.ProtocolBuffers
|
|||
DynamicMessage.CreateBuilder(MergeSource).Build())
|
||||
.Build();
|
||||
|
||||
Assert.AreEqual(MergeResultText, result.ToString());
|
||||
Assert.Equal(MergeResultText, result.ToString());
|
||||
}
|
||||
|
||||
// =================================================================
|
||||
|
@ -127,157 +126,143 @@ namespace Google.ProtocolBuffers
|
|||
C = 3
|
||||
}.Build();
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void Initialization()
|
||||
{
|
||||
TestRequired.Builder builder = TestRequired.CreateBuilder();
|
||||
|
||||
Assert.IsFalse(builder.IsInitialized);
|
||||
Assert.False(builder.IsInitialized);
|
||||
builder.A = 1;
|
||||
Assert.IsFalse(builder.IsInitialized);
|
||||
Assert.False(builder.IsInitialized);
|
||||
builder.B = 1;
|
||||
Assert.IsFalse(builder.IsInitialized);
|
||||
Assert.False(builder.IsInitialized);
|
||||
builder.C = 1;
|
||||
Assert.IsTrue(builder.IsInitialized);
|
||||
Assert.True(builder.IsInitialized);
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void UninitializedBuilderToString()
|
||||
{
|
||||
TestRequired.Builder builder = TestRequired.CreateBuilder().SetA(1);
|
||||
Assert.AreEqual("a: 1\n", builder.ToString());
|
||||
Assert.Equal("a: 1\n", builder.ToString());
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void RequiredForeign()
|
||||
{
|
||||
TestRequiredForeign.Builder builder = TestRequiredForeign.CreateBuilder();
|
||||
|
||||
Assert.IsTrue(builder.IsInitialized);
|
||||
Assert.True(builder.IsInitialized);
|
||||
|
||||
builder.SetOptionalMessage(TestRequiredUninitialized);
|
||||
Assert.IsFalse(builder.IsInitialized);
|
||||
Assert.False(builder.IsInitialized);
|
||||
|
||||
builder.SetOptionalMessage(TestRequiredInitialized);
|
||||
Assert.IsTrue(builder.IsInitialized);
|
||||
Assert.True(builder.IsInitialized);
|
||||
|
||||
builder.AddRepeatedMessage(TestRequiredUninitialized);
|
||||
Assert.IsFalse(builder.IsInitialized);
|
||||
Assert.False(builder.IsInitialized);
|
||||
|
||||
builder.SetRepeatedMessage(0, TestRequiredInitialized);
|
||||
Assert.IsTrue(builder.IsInitialized);
|
||||
Assert.True(builder.IsInitialized);
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void RequiredExtension()
|
||||
{
|
||||
TestAllExtensions.Builder builder = TestAllExtensions.CreateBuilder();
|
||||
|
||||
Assert.IsTrue(builder.IsInitialized);
|
||||
Assert.True(builder.IsInitialized);
|
||||
|
||||
builder.SetExtension(TestRequired.Single, TestRequiredUninitialized);
|
||||
Assert.IsFalse(builder.IsInitialized);
|
||||
Assert.False(builder.IsInitialized);
|
||||
|
||||
builder.SetExtension(TestRequired.Single, TestRequiredInitialized);
|
||||
Assert.IsTrue(builder.IsInitialized);
|
||||
Assert.True(builder.IsInitialized);
|
||||
|
||||
builder.AddExtension(TestRequired.Multi, TestRequiredUninitialized);
|
||||
Assert.IsFalse(builder.IsInitialized);
|
||||
Assert.False(builder.IsInitialized);
|
||||
|
||||
builder.SetExtension(TestRequired.Multi, 0, TestRequiredInitialized);
|
||||
Assert.IsTrue(builder.IsInitialized);
|
||||
Assert.True(builder.IsInitialized);
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void RequiredDynamic()
|
||||
{
|
||||
MessageDescriptor descriptor = TestRequired.Descriptor;
|
||||
DynamicMessage.Builder builder = DynamicMessage.CreateBuilder(descriptor);
|
||||
|
||||
Assert.IsFalse(builder.IsInitialized);
|
||||
Assert.False(builder.IsInitialized);
|
||||
builder[descriptor.FindDescriptor<FieldDescriptor>("a")] = 1;
|
||||
Assert.IsFalse(builder.IsInitialized);
|
||||
Assert.False(builder.IsInitialized);
|
||||
builder[descriptor.FindDescriptor<FieldDescriptor>("b")] = 1;
|
||||
Assert.IsFalse(builder.IsInitialized);
|
||||
Assert.False(builder.IsInitialized);
|
||||
builder[descriptor.FindDescriptor<FieldDescriptor>("c")] = 1;
|
||||
Assert.IsTrue(builder.IsInitialized);
|
||||
Assert.True(builder.IsInitialized);
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void RequiredDynamicForeign()
|
||||
{
|
||||
MessageDescriptor descriptor = TestRequiredForeign.Descriptor;
|
||||
DynamicMessage.Builder builder = DynamicMessage.CreateBuilder(descriptor);
|
||||
|
||||
Assert.IsTrue(builder.IsInitialized);
|
||||
Assert.True(builder.IsInitialized);
|
||||
|
||||
builder[descriptor.FindDescriptor<FieldDescriptor>("optional_message")] = TestRequiredUninitialized;
|
||||
Assert.IsFalse(builder.IsInitialized);
|
||||
Assert.False(builder.IsInitialized);
|
||||
|
||||
builder[descriptor.FindDescriptor<FieldDescriptor>("optional_message")] = TestRequiredInitialized;
|
||||
Assert.IsTrue(builder.IsInitialized);
|
||||
Assert.True(builder.IsInitialized);
|
||||
|
||||
builder.AddRepeatedField(descriptor.FindDescriptor<FieldDescriptor>("repeated_message"),
|
||||
TestRequiredUninitialized);
|
||||
Assert.IsFalse(builder.IsInitialized);
|
||||
Assert.False(builder.IsInitialized);
|
||||
|
||||
builder.SetRepeatedField(descriptor.FindDescriptor<FieldDescriptor>("repeated_message"), 0,
|
||||
TestRequiredInitialized);
|
||||
Assert.IsTrue(builder.IsInitialized);
|
||||
Assert.True(builder.IsInitialized);
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void UninitializedException()
|
||||
{
|
||||
try
|
||||
{
|
||||
TestRequired.CreateBuilder().Build();
|
||||
Assert.Fail("Should have thrown an exception.");
|
||||
}
|
||||
catch (UninitializedMessageException e)
|
||||
{
|
||||
Assert.AreEqual("Message missing required fields: a, b, c", e.Message);
|
||||
}
|
||||
var e = Assert.Throws<UninitializedMessageException>(() => TestRequired.CreateBuilder().Build());
|
||||
Assert.Equal("Message missing required fields: a, b, c", e.Message);
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void BuildPartial()
|
||||
{
|
||||
// We're mostly testing that no exception is thrown.
|
||||
TestRequired message = TestRequired.CreateBuilder().BuildPartial();
|
||||
Assert.IsFalse(message.IsInitialized);
|
||||
Assert.False(message.IsInitialized);
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void NestedUninitializedException()
|
||||
{
|
||||
try
|
||||
{
|
||||
TestRequiredForeign.CreateBuilder()
|
||||
var e = Assert.Throws<UninitializedMessageException>(() => TestRequiredForeign.CreateBuilder()
|
||||
.SetOptionalMessage(TestRequiredUninitialized)
|
||||
.AddRepeatedMessage(TestRequiredUninitialized)
|
||||
.AddRepeatedMessage(TestRequiredUninitialized)
|
||||
.Build();
|
||||
Assert.Fail("Should have thrown an exception.");
|
||||
}
|
||||
catch (UninitializedMessageException e)
|
||||
{
|
||||
Assert.AreEqual(
|
||||
"Message missing required fields: " +
|
||||
"optional_message.a, " +
|
||||
"optional_message.b, " +
|
||||
"optional_message.c, " +
|
||||
"repeated_message[0].a, " +
|
||||
"repeated_message[0].b, " +
|
||||
"repeated_message[0].c, " +
|
||||
"repeated_message[1].a, " +
|
||||
"repeated_message[1].b, " +
|
||||
"repeated_message[1].c",
|
||||
e.Message);
|
||||
}
|
||||
.Build());
|
||||
Assert.Equal(
|
||||
"Message missing required fields: " +
|
||||
"optional_message.a, " +
|
||||
"optional_message.b, " +
|
||||
"optional_message.c, " +
|
||||
"repeated_message[0].a, " +
|
||||
"repeated_message[0].b, " +
|
||||
"repeated_message[0].c, " +
|
||||
"repeated_message[1].a, " +
|
||||
"repeated_message[1].b, " +
|
||||
"repeated_message[1].c",
|
||||
e.Message);
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void BuildNestedPartial()
|
||||
{
|
||||
// We're mostly testing that no exception is thrown.
|
||||
|
@ -287,24 +272,17 @@ namespace Google.ProtocolBuffers
|
|||
.AddRepeatedMessage(TestRequiredUninitialized)
|
||||
.AddRepeatedMessage(TestRequiredUninitialized)
|
||||
.BuildPartial();
|
||||
Assert.IsFalse(message.IsInitialized);
|
||||
Assert.False(message.IsInitialized);
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
public void ParseUnititialized()
|
||||
[Fact]
|
||||
public void ParseUninitialized()
|
||||
{
|
||||
try
|
||||
{
|
||||
TestRequired.ParseFrom(ByteString.Empty);
|
||||
Assert.Fail("Should have thrown an exception.");
|
||||
}
|
||||
catch (InvalidProtocolBufferException e)
|
||||
{
|
||||
Assert.AreEqual("Message missing required fields: a, b, c", e.Message);
|
||||
}
|
||||
var e = Assert.Throws<InvalidProtocolBufferException>(() => TestRequired.ParseFrom(ByteString.Empty));
|
||||
Assert.Equal("Message missing required fields: a, b, c", e.Message);
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void ParseNestedUnititialized()
|
||||
{
|
||||
ByteString data =
|
||||
|
@ -314,66 +292,45 @@ namespace Google.ProtocolBuffers
|
|||
.AddRepeatedMessage(TestRequiredUninitialized)
|
||||
.BuildPartial().ToByteString();
|
||||
|
||||
try
|
||||
{
|
||||
TestRequiredForeign.ParseFrom(data);
|
||||
Assert.Fail("Should have thrown an exception.");
|
||||
}
|
||||
catch (InvalidProtocolBufferException e)
|
||||
{
|
||||
Assert.AreEqual(
|
||||
"Message missing required fields: " +
|
||||
"optional_message.a, " +
|
||||
"optional_message.b, " +
|
||||
"optional_message.c, " +
|
||||
"repeated_message[0].a, " +
|
||||
"repeated_message[0].b, " +
|
||||
"repeated_message[0].c, " +
|
||||
"repeated_message[1].a, " +
|
||||
"repeated_message[1].b, " +
|
||||
"repeated_message[1].c",
|
||||
e.Message);
|
||||
}
|
||||
var e = Assert.Throws<InvalidProtocolBufferException>(() => TestRequiredForeign.ParseFrom(data));
|
||||
Assert.Equal(
|
||||
"Message missing required fields: " +
|
||||
"optional_message.a, " +
|
||||
"optional_message.b, " +
|
||||
"optional_message.c, " +
|
||||
"repeated_message[0].a, " +
|
||||
"repeated_message[0].b, " +
|
||||
"repeated_message[0].c, " +
|
||||
"repeated_message[1].a, " +
|
||||
"repeated_message[1].b, " +
|
||||
"repeated_message[1].c",
|
||||
e.Message);
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void DynamicUninitializedException()
|
||||
{
|
||||
try
|
||||
{
|
||||
DynamicMessage.CreateBuilder(TestRequired.Descriptor).Build();
|
||||
Assert.Fail("Should have thrown an exception.");
|
||||
}
|
||||
catch (UninitializedMessageException e)
|
||||
{
|
||||
Assert.AreEqual("Message missing required fields: a, b, c", e.Message);
|
||||
}
|
||||
var e = Assert.Throws<UninitializedMessageException>(() => DynamicMessage.CreateBuilder(TestRequired.Descriptor).Build());
|
||||
Assert.Equal("Message missing required fields: a, b, c", e.Message);
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void DynamicBuildPartial()
|
||||
{
|
||||
// We're mostly testing that no exception is thrown.
|
||||
DynamicMessage message = DynamicMessage.CreateBuilder(TestRequired.Descriptor).BuildPartial();
|
||||
Assert.IsFalse(message.Initialized);
|
||||
Assert.False(message.Initialized);
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void DynamicParseUnititialized()
|
||||
{
|
||||
try
|
||||
{
|
||||
MessageDescriptor descriptor = TestRequired.Descriptor;
|
||||
DynamicMessage.ParseFrom(descriptor, ByteString.Empty);
|
||||
Assert.Fail("Should have thrown an exception.");
|
||||
}
|
||||
catch (InvalidProtocolBufferException e)
|
||||
{
|
||||
Assert.AreEqual("Message missing required fields: a, b, c", e.Message);
|
||||
}
|
||||
MessageDescriptor descriptor = TestRequired.Descriptor;
|
||||
var e = Assert.Throws<InvalidProtocolBufferException>(() => DynamicMessage.ParseFrom(descriptor, ByteString.Empty));
|
||||
Assert.Equal("Message missing required fields: a, b, c", e.Message);
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void PackedTypesWrittenDirectlyToStream()
|
||||
{
|
||||
TestPackedTypes message = new TestPackedTypes.Builder {PackedInt32List = {0, 1, 2}}.Build();
|
||||
|
@ -381,7 +338,7 @@ namespace Google.ProtocolBuffers
|
|||
message.WriteTo(stream);
|
||||
stream.Position = 0;
|
||||
TestPackedTypes readMessage = TestPackedTypes.ParseFrom(stream);
|
||||
Assert.AreEqual(message, readMessage);
|
||||
Assert.Equal(message, readMessage);
|
||||
}
|
||||
}
|
||||
}
|
|
@ -36,52 +36,47 @@
|
|||
|
||||
using System;
|
||||
using Google.ProtocolBuffers.TestProtos;
|
||||
using Microsoft.VisualStudio.TestTools.UnitTesting;
|
||||
using Xunit;
|
||||
|
||||
namespace Google.ProtocolBuffers
|
||||
{
|
||||
[TestClass]
|
||||
public class MessageUtilTest
|
||||
{
|
||||
[TestMethod]
|
||||
[ExpectedException(typeof(ArgumentNullException))]
|
||||
[Fact]
|
||||
public void NullTypeName()
|
||||
{
|
||||
MessageUtil.GetDefaultMessage((string) null);
|
||||
Assert.Throws<ArgumentNullException>(() => MessageUtil.GetDefaultMessage((string) null));
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[ExpectedException(typeof(ArgumentException))]
|
||||
[Fact]
|
||||
public void InvalidTypeName()
|
||||
{
|
||||
MessageUtil.GetDefaultMessage("invalidtypename");
|
||||
Assert.Throws<ArgumentException>(() => MessageUtil.GetDefaultMessage("invalidtypename"));
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void ValidTypeName()
|
||||
{
|
||||
Assert.AreSame(TestAllTypes.DefaultInstance,
|
||||
Assert.Same(TestAllTypes.DefaultInstance,
|
||||
MessageUtil.GetDefaultMessage(typeof(TestAllTypes).AssemblyQualifiedName));
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[ExpectedException(typeof(ArgumentNullException))]
|
||||
[Fact]
|
||||
public void NullType()
|
||||
{
|
||||
MessageUtil.GetDefaultMessage((Type) null);
|
||||
Assert.Throws<ArgumentNullException>(() => MessageUtil.GetDefaultMessage((Type)null));
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[ExpectedException(typeof(ArgumentException))]
|
||||
[Fact]
|
||||
public void NonMessageType()
|
||||
{
|
||||
MessageUtil.GetDefaultMessage(typeof(string));
|
||||
Assert.Throws<ArgumentException>(() => MessageUtil.GetDefaultMessage(typeof(string)));
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void ValidType()
|
||||
{
|
||||
Assert.AreSame(TestAllTypes.DefaultInstance, MessageUtil.GetDefaultMessage(typeof(TestAllTypes)));
|
||||
Assert.Same(TestAllTypes.DefaultInstance, MessageUtil.GetDefaultMessage(typeof(TestAllTypes)));
|
||||
}
|
||||
}
|
||||
}
|
|
@ -34,49 +34,48 @@
|
|||
|
||||
#endregion
|
||||
|
||||
using Microsoft.VisualStudio.TestTools.UnitTesting;
|
||||
using Xunit;
|
||||
|
||||
namespace Google.ProtocolBuffers
|
||||
{
|
||||
[TestClass]
|
||||
public class NameHelpersTest
|
||||
{
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void UnderscoresToPascalCase()
|
||||
{
|
||||
Assert.AreEqual("FooBar", NameHelpers.UnderscoresToPascalCase("Foo_bar"));
|
||||
Assert.AreEqual("FooBar", NameHelpers.UnderscoresToPascalCase("foo_bar"));
|
||||
Assert.AreEqual("Foo0Bar", NameHelpers.UnderscoresToPascalCase("Foo0bar"));
|
||||
Assert.AreEqual("FooBar", NameHelpers.UnderscoresToPascalCase("Foo_+_Bar"));
|
||||
Assert.Equal("FooBar", NameHelpers.UnderscoresToPascalCase("Foo_bar"));
|
||||
Assert.Equal("FooBar", NameHelpers.UnderscoresToPascalCase("foo_bar"));
|
||||
Assert.Equal("Foo0Bar", NameHelpers.UnderscoresToPascalCase("Foo0bar"));
|
||||
Assert.Equal("FooBar", NameHelpers.UnderscoresToPascalCase("Foo_+_Bar"));
|
||||
|
||||
Assert.AreEqual("Bar", NameHelpers.UnderscoresToPascalCase("__+bar"));
|
||||
Assert.AreEqual("Bar", NameHelpers.UnderscoresToPascalCase("bar_"));
|
||||
Assert.AreEqual("_0Bar", NameHelpers.UnderscoresToPascalCase("_0bar"));
|
||||
Assert.AreEqual("_1Bar", NameHelpers.UnderscoresToPascalCase("_1_bar"));
|
||||
Assert.Equal("Bar", NameHelpers.UnderscoresToPascalCase("__+bar"));
|
||||
Assert.Equal("Bar", NameHelpers.UnderscoresToPascalCase("bar_"));
|
||||
Assert.Equal("_0Bar", NameHelpers.UnderscoresToPascalCase("_0bar"));
|
||||
Assert.Equal("_1Bar", NameHelpers.UnderscoresToPascalCase("_1_bar"));
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void UnderscoresToCamelCase()
|
||||
{
|
||||
Assert.AreEqual("fooBar", NameHelpers.UnderscoresToCamelCase("Foo_bar"));
|
||||
Assert.AreEqual("fooBar", NameHelpers.UnderscoresToCamelCase("foo_bar"));
|
||||
Assert.AreEqual("foo0Bar", NameHelpers.UnderscoresToCamelCase("Foo0bar"));
|
||||
Assert.AreEqual("fooBar", NameHelpers.UnderscoresToCamelCase("Foo_+_Bar"));
|
||||
Assert.Equal("fooBar", NameHelpers.UnderscoresToCamelCase("Foo_bar"));
|
||||
Assert.Equal("fooBar", NameHelpers.UnderscoresToCamelCase("foo_bar"));
|
||||
Assert.Equal("foo0Bar", NameHelpers.UnderscoresToCamelCase("Foo0bar"));
|
||||
Assert.Equal("fooBar", NameHelpers.UnderscoresToCamelCase("Foo_+_Bar"));
|
||||
|
||||
Assert.AreEqual("bar", NameHelpers.UnderscoresToCamelCase("__+bar"));
|
||||
Assert.AreEqual("bar", NameHelpers.UnderscoresToCamelCase("bar_"));
|
||||
Assert.AreEqual("_0Bar", NameHelpers.UnderscoresToCamelCase("_0bar"));
|
||||
Assert.AreEqual("_1Bar", NameHelpers.UnderscoresToCamelCase("_1_bar"));
|
||||
Assert.Equal("bar", NameHelpers.UnderscoresToCamelCase("__+bar"));
|
||||
Assert.Equal("bar", NameHelpers.UnderscoresToCamelCase("bar_"));
|
||||
Assert.Equal("_0Bar", NameHelpers.UnderscoresToCamelCase("_0bar"));
|
||||
Assert.Equal("_1Bar", NameHelpers.UnderscoresToCamelCase("_1_bar"));
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void StripSuffix()
|
||||
{
|
||||
string text = "FooBar";
|
||||
Assert.IsFalse(NameHelpers.StripSuffix(ref text, "Foo"));
|
||||
Assert.AreEqual("FooBar", text);
|
||||
Assert.IsTrue(NameHelpers.StripSuffix(ref text, "Bar"));
|
||||
Assert.AreEqual("Foo", text);
|
||||
Assert.False(NameHelpers.StripSuffix(ref text, "Foo"));
|
||||
Assert.Equal("FooBar", text);
|
||||
Assert.True(NameHelpers.StripSuffix(ref text, "Bar"));
|
||||
Assert.Equal("Foo", text);
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,9 +1,8 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<Import Project="..\packages\xunit.runner.visualstudio.2.0.0\build\net20\xunit.runner.visualstudio.props" Condition="Exists('..\packages\xunit.runner.visualstudio.2.0.0\build\net20\xunit.runner.visualstudio.props')" />
|
||||
<Import Project="..\packages\xunit.core.2.0.0\build\portable-net45+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS\xunit.core.props" Condition="Exists('..\packages\xunit.core.2.0.0\build\portable-net45+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS\xunit.core.props')" />
|
||||
<PropertyGroup>
|
||||
<EnvironmentFlavor>CLIENTPROFILE</EnvironmentFlavor>
|
||||
<EnvironmentTemplate>NET35</EnvironmentTemplate>
|
||||
<EnvironmentProjectType>TEST</EnvironmentProjectType>
|
||||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
||||
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
||||
<ProductVersion>9.0.30729</ProductVersion>
|
||||
|
@ -13,12 +12,14 @@
|
|||
<AppDesignerFolder>Properties</AppDesignerFolder>
|
||||
<RootNamespace>Google.ProtocolBuffers</RootNamespace>
|
||||
<AssemblyName>Google.ProtocolBuffers.Test</AssemblyName>
|
||||
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
|
||||
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
|
||||
<FileAlignment>512</FileAlignment>
|
||||
<SignAssembly>true</SignAssembly>
|
||||
<AssemblyOriginatorKeyFile>..\..\keys\Google.ProtocolBuffers.snk</AssemblyOriginatorKeyFile>
|
||||
<OldToolsVersion>3.5</OldToolsVersion>
|
||||
<TargetFrameworkProfile>Client</TargetFrameworkProfile>
|
||||
<TargetFrameworkProfile>
|
||||
</TargetFrameworkProfile>
|
||||
<NuGetPackageImportStamp>d37384c8</NuGetPackageImportStamp>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
|
@ -32,6 +33,7 @@
|
|||
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
|
||||
<NoStdLib>true</NoStdLib>
|
||||
<GenerateSerializationAssemblies>Off</GenerateSerializationAssemblies>
|
||||
<Prefer32Bit>false</Prefer32Bit>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
||||
<DebugType>pdbonly</DebugType>
|
||||
|
@ -44,32 +46,23 @@
|
|||
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
|
||||
<NoStdLib>true</NoStdLib>
|
||||
<GenerateSerializationAssemblies>Off</GenerateSerializationAssemblies>
|
||||
<Prefer32Bit>false</Prefer32Bit>
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<Reference Include="mscorlib" />
|
||||
<Reference Include="System" />
|
||||
<Reference Include="System.Xml" />
|
||||
</ItemGroup>
|
||||
<ItemGroup Condition=" '$(EnvironmentFlavor)' == 'CLIENTPROFILE' ">
|
||||
<Reference Include="nunit.framework">
|
||||
<SpecificVersion>False</SpecificVersion>
|
||||
<HintPath>..\..\lib\NUnit\lib\nunit.framework.dll</HintPath>
|
||||
<Reference Include="xunit.abstractions">
|
||||
<HintPath>..\packages\xunit.abstractions.2.0.0\lib\net35\xunit.abstractions.dll</HintPath>
|
||||
</Reference>
|
||||
</ItemGroup>
|
||||
<ItemGroup Condition=" '$(EnvironmentFlavor)' != 'CLIENTPROFILE' ">
|
||||
<Reference Include="Microsoft.Silverlight.Testing, Version=2.0.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
|
||||
<SpecificVersion>False</SpecificVersion>
|
||||
<HintPath>..\..\lib\Microsoft.Silverlight.Testing\April2010\Microsoft.Silverlight.Testing.dll</HintPath>
|
||||
<Reference Include="xunit.assert">
|
||||
<HintPath>..\packages\xunit.assert.2.0.0\lib\portable-net45+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS\xunit.assert.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="Microsoft.VisualStudio.QualityTools.UnitTesting.Silverlight, Version=2.0.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
|
||||
<SpecificVersion>False</SpecificVersion>
|
||||
<HintPath>..\..\lib\Microsoft.Silverlight.Testing\April2010\Microsoft.VisualStudio.QualityTools.UnitTesting.Silverlight.dll</HintPath>
|
||||
<Reference Include="xunit.core">
|
||||
<HintPath>..\packages\xunit.extensibility.core.2.0.0\lib\portable-net45+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS\xunit.core.dll</HintPath>
|
||||
</Reference>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Compile Include="..\..\lib\NUnit-config\Microsoft.VisualStudio.TestTools.cs">
|
||||
<Link>Microsoft.VisualStudio.TestTools.cs</Link>
|
||||
</Compile>
|
||||
<Compile Include="AbstractMessageTest.cs" />
|
||||
<Compile Include="ByteStringTest.cs" />
|
||||
<Compile Include="CodedInputStreamTest.cs" />
|
||||
|
@ -131,28 +124,16 @@
|
|||
<Name>ProtocolBuffers</Name>
|
||||
</ProjectReference>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<BootstrapperPackage Include="Microsoft.Net.Client.3.5">
|
||||
<Visible>False</Visible>
|
||||
<ProductName>.NET Framework 3.5 SP1 Client Profile</ProductName>
|
||||
<Install>false</Install>
|
||||
</BootstrapperPackage>
|
||||
<BootstrapperPackage Include="Microsoft.Net.Framework.3.5.SP1">
|
||||
<Visible>False</Visible>
|
||||
<ProductName>.NET Framework 3.5 SP1</ProductName>
|
||||
<Install>true</Install>
|
||||
</BootstrapperPackage>
|
||||
<BootstrapperPackage Include="Microsoft.Windows.Installer.3.1">
|
||||
<Visible>False</Visible>
|
||||
<ProductName>Windows Installer 3.1</ProductName>
|
||||
<Install>true</Install>
|
||||
</BootstrapperPackage>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<EmbeddedResource Include="Compatibility\google_message1.dat" />
|
||||
<EmbeddedResource Include="Compatibility\google_message2.dat" />
|
||||
</ItemGroup>
|
||||
<ItemGroup />
|
||||
<ItemGroup>
|
||||
<None Include="packages.config" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Service Include="{82A7F48D-3B50-4B1E-B82E-3ADA8210C358}" />
|
||||
</ItemGroup>
|
||||
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
||||
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
|
||||
Other similar extension points exist, see Microsoft.Common.targets.
|
||||
|
@ -161,10 +142,11 @@
|
|||
<Target Name="AfterBuild">
|
||||
</Target>
|
||||
-->
|
||||
<PropertyGroup Condition=" '$(EnvironmentFlavor)' == 'CLIENTPROFILE' ">
|
||||
<StartAction>Program</StartAction>
|
||||
<StartProgram>$(ProjectDir)..\..\lib\NUnit\tools\nunit-console.exe</StartProgram>
|
||||
<StartArguments>/nologo /noshadow /labels /wait $(AssemblyName).dll</StartArguments>
|
||||
<StartWorkingDirectory>$(ProjectDir)$(OutputPath)</StartWorkingDirectory>
|
||||
</PropertyGroup>
|
||||
<Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
|
||||
<PropertyGroup>
|
||||
<ErrorText>This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.</ErrorText>
|
||||
</PropertyGroup>
|
||||
<Error Condition="!Exists('..\packages\xunit.core.2.0.0\build\portable-net45+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS\xunit.core.props')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\xunit.core.2.0.0\build\portable-net45+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS\xunit.core.props'))" />
|
||||
<Error Condition="!Exists('..\packages\xunit.runner.visualstudio.2.0.0\build\net20\xunit.runner.visualstudio.props')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\xunit.runner.visualstudio.2.0.0\build\net20\xunit.runner.visualstudio.props'))" />
|
||||
</Target>
|
||||
</Project>
|
File diff suppressed because it is too large
Load diff
|
@ -1,48 +1,43 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel;
|
||||
using System.Text;
|
||||
using Google.ProtocolBuffers.Collections;
|
||||
using Microsoft.VisualStudio.TestTools.UnitTesting;
|
||||
using Google.ProtocolBuffers.TestProtos;
|
||||
using Google.ProtocolBuffers.Serialization;
|
||||
using UnitTest.Issues.TestProtos;
|
||||
using Xunit;
|
||||
|
||||
namespace Google.ProtocolBuffers
|
||||
{
|
||||
[TestClass]
|
||||
public class ReusableBuilderTest
|
||||
{
|
||||
//Issue 28: Circular message dependencies result in null defaults for DefaultInstance
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void EnsureStaticCicularReference()
|
||||
{
|
||||
MyMessageAReferenceB ab = MyMessageAReferenceB.DefaultInstance;
|
||||
Assert.IsNotNull(ab);
|
||||
Assert.IsNotNull(ab.Value);
|
||||
Assert.NotNull(ab);
|
||||
Assert.NotNull(ab.Value);
|
||||
MyMessageBReferenceA ba = MyMessageBReferenceA.DefaultInstance;
|
||||
Assert.IsNotNull(ba);
|
||||
Assert.IsNotNull(ba.Value);
|
||||
Assert.NotNull(ba);
|
||||
Assert.NotNull(ba.Value);
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void TestModifyDefaultInstance()
|
||||
{
|
||||
//verify that the default instance has correctly been marked as read-only
|
||||
Assert.AreEqual(typeof(PopsicleList<bool>), TestAllTypes.DefaultInstance.RepeatedBoolList.GetType());
|
||||
Assert.Equal(typeof(PopsicleList<bool>), TestAllTypes.DefaultInstance.RepeatedBoolList.GetType());
|
||||
PopsicleList<bool> list = (PopsicleList<bool>)TestAllTypes.DefaultInstance.RepeatedBoolList;
|
||||
Assert.IsTrue(list.IsReadOnly);
|
||||
Assert.True(list.IsReadOnly);
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void TestUnmodifiedDefaultInstance()
|
||||
{
|
||||
//Simply calling ToBuilder().Build() no longer creates a copy of the message
|
||||
TestAllTypes.Builder builder = TestAllTypes.DefaultInstance.ToBuilder();
|
||||
Assert.IsTrue(ReferenceEquals(TestAllTypes.DefaultInstance, builder.Build()));
|
||||
Assert.True(ReferenceEquals(TestAllTypes.DefaultInstance, builder.Build()));
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void BuildMultipleWithoutChange()
|
||||
{
|
||||
//Calling Build() or BuildPartial() does not require a copy of the message
|
||||
|
@ -51,31 +46,31 @@ namespace Google.ProtocolBuffers
|
|||
|
||||
TestAllTypes first = builder.BuildPartial();
|
||||
//Still the same instance?
|
||||
Assert.IsTrue(ReferenceEquals(first, builder.Build()));
|
||||
Assert.True(ReferenceEquals(first, builder.Build()));
|
||||
//Still the same instance?
|
||||
Assert.IsTrue(ReferenceEquals(first, builder.BuildPartial().ToBuilder().Build()));
|
||||
Assert.True(ReferenceEquals(first, builder.BuildPartial().ToBuilder().Build()));
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void MergeFromDefaultInstance()
|
||||
{
|
||||
TestAllTypes.Builder builder = TestAllTypes.DefaultInstance.ToBuilder();
|
||||
Assert.IsTrue(ReferenceEquals(TestAllTypes.DefaultInstance, builder.Build()));
|
||||
Assert.True(ReferenceEquals(TestAllTypes.DefaultInstance, builder.Build()));
|
||||
builder.MergeFrom(TestAllTypes.DefaultInstance);
|
||||
Assert.IsTrue(ReferenceEquals(TestAllTypes.DefaultInstance, builder.Build()));
|
||||
Assert.True(ReferenceEquals(TestAllTypes.DefaultInstance, builder.Build()));
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void BuildNewBuilderIsDefaultInstance()
|
||||
{
|
||||
Assert.IsTrue(ReferenceEquals(TestAllTypes.DefaultInstance, new TestAllTypes.Builder().Build()));
|
||||
Assert.IsTrue(ReferenceEquals(TestAllTypes.DefaultInstance, TestAllTypes.CreateBuilder().Build()));
|
||||
Assert.True(ReferenceEquals(TestAllTypes.DefaultInstance, new TestAllTypes.Builder().Build()));
|
||||
Assert.True(ReferenceEquals(TestAllTypes.DefaultInstance, TestAllTypes.CreateBuilder().Build()));
|
||||
//last test, if you clear a builder it reverts to default instance
|
||||
Assert.IsTrue(ReferenceEquals(TestAllTypes.DefaultInstance,
|
||||
Assert.True(ReferenceEquals(TestAllTypes.DefaultInstance,
|
||||
TestAllTypes.CreateBuilder().SetOptionalBool(true).Build().ToBuilder().Clear().Build()));
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void BuildModifyAndRebuild()
|
||||
{
|
||||
TestAllTypes.Builder b1 = new TestAllTypes.Builder();
|
||||
|
@ -91,80 +86,80 @@ namespace Google.ProtocolBuffers
|
|||
|
||||
TestAllTypes m2 = b1.Build();
|
||||
|
||||
Assert.AreEqual("{\"optional_foreign_message\":{},\"repeated_int32\":[2],\"default_int32\":1}", Extensions.ToJson(m1));
|
||||
Assert.AreEqual("{\"optional_foreign_message\":{\"c\":7},\"repeated_int32\":[2,6],\"default_int32\":5}", Extensions.ToJson(m2));
|
||||
Assert.Equal("{\"optional_foreign_message\":{},\"repeated_int32\":[2],\"default_int32\":1}", Extensions.ToJson(m1));
|
||||
Assert.Equal("{\"optional_foreign_message\":{\"c\":7},\"repeated_int32\":[2,6],\"default_int32\":5}", Extensions.ToJson(m2));
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void CloneOnChangePrimitive()
|
||||
{
|
||||
TestAllTypes.Builder builder = TestAllTypes.DefaultInstance.ToBuilder();
|
||||
Assert.IsTrue(ReferenceEquals(TestAllTypes.DefaultInstance, builder.Build()));
|
||||
Assert.True(ReferenceEquals(TestAllTypes.DefaultInstance, builder.Build()));
|
||||
builder.SetDefaultBool(true);
|
||||
Assert.IsFalse(ReferenceEquals(TestAllTypes.DefaultInstance, builder.Build()));
|
||||
Assert.False(ReferenceEquals(TestAllTypes.DefaultInstance, builder.Build()));
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void CloneOnAddRepeatedBool()
|
||||
{
|
||||
TestAllTypes.Builder builder = TestAllTypes.DefaultInstance.ToBuilder();
|
||||
Assert.IsTrue(ReferenceEquals(TestAllTypes.DefaultInstance, builder.Build()));
|
||||
Assert.True(ReferenceEquals(TestAllTypes.DefaultInstance, builder.Build()));
|
||||
builder.AddRepeatedBool(true);
|
||||
Assert.IsFalse(ReferenceEquals(TestAllTypes.DefaultInstance, builder.Build()));
|
||||
Assert.False(ReferenceEquals(TestAllTypes.DefaultInstance, builder.Build()));
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void CloneOnGetRepeatedBoolList()
|
||||
{
|
||||
TestAllTypes.Builder builder = TestAllTypes.DefaultInstance.ToBuilder();
|
||||
Assert.IsTrue(ReferenceEquals(TestAllTypes.DefaultInstance, builder.Build()));
|
||||
Assert.True(ReferenceEquals(TestAllTypes.DefaultInstance, builder.Build()));
|
||||
GC.KeepAlive(builder.RepeatedBoolList);
|
||||
Assert.IsFalse(ReferenceEquals(TestAllTypes.DefaultInstance, builder.Build()));
|
||||
Assert.False(ReferenceEquals(TestAllTypes.DefaultInstance, builder.Build()));
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void CloneOnChangeMessage()
|
||||
{
|
||||
TestAllTypes.Builder builder = TestAllTypes.DefaultInstance.ToBuilder();
|
||||
Assert.IsTrue(ReferenceEquals(TestAllTypes.DefaultInstance, builder.Build()));
|
||||
Assert.True(ReferenceEquals(TestAllTypes.DefaultInstance, builder.Build()));
|
||||
builder.SetOptionalForeignMessage(new ForeignMessage.Builder());
|
||||
Assert.IsFalse(ReferenceEquals(TestAllTypes.DefaultInstance, builder.Build()));
|
||||
Assert.False(ReferenceEquals(TestAllTypes.DefaultInstance, builder.Build()));
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void CloneOnClearMessage()
|
||||
{
|
||||
TestAllTypes.Builder builder = TestAllTypes.DefaultInstance.ToBuilder();
|
||||
Assert.IsTrue(ReferenceEquals(TestAllTypes.DefaultInstance, builder.Build()));
|
||||
Assert.True(ReferenceEquals(TestAllTypes.DefaultInstance, builder.Build()));
|
||||
builder.ClearOptionalForeignMessage();
|
||||
Assert.IsFalse(ReferenceEquals(TestAllTypes.DefaultInstance, builder.Build()));
|
||||
Assert.False(ReferenceEquals(TestAllTypes.DefaultInstance, builder.Build()));
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void CloneOnGetRepeatedForeignMessageList()
|
||||
{
|
||||
TestAllTypes.Builder builder = TestAllTypes.DefaultInstance.ToBuilder();
|
||||
Assert.IsTrue(ReferenceEquals(TestAllTypes.DefaultInstance, builder.Build()));
|
||||
Assert.True(ReferenceEquals(TestAllTypes.DefaultInstance, builder.Build()));
|
||||
GC.KeepAlive(builder.RepeatedForeignMessageList);
|
||||
Assert.IsFalse(ReferenceEquals(TestAllTypes.DefaultInstance, builder.Build()));
|
||||
Assert.False(ReferenceEquals(TestAllTypes.DefaultInstance, builder.Build()));
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void CloneOnChangeEnumValue()
|
||||
{
|
||||
TestAllTypes.Builder builder = TestAllTypes.DefaultInstance.ToBuilder();
|
||||
Assert.IsTrue(ReferenceEquals(TestAllTypes.DefaultInstance, builder.Build()));
|
||||
Assert.True(ReferenceEquals(TestAllTypes.DefaultInstance, builder.Build()));
|
||||
builder.SetOptionalForeignEnum(ForeignEnum.FOREIGN_BAR);
|
||||
Assert.IsFalse(ReferenceEquals(TestAllTypes.DefaultInstance, builder.Build()));
|
||||
Assert.False(ReferenceEquals(TestAllTypes.DefaultInstance, builder.Build()));
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void CloneOnGetRepeatedForeignEnumList()
|
||||
{
|
||||
TestAllTypes.Builder builder = TestAllTypes.DefaultInstance.ToBuilder();
|
||||
Assert.IsTrue(ReferenceEquals(TestAllTypes.DefaultInstance, builder.Build()));
|
||||
Assert.True(ReferenceEquals(TestAllTypes.DefaultInstance, builder.Build()));
|
||||
GC.KeepAlive(builder.RepeatedForeignEnumList);
|
||||
Assert.IsFalse(ReferenceEquals(TestAllTypes.DefaultInstance, builder.Build()));
|
||||
Assert.False(ReferenceEquals(TestAllTypes.DefaultInstance, builder.Build()));
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -1,15 +1,11 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
using Microsoft.VisualStudio.TestTools.UnitTesting;
|
||||
using UnitTest.Issues.TestProtos;
|
||||
using UnitTest.Issues.TestProtos;
|
||||
using Xunit;
|
||||
|
||||
namespace Google.ProtocolBuffers
|
||||
{
|
||||
[TestClass]
|
||||
public class TestCornerCases
|
||||
{
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void TestRoundTripNegativeEnums()
|
||||
{
|
||||
NegativeEnumMessage msg = NegativeEnumMessage.CreateBuilder()
|
||||
|
@ -23,16 +19,16 @@ namespace Google.ProtocolBuffers
|
|||
.AddPackedValues(NegativeEnum.FiveBelow) //10
|
||||
.Build();
|
||||
|
||||
Assert.AreEqual(58, msg.SerializedSize);
|
||||
Assert.Equal(58, msg.SerializedSize);
|
||||
|
||||
byte[] bytes = new byte[58];
|
||||
CodedOutputStream output = CodedOutputStream.CreateInstance(bytes);
|
||||
|
||||
msg.WriteTo(output);
|
||||
Assert.AreEqual(0, output.SpaceLeft);
|
||||
Assert.Equal(0, output.SpaceLeft);
|
||||
|
||||
NegativeEnumMessage copy = NegativeEnumMessage.ParseFrom(bytes);
|
||||
Assert.AreEqual(msg, copy);
|
||||
Assert.Equal(msg, copy);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -5,11 +5,10 @@ using System.Text;
|
|||
using Google.ProtocolBuffers.Serialization;
|
||||
using Google.ProtocolBuffers.Serialization.Http;
|
||||
using Google.ProtocolBuffers.TestProtos;
|
||||
using Microsoft.VisualStudio.TestTools.UnitTesting;
|
||||
using Xunit;
|
||||
|
||||
namespace Google.ProtocolBuffers
|
||||
{
|
||||
[TestClass]
|
||||
public class TestMimeMessageFormats
|
||||
{
|
||||
// There is a whole host of various json mime types in use around the net, this is the set we accept...
|
||||
|
@ -17,85 +16,91 @@ namespace Google.ProtocolBuffers
|
|||
readonly IEnumerable<string> XmlTypes = new string[] { "text/xml", "application/xml" };
|
||||
readonly IEnumerable<string> ProtobufTypes = new string[] { "application/binary", "application/x-protobuf", "application/vnd.google.protobuf" };
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void TestReadJsonMimeTypes()
|
||||
{
|
||||
foreach (string type in JsonTypes)
|
||||
{
|
||||
Assert.IsTrue(
|
||||
Assert.True(
|
||||
MessageFormatFactory.CreateInputStream(new MessageFormatOptions(), type, Stream.Null)
|
||||
is JsonFormatReader);
|
||||
}
|
||||
Assert.IsTrue(
|
||||
Assert.True(
|
||||
MessageFormatFactory.CreateInputStream(new MessageFormatOptions() { DefaultContentType = "application/json" }, null, Stream.Null)
|
||||
is JsonFormatReader);
|
||||
}
|
||||
[TestMethod]
|
||||
|
||||
[Fact]
|
||||
public void TestWriteJsonMimeTypes()
|
||||
{
|
||||
foreach (string type in JsonTypes)
|
||||
{
|
||||
Assert.IsTrue(
|
||||
Assert.True(
|
||||
MessageFormatFactory.CreateOutputStream(new MessageFormatOptions(), type, Stream.Null)
|
||||
is JsonFormatWriter);
|
||||
}
|
||||
Assert.IsTrue(
|
||||
Assert.True(
|
||||
MessageFormatFactory.CreateOutputStream(new MessageFormatOptions() { DefaultContentType = "application/json" }, null, Stream.Null)
|
||||
is JsonFormatWriter);
|
||||
}
|
||||
[TestMethod]
|
||||
|
||||
[Fact]
|
||||
public void TestReadXmlMimeTypes()
|
||||
{
|
||||
foreach (string type in XmlTypes)
|
||||
{
|
||||
Assert.IsTrue(
|
||||
Assert.True(
|
||||
MessageFormatFactory.CreateInputStream(new MessageFormatOptions(), type, Stream.Null)
|
||||
is XmlFormatReader);
|
||||
}
|
||||
Assert.IsTrue(
|
||||
Assert.True(
|
||||
MessageFormatFactory.CreateInputStream(new MessageFormatOptions() { DefaultContentType = "application/xml" }, null, Stream.Null)
|
||||
is XmlFormatReader);
|
||||
}
|
||||
[TestMethod]
|
||||
|
||||
[Fact]
|
||||
public void TestWriteXmlMimeTypes()
|
||||
{
|
||||
foreach (string type in XmlTypes)
|
||||
{
|
||||
Assert.IsTrue(
|
||||
Assert.True(
|
||||
MessageFormatFactory.CreateOutputStream(new MessageFormatOptions(), type, Stream.Null)
|
||||
is XmlFormatWriter);
|
||||
}
|
||||
Assert.IsTrue(
|
||||
Assert.True(
|
||||
MessageFormatFactory.CreateOutputStream(new MessageFormatOptions() { DefaultContentType = "application/xml" }, null, Stream.Null)
|
||||
is XmlFormatWriter);
|
||||
}
|
||||
[TestMethod]
|
||||
|
||||
[Fact]
|
||||
public void TestReadProtoMimeTypes()
|
||||
{
|
||||
foreach (string type in ProtobufTypes)
|
||||
{
|
||||
Assert.IsTrue(
|
||||
Assert.True(
|
||||
MessageFormatFactory.CreateInputStream(new MessageFormatOptions(), type, Stream.Null)
|
||||
is CodedInputStream);
|
||||
}
|
||||
Assert.IsTrue(
|
||||
Assert.True(
|
||||
MessageFormatFactory.CreateInputStream(new MessageFormatOptions() { DefaultContentType = "application/vnd.google.protobuf" }, null, Stream.Null)
|
||||
is CodedInputStream);
|
||||
}
|
||||
[TestMethod]
|
||||
|
||||
[Fact]
|
||||
public void TestWriteProtoMimeTypes()
|
||||
{
|
||||
foreach (string type in ProtobufTypes)
|
||||
{
|
||||
Assert.IsTrue(
|
||||
Assert.True(
|
||||
MessageFormatFactory.CreateOutputStream(new MessageFormatOptions(), type, Stream.Null)
|
||||
is CodedOutputStream);
|
||||
}
|
||||
Assert.IsTrue(
|
||||
Assert.True(
|
||||
MessageFormatFactory.CreateOutputStream(new MessageFormatOptions() { DefaultContentType = "application/vnd.google.protobuf" }, null, Stream.Null)
|
||||
is CodedOutputStream);
|
||||
}
|
||||
[TestMethod]
|
||||
|
||||
[Fact]
|
||||
public void TestMergeFromJsonType()
|
||||
{
|
||||
TestXmlMessage msg = Extensions.MergeFrom(new TestXmlMessage.Builder(),
|
||||
|
@ -103,10 +108,11 @@ namespace Google.ProtocolBuffers
|
|||
Extensions.ToJson(TestXmlMessage.CreateBuilder().SetText("a").SetNumber(1).Build())
|
||||
)))
|
||||
.Build();
|
||||
Assert.AreEqual("a", msg.Text);
|
||||
Assert.AreEqual(1, msg.Number);
|
||||
Assert.Equal("a", msg.Text);
|
||||
Assert.Equal(1, msg.Number);
|
||||
}
|
||||
[TestMethod]
|
||||
|
||||
[Fact]
|
||||
public void TestMergeFromXmlType()
|
||||
{
|
||||
TestXmlMessage msg = Extensions.MergeFrom(new TestXmlMessage.Builder(),
|
||||
|
@ -114,10 +120,10 @@ namespace Google.ProtocolBuffers
|
|||
Extensions.ToXml(TestXmlMessage.CreateBuilder().SetText("a").SetNumber(1).Build())
|
||||
)))
|
||||
.Build();
|
||||
Assert.AreEqual("a", msg.Text);
|
||||
Assert.AreEqual(1, msg.Number);
|
||||
Assert.Equal("a", msg.Text);
|
||||
Assert.Equal(1, msg.Number);
|
||||
}
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void TestMergeFromProtoType()
|
||||
{
|
||||
TestXmlMessage msg = Extensions.MergeFrom(new TestXmlMessage.Builder(),
|
||||
|
@ -125,28 +131,30 @@ namespace Google.ProtocolBuffers
|
|||
TestXmlMessage.CreateBuilder().SetText("a").SetNumber(1).Build().ToByteArray()
|
||||
))
|
||||
.Build();
|
||||
Assert.AreEqual("a", msg.Text);
|
||||
Assert.AreEqual(1, msg.Number);
|
||||
Assert.Equal("a", msg.Text);
|
||||
Assert.Equal(1, msg.Number);
|
||||
}
|
||||
[TestMethod]
|
||||
|
||||
[Fact]
|
||||
public void TestWriteToJsonType()
|
||||
{
|
||||
MemoryStream ms = new MemoryStream();
|
||||
Extensions.WriteTo(TestXmlMessage.CreateBuilder().SetText("a").SetNumber(1).Build(),
|
||||
new MessageFormatOptions(), "application/json", ms);
|
||||
|
||||
Assert.AreEqual(@"{""text"":""a"",""number"":1}", Encoding.UTF8.GetString(ms.ToArray(), 0, (int)ms.Length));
|
||||
Assert.Equal(@"{""text"":""a"",""number"":1}", Encoding.UTF8.GetString(ms.ToArray(), 0, (int)ms.Length));
|
||||
}
|
||||
[TestMethod]
|
||||
|
||||
[Fact]
|
||||
public void TestWriteToXmlType()
|
||||
{
|
||||
MemoryStream ms = new MemoryStream();
|
||||
Extensions.WriteTo(TestXmlMessage.CreateBuilder().SetText("a").SetNumber(1).Build(),
|
||||
new MessageFormatOptions(), "application/xml", ms);
|
||||
|
||||
Assert.AreEqual("<root><text>a</text><number>1</number></root>", Encoding.UTF8.GetString(ms.ToArray(), 0, (int)ms.Length));
|
||||
Assert.Equal("<root><text>a</text><number>1</number></root>", Encoding.UTF8.GetString(ms.ToArray(), 0, (int)ms.Length));
|
||||
}
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void TestWriteToProtoType()
|
||||
{
|
||||
MemoryStream ms = new MemoryStream();
|
||||
|
@ -154,9 +162,10 @@ namespace Google.ProtocolBuffers
|
|||
new MessageFormatOptions(), "application/vnd.google.protobuf", ms);
|
||||
|
||||
byte[] bytes = TestXmlMessage.CreateBuilder().SetText("a").SetNumber(1).Build().ToByteArray();
|
||||
TestUtil.AssertBytesEqual(bytes, ms.ToArray());
|
||||
Assert.Equal(bytes, ms.ToArray());
|
||||
}
|
||||
[TestMethod]
|
||||
|
||||
[Fact]
|
||||
public void TestXmlReaderOptions()
|
||||
{
|
||||
MemoryStream ms = new MemoryStream();
|
||||
|
@ -175,12 +184,13 @@ namespace Google.ProtocolBuffers
|
|||
options, "application/xml", ms)
|
||||
.Build();
|
||||
|
||||
Assert.AreEqual("a", msg.Text);
|
||||
Assert.AreEqual(1, msg.NumbersList[0]);
|
||||
Assert.AreEqual(2, msg.NumbersList[1]);
|
||||
Assert.Equal("a", msg.Text);
|
||||
Assert.Equal(1, msg.NumbersList[0]);
|
||||
Assert.Equal(2, msg.NumbersList[1]);
|
||||
|
||||
}
|
||||
[TestMethod]
|
||||
|
||||
[Fact]
|
||||
public void TestXmlWriterOptions()
|
||||
{
|
||||
TestXmlMessage message = TestXmlMessage.CreateBuilder().SetText("a").AddNumbers(1).AddNumbers(2).Build();
|
||||
|
@ -199,30 +209,32 @@ namespace Google.ProtocolBuffers
|
|||
.SetOptions(XmlReaderOptions.ReadNestedArrays)
|
||||
.Merge("root-node", builder);
|
||||
|
||||
Assert.AreEqual("a", builder.Text);
|
||||
Assert.AreEqual(1, builder.NumbersList[0]);
|
||||
Assert.AreEqual(2, builder.NumbersList[1]);
|
||||
Assert.Equal("a", builder.Text);
|
||||
Assert.Equal(1, builder.NumbersList[0]);
|
||||
Assert.Equal(2, builder.NumbersList[1]);
|
||||
}
|
||||
[TestMethod]
|
||||
|
||||
[Fact]
|
||||
public void TestJsonFormatted()
|
||||
{
|
||||
MemoryStream ms = new MemoryStream();
|
||||
Extensions.WriteTo(TestXmlMessage.CreateBuilder().SetText("a").SetNumber(1).Build(),
|
||||
new MessageFormatOptions() { FormattedOutput = true }, "application/json", ms);
|
||||
|
||||
Assert.AreEqual("{\r\n \"text\": \"a\",\r\n \"number\": 1\r\n}", Encoding.UTF8.GetString(ms.ToArray(), 0, (int)ms.Length));
|
||||
Assert.Equal("{\r\n \"text\": \"a\",\r\n \"number\": 1\r\n}", Encoding.UTF8.GetString(ms.ToArray(), 0, (int)ms.Length));
|
||||
}
|
||||
[TestMethod]
|
||||
|
||||
[Fact]
|
||||
public void TestXmlFormatted()
|
||||
{
|
||||
MemoryStream ms = new MemoryStream();
|
||||
Extensions.WriteTo(TestXmlMessage.CreateBuilder().SetText("a").SetNumber(1).Build(),
|
||||
new MessageFormatOptions() { FormattedOutput = true }, "application/xml", ms);
|
||||
|
||||
Assert.AreEqual("<root>\r\n <text>a</text>\r\n <number>1</number>\r\n</root>", Encoding.UTF8.GetString(ms.ToArray(), 0, (int)ms.Length));
|
||||
Assert.Equal("<root>\r\n <text>a</text>\r\n <number>1</number>\r\n</root>", Encoding.UTF8.GetString(ms.ToArray(), 0, (int)ms.Length));
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void TestReadCustomMimeTypes()
|
||||
{
|
||||
var options = new MessageFormatOptions();
|
||||
|
@ -230,7 +242,7 @@ namespace Google.ProtocolBuffers
|
|||
options.MimeInputTypes.Clear();
|
||||
//Add our own
|
||||
options.MimeInputTypes.Add("-custom-XML-mime-type-", XmlFormatReader.CreateInstance);
|
||||
Assert.AreEqual(1, options.MimeInputTypes.Count);
|
||||
Assert.Equal(1, options.MimeInputTypes.Count);
|
||||
|
||||
Stream xmlStream = new MemoryStream(Encoding.UTF8.GetBytes(
|
||||
Extensions.ToXml(TestXmlMessage.CreateBuilder().SetText("a").SetNumber(1).Build())
|
||||
|
@ -239,11 +251,11 @@ namespace Google.ProtocolBuffers
|
|||
TestXmlMessage msg = Extensions.MergeFrom(new TestXmlMessage.Builder(),
|
||||
options, "-custom-XML-mime-type-", xmlStream)
|
||||
.Build();
|
||||
Assert.AreEqual("a", msg.Text);
|
||||
Assert.AreEqual(1, msg.Number);
|
||||
Assert.Equal("a", msg.Text);
|
||||
Assert.Equal(1, msg.Number);
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void TestWriteToCustomType()
|
||||
{
|
||||
var options = new MessageFormatOptions();
|
||||
|
@ -252,13 +264,13 @@ namespace Google.ProtocolBuffers
|
|||
//Add our own
|
||||
options.MimeOutputTypes.Add("-custom-XML-mime-type-", XmlFormatWriter.CreateInstance);
|
||||
|
||||
Assert.AreEqual(1, options.MimeOutputTypes.Count);
|
||||
Assert.Equal(1, options.MimeOutputTypes.Count);
|
||||
|
||||
MemoryStream ms = new MemoryStream();
|
||||
Extensions.WriteTo(TestXmlMessage.CreateBuilder().SetText("a").SetNumber(1).Build(),
|
||||
options, "-custom-XML-mime-type-", ms);
|
||||
|
||||
Assert.AreEqual("<root><text>a</text><number>1</number></root>", Encoding.UTF8.GetString(ms.ToArray(), 0, (int)ms.Length));
|
||||
Assert.Equal("<root><text>a</text><number>1</number></root>", Encoding.UTF8.GetString(ms.ToArray(), 0, (int)ms.Length));
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,16 +1,15 @@
|
|||
using System;
|
||||
using System.IO;
|
||||
using System.Text;
|
||||
using Microsoft.VisualStudio.TestTools.UnitTesting;
|
||||
using Google.ProtocolBuffers.TestProtos;
|
||||
using Google.ProtocolBuffers.Serialization.Http;
|
||||
using Xunit;
|
||||
|
||||
namespace Google.ProtocolBuffers
|
||||
{
|
||||
[TestClass]
|
||||
public class TestReaderForUrlEncoded
|
||||
{
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void Example_FromQueryString()
|
||||
{
|
||||
Uri sampleUri = new Uri("http://sample.com/Path/File.ext?text=two+three%20four&valid=true&numbers=1&numbers=2", UriKind.Absolute);
|
||||
|
@ -21,14 +20,14 @@ namespace Google.ProtocolBuffers
|
|||
builder.MergeFrom(input);
|
||||
|
||||
TestXmlMessage message = builder.Build();
|
||||
Assert.AreEqual(true, message.Valid);
|
||||
Assert.AreEqual("two three four", message.Text);
|
||||
Assert.AreEqual(2, message.NumbersCount);
|
||||
Assert.AreEqual(1, message.NumbersList[0]);
|
||||
Assert.AreEqual(2, message.NumbersList[1]);
|
||||
Assert.Equal(true, message.Valid);
|
||||
Assert.Equal("two three four", message.Text);
|
||||
Assert.Equal(2, message.NumbersCount);
|
||||
Assert.Equal(1, message.NumbersList[0]);
|
||||
Assert.Equal(2, message.NumbersList[1]);
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void Example_FromFormData()
|
||||
{
|
||||
Stream rawPost = new MemoryStream(Encoding.UTF8.GetBytes("text=two+three%20four&valid=true&numbers=1&numbers=2"), false);
|
||||
|
@ -39,46 +38,46 @@ namespace Google.ProtocolBuffers
|
|||
builder.MergeFrom(input);
|
||||
|
||||
TestXmlMessage message = builder.Build();
|
||||
Assert.AreEqual(true, message.Valid);
|
||||
Assert.AreEqual("two three four", message.Text);
|
||||
Assert.AreEqual(2, message.NumbersCount);
|
||||
Assert.AreEqual(1, message.NumbersList[0]);
|
||||
Assert.AreEqual(2, message.NumbersList[1]);
|
||||
Assert.Equal(true, message.Valid);
|
||||
Assert.Equal("two three four", message.Text);
|
||||
Assert.Equal(2, message.NumbersCount);
|
||||
Assert.Equal(1, message.NumbersList[0]);
|
||||
Assert.Equal(2, message.NumbersList[1]);
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void TestEmptyValues()
|
||||
{
|
||||
ICodedInputStream input = FormUrlEncodedReader.CreateInstance("valid=true&text=&numbers=1");
|
||||
TestXmlMessage.Builder builder = TestXmlMessage.CreateBuilder();
|
||||
builder.MergeFrom(input);
|
||||
|
||||
Assert.IsTrue(builder.Valid);
|
||||
Assert.IsTrue(builder.HasText);
|
||||
Assert.AreEqual("", builder.Text);
|
||||
Assert.AreEqual(1, builder.NumbersCount);
|
||||
Assert.AreEqual(1, builder.NumbersList[0]);
|
||||
Assert.True(builder.Valid);
|
||||
Assert.True(builder.HasText);
|
||||
Assert.Equal("", builder.Text);
|
||||
Assert.Equal(1, builder.NumbersCount);
|
||||
Assert.Equal(1, builder.NumbersList[0]);
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void TestNoValue()
|
||||
{
|
||||
ICodedInputStream input = FormUrlEncodedReader.CreateInstance("valid=true&text&numbers=1");
|
||||
TestXmlMessage.Builder builder = TestXmlMessage.CreateBuilder();
|
||||
builder.MergeFrom(input);
|
||||
|
||||
Assert.IsTrue(builder.Valid);
|
||||
Assert.IsTrue(builder.HasText);
|
||||
Assert.AreEqual("", builder.Text);
|
||||
Assert.AreEqual(1, builder.NumbersCount);
|
||||
Assert.AreEqual(1, builder.NumbersList[0]);
|
||||
Assert.True(builder.Valid);
|
||||
Assert.True(builder.HasText);
|
||||
Assert.Equal("", builder.Text);
|
||||
Assert.Equal(1, builder.NumbersCount);
|
||||
Assert.Equal(1, builder.NumbersList[0]);
|
||||
}
|
||||
|
||||
[TestMethod, ExpectedException(typeof(NotSupportedException))]
|
||||
[Fact]
|
||||
public void FormUrlEncodedReaderDoesNotSupportChildren()
|
||||
{
|
||||
ICodedInputStream input = FormUrlEncodedReader.CreateInstance("child=uh0");
|
||||
TestXmlMessage.CreateBuilder().MergeFrom(input);
|
||||
Assert.Throws<NotSupportedException>(() => TestXmlMessage.CreateBuilder().MergeFrom(input));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
File diff suppressed because it is too large
Load diff
|
@ -1,18 +1,18 @@
|
|||
using System;
|
||||
using System.IO;
|
||||
using System.Runtime.InteropServices;
|
||||
using System.Text;
|
||||
using EnumOptions = Google.ProtocolBuffers.TestProtos.EnumOptions;
|
||||
using Google.ProtocolBuffers.DescriptorProtos;
|
||||
using Google.ProtocolBuffers.Serialization;
|
||||
using Microsoft.VisualStudio.TestTools.UnitTesting;
|
||||
using Google.ProtocolBuffers.TestProtos;
|
||||
using EnumOptions = Google.ProtocolBuffers.TestProtos.EnumOptions;
|
||||
using Xunit;
|
||||
|
||||
namespace Google.ProtocolBuffers
|
||||
{
|
||||
[TestClass]
|
||||
public class TestWriterFormatJson
|
||||
{
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void Example_FromJson()
|
||||
{
|
||||
TestXmlMessage.Builder builder = TestXmlMessage.CreateBuilder();
|
||||
|
@ -21,10 +21,10 @@ namespace Google.ProtocolBuffers
|
|||
Extensions.MergeFromJson(builder, @"{""valid"":true}");
|
||||
|
||||
TestXmlMessage message = builder.Build();
|
||||
Assert.AreEqual(true, message.Valid);
|
||||
Assert.Equal(true, message.Valid);
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void Example_ToJson()
|
||||
{
|
||||
TestXmlMessage message =
|
||||
|
@ -35,10 +35,10 @@ namespace Google.ProtocolBuffers
|
|||
//3.5: string json = message.ToJson();
|
||||
string json = Extensions.ToJson(message);
|
||||
|
||||
Assert.AreEqual(@"{""valid"":true}", json);
|
||||
Assert.Equal(@"{""valid"":true}", json);
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void Example_WriteJsonUsingICodedOutputStream()
|
||||
{
|
||||
TestXmlMessage message =
|
||||
|
@ -52,20 +52,20 @@ namespace Google.ProtocolBuffers
|
|||
writer.WriteMessageStart(); //manually begin the message, output is '{'
|
||||
|
||||
writer.Flush();
|
||||
Assert.AreEqual("{", output.ToString());
|
||||
Assert.Equal("{", output.ToString());
|
||||
|
||||
ICodedOutputStream stream = writer;
|
||||
message.WriteTo(stream); //write the message normally
|
||||
|
||||
writer.Flush();
|
||||
Assert.AreEqual(@"{""valid"":true", output.ToString());
|
||||
Assert.Equal(@"{""valid"":true", output.ToString());
|
||||
|
||||
writer.WriteMessageEnd(); //manually write the end message '}'
|
||||
Assert.AreEqual(@"{""valid"":true}", output.ToString());
|
||||
Assert.Equal(@"{""valid"":true}", output.ToString());
|
||||
}
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void Example_ReadJsonUsingICodedInputStream()
|
||||
{
|
||||
TestXmlMessage.Builder builder = TestXmlMessage.CreateBuilder();
|
||||
|
@ -94,35 +94,37 @@ namespace Google.ProtocolBuffers
|
|||
JsonFormatReader.CreateInstance(Content)
|
||||
.Merge(message.WeakCreateBuilderForType(), registry).WeakBuild();
|
||||
|
||||
Assert.AreEqual(typeof(TMessage), copy.GetType());
|
||||
Assert.AreEqual(message, copy);
|
||||
Assert.Equal(typeof(TMessage), copy.GetType());
|
||||
Assert.Equal(message, copy);
|
||||
foreach (string expect in expecting)
|
||||
Assert.IsTrue(Content.IndexOf(expect) >= 0, "Expected to find content '{0}' in: \r\n{1}", expect, Content);
|
||||
{
|
||||
Assert.True(Content.IndexOf(expect) >= 0);
|
||||
}
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void TestToJsonParseFromJson()
|
||||
{
|
||||
TestAllTypes msg = new TestAllTypes.Builder().SetDefaultBool(true).Build();
|
||||
string json = Extensions.ToJson(msg);
|
||||
Assert.AreEqual("{\"default_bool\":true}", json);
|
||||
Assert.Equal("{\"default_bool\":true}", json);
|
||||
TestAllTypes copy = Extensions.MergeFromJson(new TestAllTypes.Builder(), json).Build();
|
||||
Assert.IsTrue(copy.HasDefaultBool && copy.DefaultBool);
|
||||
Assert.AreEqual(msg, copy);
|
||||
Assert.True(copy.HasDefaultBool && copy.DefaultBool);
|
||||
Assert.Equal(msg, copy);
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void TestToJsonParseFromJsonReader()
|
||||
{
|
||||
TestAllTypes msg = new TestAllTypes.Builder().SetDefaultBool(true).Build();
|
||||
string json = Extensions.ToJson(msg);
|
||||
Assert.AreEqual("{\"default_bool\":true}", json);
|
||||
Assert.Equal("{\"default_bool\":true}", json);
|
||||
TestAllTypes copy = Extensions.MergeFromJson(new TestAllTypes.Builder(), new StringReader(json)).Build();
|
||||
Assert.IsTrue(copy.HasDefaultBool && copy.DefaultBool);
|
||||
Assert.AreEqual(msg, copy);
|
||||
Assert.True(copy.HasDefaultBool && copy.DefaultBool);
|
||||
Assert.Equal(msg, copy);
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void TestJsonFormatted()
|
||||
{
|
||||
TestXmlMessage message = TestXmlMessage.CreateBuilder()
|
||||
|
@ -142,10 +144,10 @@ namespace Google.ProtocolBuffers
|
|||
|
||||
TestXmlMessage copy = JsonFormatReader.CreateInstance(json)
|
||||
.Merge(TestXmlMessage.CreateBuilder()).Build();
|
||||
Assert.AreEqual(message, copy);
|
||||
Assert.Equal(message, copy);
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void TestEmptyMessage()
|
||||
{
|
||||
FormatterAssert(
|
||||
|
@ -155,7 +157,7 @@ namespace Google.ProtocolBuffers
|
|||
);
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void TestRepeatedField()
|
||||
{
|
||||
FormatterAssert(
|
||||
|
@ -167,7 +169,7 @@ namespace Google.ProtocolBuffers
|
|||
);
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void TestNestedEmptyMessage()
|
||||
{
|
||||
FormatterAssert(
|
||||
|
@ -178,7 +180,7 @@ namespace Google.ProtocolBuffers
|
|||
);
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void TestNestedMessage()
|
||||
{
|
||||
FormatterAssert(
|
||||
|
@ -189,7 +191,7 @@ namespace Google.ProtocolBuffers
|
|||
);
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void TestBooleanTypes()
|
||||
{
|
||||
FormatterAssert(
|
||||
|
@ -200,7 +202,7 @@ namespace Google.ProtocolBuffers
|
|||
);
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void TestFullMessage()
|
||||
{
|
||||
FormatterAssert(
|
||||
|
@ -230,7 +232,7 @@ namespace Google.ProtocolBuffers
|
|||
);
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void TestMessageWithXmlText()
|
||||
{
|
||||
FormatterAssert(
|
||||
|
@ -241,7 +243,7 @@ namespace Google.ProtocolBuffers
|
|||
);
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void TestWithEscapeChars()
|
||||
{
|
||||
FormatterAssert(
|
||||
|
@ -252,7 +254,7 @@ namespace Google.ProtocolBuffers
|
|||
);
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void TestWithExtensionText()
|
||||
{
|
||||
FormatterAssert(
|
||||
|
@ -264,7 +266,7 @@ namespace Google.ProtocolBuffers
|
|||
);
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void TestWithExtensionNumber()
|
||||
{
|
||||
FormatterAssert(
|
||||
|
@ -276,7 +278,7 @@ namespace Google.ProtocolBuffers
|
|||
);
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void TestWithExtensionArray()
|
||||
{
|
||||
FormatterAssert(
|
||||
|
@ -289,7 +291,7 @@ namespace Google.ProtocolBuffers
|
|||
);
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void TestWithExtensionEnum()
|
||||
{
|
||||
FormatterAssert(
|
||||
|
@ -300,7 +302,7 @@ namespace Google.ProtocolBuffers
|
|||
);
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void TestMessageWithExtensions()
|
||||
{
|
||||
FormatterAssert(
|
||||
|
@ -323,7 +325,7 @@ namespace Google.ProtocolBuffers
|
|||
);
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void TestMessageMissingExtensions()
|
||||
{
|
||||
TestXmlMessage original = TestXmlMessage.CreateBuilder()
|
||||
|
@ -351,23 +353,23 @@ namespace Google.ProtocolBuffers
|
|||
IMessageLite copy = JsonFormatReader.CreateInstance(Content)
|
||||
.Merge(message.CreateBuilderForType()).Build();
|
||||
|
||||
Assert.AreNotEqual(original, message);
|
||||
Assert.AreNotEqual(original, copy);
|
||||
Assert.AreEqual(message, copy);
|
||||
Assert.NotEqual(original, message);
|
||||
Assert.NotEqual(original, copy);
|
||||
Assert.Equal(message, copy);
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void TestMergeFields()
|
||||
{
|
||||
TestXmlMessage.Builder builder = TestXmlMessage.CreateBuilder();
|
||||
builder.MergeFrom(JsonFormatReader.CreateInstance("\"valid\": true"));
|
||||
builder.MergeFrom(JsonFormatReader.CreateInstance("\"text\": \"text\", \"number\": \"411\""));
|
||||
Assert.AreEqual(true, builder.Valid);
|
||||
Assert.AreEqual("text", builder.Text);
|
||||
Assert.AreEqual(411, builder.Number);
|
||||
Assert.Equal(true, builder.Valid);
|
||||
Assert.Equal("text", builder.Text);
|
||||
Assert.Equal(411, builder.Number);
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void TestMessageArray()
|
||||
{
|
||||
JsonFormatWriter writer = JsonFormatWriter.CreateInstance().Formatted();
|
||||
|
@ -386,13 +388,13 @@ namespace Google.ProtocolBuffers
|
|||
foreach (JsonFormatReader r in reader.EnumerateArray())
|
||||
{
|
||||
r.Merge(builder);
|
||||
Assert.AreEqual(++ordinal, builder.Number);
|
||||
Assert.Equal(++ordinal, builder.Number);
|
||||
}
|
||||
Assert.AreEqual(3, ordinal);
|
||||
Assert.AreEqual(3, builder.TextlinesCount);
|
||||
Assert.Equal(3, ordinal);
|
||||
Assert.Equal(3, builder.TextlinesCount);
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void TestNestedMessageArray()
|
||||
{
|
||||
JsonFormatWriter writer = JsonFormatWriter.CreateInstance();
|
||||
|
@ -416,13 +418,13 @@ namespace Google.ProtocolBuffers
|
|||
foreach (JsonFormatReader r2 in r.EnumerateArray())
|
||||
{
|
||||
r2.Merge(builder);
|
||||
Assert.AreEqual(++ordinal, builder.Number);
|
||||
Assert.Equal(++ordinal, builder.Number);
|
||||
}
|
||||
Assert.AreEqual(3, ordinal);
|
||||
Assert.AreEqual(3, builder.TextlinesCount);
|
||||
Assert.Equal(3, ordinal);
|
||||
Assert.Equal(3, builder.TextlinesCount);
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void TestReadWriteJsonWithoutRoot()
|
||||
{
|
||||
TestXmlMessage.Builder builder = TestXmlMessage.CreateBuilder();
|
||||
|
@ -437,53 +439,51 @@ namespace Google.ProtocolBuffers
|
|||
output.Flush();
|
||||
Json = sw.ToString();
|
||||
}
|
||||
Assert.AreEqual(@"""text"":""abc"",""number"":123", Json);
|
||||
Assert.Equal(@"""text"":""abc"",""number"":123", Json);
|
||||
|
||||
ICodedInputStream input = JsonFormatReader.CreateInstance(Json);
|
||||
TestXmlMessage copy = TestXmlMessage.CreateBuilder().MergeFrom(input).Build();
|
||||
|
||||
Assert.AreEqual(message, copy);
|
||||
Assert.Equal(message, copy);
|
||||
}
|
||||
|
||||
[TestMethod,ExpectedException(typeof(RecursionLimitExceededException))]
|
||||
[Fact]
|
||||
public void TestRecursiveLimit()
|
||||
{
|
||||
StringBuilder sb = new StringBuilder(8192);
|
||||
for (int i = 0; i < 80; i++)
|
||||
{
|
||||
sb.Append("{\"child\":");
|
||||
TestXmlRescursive msg = Extensions.MergeFromJson(new TestXmlRescursive.Builder(), sb.ToString()).Build();
|
||||
}
|
||||
Assert.Throws<RecursionLimitExceededException>(() => Extensions.MergeFromJson(new TestXmlRescursive.Builder(), sb.ToString()).Build());
|
||||
}
|
||||
|
||||
[TestMethod, ExpectedException(typeof(FormatException))]
|
||||
[Fact]
|
||||
public void FailWithEmptyText()
|
||||
{
|
||||
JsonFormatReader.CreateInstance("")
|
||||
.Merge(TestXmlMessage.CreateBuilder());
|
||||
Assert.Throws<FormatException>(() => JsonFormatReader.CreateInstance("").Merge(TestXmlMessage.CreateBuilder()));
|
||||
}
|
||||
|
||||
[TestMethod, ExpectedException(typeof(FormatException))]
|
||||
[Fact]
|
||||
public void FailWithUnexpectedValue()
|
||||
{
|
||||
JsonFormatReader.CreateInstance("{{}}")
|
||||
.Merge(TestXmlMessage.CreateBuilder());
|
||||
Assert.Throws<FormatException>(() => JsonFormatReader.CreateInstance("{{}}").Merge(TestXmlMessage.CreateBuilder()));
|
||||
}
|
||||
|
||||
[TestMethod, ExpectedException(typeof(FormatException))]
|
||||
[Fact]
|
||||
public void FailWithUnQuotedName()
|
||||
{
|
||||
JsonFormatReader.CreateInstance("{name:{}}")
|
||||
.Merge(TestXmlMessage.CreateBuilder());
|
||||
Assert.Throws<FormatException>(() => JsonFormatReader.CreateInstance("{name:{}}").Merge(TestXmlMessage.CreateBuilder()));
|
||||
}
|
||||
|
||||
[TestMethod, ExpectedException(typeof(FormatException))]
|
||||
[Fact]
|
||||
public void FailWithUnexpectedType()
|
||||
{
|
||||
JsonFormatReader.CreateInstance("{\"valid\":{}}")
|
||||
.Merge(TestXmlMessage.CreateBuilder());
|
||||
Assert.Throws<FormatException>(() => JsonFormatReader.CreateInstance("{\"valid\":{}}").Merge(TestXmlMessage.CreateBuilder()));
|
||||
}
|
||||
|
||||
// See issue 64 for background.
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void ToJsonRequiringBufferExpansion()
|
||||
{
|
||||
string s = new string('.', 4086);
|
||||
|
@ -492,7 +492,7 @@ namespace Google.ProtocolBuffers
|
|||
.SetPackage("package")
|
||||
.BuildPartial();
|
||||
|
||||
Assert.IsNotNull(Extensions.ToJson(opts));
|
||||
Assert.NotNull(Extensions.ToJson(opts));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,18 +1,16 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.IO;
|
||||
using System.Text;
|
||||
using System.Xml;
|
||||
using Google.ProtocolBuffers.Serialization;
|
||||
using Microsoft.VisualStudio.TestTools.UnitTesting;
|
||||
using Google.ProtocolBuffers.TestProtos;
|
||||
using Xunit;
|
||||
|
||||
namespace Google.ProtocolBuffers
|
||||
{
|
||||
[TestClass]
|
||||
public class TestWriterFormatXml
|
||||
{
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void Example_FromXml()
|
||||
{
|
||||
TestXmlMessage.Builder builder = TestXmlMessage.CreateBuilder();
|
||||
|
@ -22,10 +20,10 @@ namespace Google.ProtocolBuffers
|
|||
Extensions.MergeFromXml(builder, rdr);
|
||||
|
||||
TestXmlMessage message = builder.Build();
|
||||
Assert.AreEqual(true, message.Valid);
|
||||
Assert.Equal(true, message.Valid);
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void Example_ToXml()
|
||||
{
|
||||
TestXmlMessage message =
|
||||
|
@ -36,10 +34,10 @@ namespace Google.ProtocolBuffers
|
|||
//3.5: string Xml = message.ToXml();
|
||||
string Xml = Extensions.ToXml(message);
|
||||
|
||||
Assert.AreEqual(@"<root><valid>true</valid></root>", Xml);
|
||||
Assert.Equal(@"<root><valid>true</valid></root>", Xml);
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void Example_WriteXmlUsingICodedOutputStream()
|
||||
{
|
||||
TestXmlMessage message =
|
||||
|
@ -56,11 +54,11 @@ namespace Google.ProtocolBuffers
|
|||
message.WriteTo(stream); //write the message normally
|
||||
|
||||
writer.WriteMessageEnd(); //manually write the end message '}'
|
||||
Assert.AreEqual(@"<root><valid>true</valid></root>", output.ToString());
|
||||
Assert.Equal(@"<root><valid>true</valid></root>", output.ToString());
|
||||
}
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void Example_ReadXmlUsingICodedInputStream()
|
||||
{
|
||||
TestXmlMessage.Builder builder = TestXmlMessage.CreateBuilder();
|
||||
|
@ -73,29 +71,29 @@ namespace Google.ProtocolBuffers
|
|||
reader.ReadMessageEnd(); //manually read the end message '}'
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void TestToXmlParseFromXml()
|
||||
{
|
||||
TestAllTypes msg = new TestAllTypes.Builder().SetDefaultBool(true).Build();
|
||||
string xml = Extensions.ToXml(msg);
|
||||
Assert.AreEqual("<root><default_bool>true</default_bool></root>", xml);
|
||||
Assert.Equal("<root><default_bool>true</default_bool></root>", xml);
|
||||
TestAllTypes copy = Extensions.MergeFromXml(new TestAllTypes.Builder(), XmlReader.Create(new StringReader(xml))).Build();
|
||||
Assert.IsTrue(copy.HasDefaultBool && copy.DefaultBool);
|
||||
Assert.AreEqual(msg, copy);
|
||||
Assert.True(copy.HasDefaultBool && copy.DefaultBool);
|
||||
Assert.Equal(msg, copy);
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void TestToXmlParseFromXmlWithRootName()
|
||||
{
|
||||
TestAllTypes msg = new TestAllTypes.Builder().SetDefaultBool(true).Build();
|
||||
string xml = Extensions.ToXml(msg, "message");
|
||||
Assert.AreEqual("<message><default_bool>true</default_bool></message>", xml);
|
||||
Assert.Equal("<message><default_bool>true</default_bool></message>", xml);
|
||||
TestAllTypes copy = Extensions.MergeFromXml(new TestAllTypes.Builder(), "message", XmlReader.Create(new StringReader(xml))).Build();
|
||||
Assert.IsTrue(copy.HasDefaultBool && copy.DefaultBool);
|
||||
Assert.AreEqual(msg, copy);
|
||||
Assert.True(copy.HasDefaultBool && copy.DefaultBool);
|
||||
Assert.Equal(msg, copy);
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void TestEmptyMessage()
|
||||
{
|
||||
TestXmlChild message = TestXmlChild.CreateBuilder()
|
||||
|
@ -113,9 +111,9 @@ namespace Google.ProtocolBuffers
|
|||
string xml = sw.ToString();
|
||||
XmlFormatReader rdr = XmlFormatReader.CreateInstance(xml);
|
||||
TestXmlChild copy = rdr.Merge(TestXmlChild.CreateBuilder()).Build();
|
||||
Assert.AreEqual(message, copy);
|
||||
Assert.Equal(message, copy);
|
||||
}
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void TestRepeatedField()
|
||||
{
|
||||
TestXmlChild message = TestXmlChild.CreateBuilder()
|
||||
|
@ -130,9 +128,10 @@ namespace Google.ProtocolBuffers
|
|||
string xml = sw.ToString();
|
||||
XmlFormatReader rdr = XmlFormatReader.CreateInstance(xml);
|
||||
TestXmlChild copy = rdr.Merge(TestXmlChild.CreateBuilder()).Build();
|
||||
Assert.AreEqual(message, copy);
|
||||
Assert.Equal(message, copy);
|
||||
}
|
||||
[TestMethod]
|
||||
|
||||
[Fact]
|
||||
public void TestNestedEmptyMessage()
|
||||
{
|
||||
TestXmlMessage message = TestXmlMessage.CreateBuilder()
|
||||
|
@ -145,9 +144,10 @@ namespace Google.ProtocolBuffers
|
|||
string xml = sw.ToString();
|
||||
XmlFormatReader rdr = XmlFormatReader.CreateInstance(xml);
|
||||
TestXmlMessage copy = rdr.Merge(TestXmlMessage.CreateBuilder()).Build();
|
||||
Assert.AreEqual(message, copy);
|
||||
Assert.Equal(message, copy);
|
||||
}
|
||||
[TestMethod]
|
||||
|
||||
[Fact]
|
||||
public void TestNestedMessage()
|
||||
{
|
||||
TestXmlMessage message = TestXmlMessage.CreateBuilder()
|
||||
|
@ -160,9 +160,10 @@ namespace Google.ProtocolBuffers
|
|||
string xml = sw.ToString();
|
||||
XmlFormatReader rdr = XmlFormatReader.CreateInstance(xml);
|
||||
TestXmlMessage copy = rdr.Merge(TestXmlMessage.CreateBuilder()).Build();
|
||||
Assert.AreEqual(message, copy);
|
||||
Assert.Equal(message, copy);
|
||||
}
|
||||
[TestMethod]
|
||||
|
||||
[Fact]
|
||||
public void TestBooleanTypes()
|
||||
{
|
||||
TestXmlMessage message = TestXmlMessage.CreateBuilder()
|
||||
|
@ -175,9 +176,10 @@ namespace Google.ProtocolBuffers
|
|||
string xml = sw.ToString();
|
||||
XmlFormatReader rdr = XmlFormatReader.CreateInstance(xml);
|
||||
TestXmlMessage copy = rdr.Merge(TestXmlMessage.CreateBuilder()).Build();
|
||||
Assert.AreEqual(message, copy);
|
||||
Assert.Equal(message, copy);
|
||||
}
|
||||
[TestMethod]
|
||||
|
||||
[Fact]
|
||||
public void TestFullMessage()
|
||||
{
|
||||
TestXmlMessage message = TestXmlMessage.CreateBuilder()
|
||||
|
@ -204,9 +206,10 @@ namespace Google.ProtocolBuffers
|
|||
|
||||
XmlFormatReader rdr = XmlFormatReader.CreateInstance(xml);
|
||||
TestXmlMessage copy = rdr.Merge(TestXmlMessage.CreateBuilder()).Build();
|
||||
Assert.AreEqual(message, copy);
|
||||
Assert.Equal(message, copy);
|
||||
}
|
||||
[TestMethod]
|
||||
|
||||
[Fact]
|
||||
public void TestFullMessageWithRichTypes()
|
||||
{
|
||||
TestXmlMessage message = TestXmlMessage.CreateBuilder()
|
||||
|
@ -236,9 +239,10 @@ namespace Google.ProtocolBuffers
|
|||
XmlFormatReader rdr = XmlFormatReader.CreateInstance(xml);
|
||||
rdr.Options = XmlReaderOptions.ReadNestedArrays;
|
||||
TestXmlMessage copy = rdr.Merge(TestXmlMessage.CreateBuilder()).Build();
|
||||
Assert.AreEqual(message, copy);
|
||||
Assert.Equal(message, copy);
|
||||
}
|
||||
[TestMethod]
|
||||
|
||||
[Fact]
|
||||
public void TestFullMessageWithUnknownFields()
|
||||
{
|
||||
TestXmlMessage origial = TestXmlMessage.CreateBuilder()
|
||||
|
@ -257,7 +261,7 @@ namespace Google.ProtocolBuffers
|
|||
.Build();
|
||||
TestXmlNoFields message = TestXmlNoFields.CreateBuilder().MergeFrom(origial.ToByteArray()).Build();
|
||||
|
||||
Assert.AreEqual(0, message.AllFields.Count);
|
||||
Assert.Equal(0, message.AllFields.Count);
|
||||
|
||||
StringWriter sw = new StringWriter();
|
||||
XmlFormatWriter.CreateInstance(sw)
|
||||
|
@ -269,9 +273,9 @@ namespace Google.ProtocolBuffers
|
|||
using (XmlReader x = XmlReader.Create(new StringReader(xml)))
|
||||
{
|
||||
x.MoveToContent();
|
||||
Assert.AreEqual(XmlNodeType.Element, x.NodeType);
|
||||
Assert.Equal(XmlNodeType.Element, x.NodeType);
|
||||
//should always be empty
|
||||
Assert.IsTrue(x.IsEmptyElement ||
|
||||
Assert.True(x.IsEmptyElement ||
|
||||
(x.Read() && x.NodeType == XmlNodeType.EndElement)
|
||||
);
|
||||
}
|
||||
|
@ -279,9 +283,10 @@ namespace Google.ProtocolBuffers
|
|||
XmlFormatReader rdr = XmlFormatReader.CreateInstance(xml);
|
||||
rdr.Options = XmlReaderOptions.ReadNestedArrays;
|
||||
TestXmlMessage copy = rdr.Merge(TestXmlMessage.CreateBuilder()).Build();
|
||||
Assert.AreEqual(TestXmlMessage.DefaultInstance, copy);
|
||||
Assert.Equal(TestXmlMessage.DefaultInstance, copy);
|
||||
}
|
||||
[TestMethod]
|
||||
|
||||
[Fact]
|
||||
public void TestMessageWithXmlText()
|
||||
{
|
||||
TestXmlMessage message = TestXmlMessage.CreateBuilder()
|
||||
|
@ -294,9 +299,10 @@ namespace Google.ProtocolBuffers
|
|||
|
||||
XmlFormatReader rdr = XmlFormatReader.CreateInstance(xml);
|
||||
TestXmlMessage copy = rdr.Merge(TestXmlMessage.CreateBuilder()).Build();
|
||||
Assert.AreEqual(message, copy);
|
||||
Assert.Equal(message, copy);
|
||||
}
|
||||
[TestMethod]
|
||||
|
||||
[Fact]
|
||||
public void TestXmlWithWhitespace()
|
||||
{
|
||||
TestXmlMessage message = TestXmlMessage.CreateBuilder()
|
||||
|
@ -309,9 +315,10 @@ namespace Google.ProtocolBuffers
|
|||
|
||||
XmlFormatReader rdr = XmlFormatReader.CreateInstance(xml);
|
||||
TestXmlMessage copy = rdr.Merge(TestXmlMessage.CreateBuilder()).Build();
|
||||
Assert.AreEqual(message, copy);
|
||||
Assert.Equal(message, copy);
|
||||
}
|
||||
[TestMethod]
|
||||
|
||||
[Fact]
|
||||
public void TestXmlWithExtensionText()
|
||||
{
|
||||
TestXmlMessage message = TestXmlMessage.CreateBuilder()
|
||||
|
@ -328,9 +335,10 @@ namespace Google.ProtocolBuffers
|
|||
|
||||
XmlFormatReader rdr = XmlFormatReader.CreateInstance(xml);
|
||||
TestXmlMessage copy = rdr.Merge(TestXmlMessage.CreateBuilder(), registry).Build();
|
||||
Assert.AreEqual(message, copy);
|
||||
Assert.Equal(message, copy);
|
||||
}
|
||||
[TestMethod]
|
||||
|
||||
[Fact]
|
||||
public void TestXmlWithExtensionMessage()
|
||||
{
|
||||
TestXmlMessage message = TestXmlMessage.CreateBuilder()
|
||||
|
@ -347,9 +355,10 @@ namespace Google.ProtocolBuffers
|
|||
|
||||
XmlFormatReader rdr = XmlFormatReader.CreateInstance(xml);
|
||||
TestXmlMessage copy = rdr.Merge(TestXmlMessage.CreateBuilder(), registry).Build();
|
||||
Assert.AreEqual(message, copy);
|
||||
Assert.Equal(message, copy);
|
||||
}
|
||||
[TestMethod]
|
||||
|
||||
[Fact]
|
||||
public void TestXmlWithExtensionArray()
|
||||
{
|
||||
TestXmlMessage message = TestXmlMessage.CreateBuilder()
|
||||
|
@ -368,9 +377,10 @@ namespace Google.ProtocolBuffers
|
|||
|
||||
XmlFormatReader rdr = XmlFormatReader.CreateInstance(xml);
|
||||
TestXmlMessage copy = rdr.Merge(TestXmlMessage.CreateBuilder(), registry).Build();
|
||||
Assert.AreEqual(message, copy);
|
||||
Assert.Equal(message, copy);
|
||||
}
|
||||
[TestMethod]
|
||||
|
||||
[Fact]
|
||||
public void TestXmlWithExtensionEnum()
|
||||
{
|
||||
TestXmlMessage message = TestXmlMessage.CreateBuilder()
|
||||
|
@ -387,9 +397,10 @@ namespace Google.ProtocolBuffers
|
|||
|
||||
XmlFormatReader rdr = XmlFormatReader.CreateInstance(xml);
|
||||
TestXmlMessage copy = rdr.Merge(TestXmlMessage.CreateBuilder(), registry).Build();
|
||||
Assert.AreEqual(message, copy);
|
||||
Assert.Equal(message, copy);
|
||||
}
|
||||
[TestMethod]
|
||||
|
||||
[Fact]
|
||||
public void TestXmlReadEmptyRoot()
|
||||
{
|
||||
TestXmlMessage.Builder builder = TestXmlMessage.CreateBuilder();
|
||||
|
@ -402,7 +413,7 @@ namespace Google.ProtocolBuffers
|
|||
reader.ReadMessageEnd(); //manually read the end message '}'
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void TestXmlReadEmptyChild()
|
||||
{
|
||||
TestXmlMessage.Builder builder = TestXmlMessage.CreateBuilder();
|
||||
|
@ -411,11 +422,11 @@ namespace Google.ProtocolBuffers
|
|||
reader.ReadMessageStart(); //manually read the begin the message '{'
|
||||
|
||||
builder.MergeFrom(reader); //write the message normally
|
||||
Assert.IsTrue(builder.HasText);
|
||||
Assert.AreEqual(String.Empty, builder.Text);
|
||||
Assert.True(builder.HasText);
|
||||
Assert.Equal(String.Empty, builder.Text);
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void TestXmlReadWriteWithoutRoot()
|
||||
{
|
||||
TestXmlMessage.Builder builder = TestXmlMessage.CreateBuilder();
|
||||
|
@ -431,7 +442,7 @@ namespace Google.ProtocolBuffers
|
|||
output.Flush();
|
||||
xml = sw.ToString();
|
||||
}
|
||||
Assert.AreEqual("<text>abc</text><number>123</number>", xml);
|
||||
Assert.Equal("<text>abc</text><number>123</number>", xml);
|
||||
|
||||
TestXmlMessage copy;
|
||||
using (XmlReader xr = XmlReader.Create(new StringReader(xml), new XmlReaderSettings() { ConformanceLevel = ConformanceLevel.Fragment }))
|
||||
|
@ -440,16 +451,18 @@ namespace Google.ProtocolBuffers
|
|||
copy = TestXmlMessage.CreateBuilder().MergeFrom(input).Build();
|
||||
}
|
||||
|
||||
Assert.AreEqual(message, copy);
|
||||
Assert.Equal(message, copy);
|
||||
}
|
||||
|
||||
[TestMethod, ExpectedException(typeof(RecursionLimitExceededException))]
|
||||
[Fact]
|
||||
public void TestRecursiveLimit()
|
||||
{
|
||||
StringBuilder sb = new StringBuilder(8192);
|
||||
for (int i = 0; i < 80; i++)
|
||||
{
|
||||
sb.Append("<child>");
|
||||
TestXmlRescursive msg = Extensions.MergeFromXml(new TestXmlRescursive.Builder(), "child", XmlReader.Create(new StringReader(sb.ToString()))).Build();
|
||||
}
|
||||
Assert.Throws<RecursionLimitExceededException>(() => Extensions.MergeFromXml(new TestXmlRescursive.Builder(), "child", XmlReader.Create(new StringReader(sb.ToString()))).Build());
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -36,15 +36,11 @@
|
|||
|
||||
using System;
|
||||
using System.IO;
|
||||
using System.Text;
|
||||
using Google.ProtocolBuffers.TestProtos;
|
||||
using Microsoft.VisualStudio.TestTools.UnitTesting;
|
||||
using System.Globalization;
|
||||
using System.Threading;
|
||||
using Xunit;
|
||||
|
||||
namespace Google.ProtocolBuffers
|
||||
{
|
||||
[TestClass]
|
||||
public class TextFormatTest
|
||||
{
|
||||
private static readonly string AllFieldsSetText = TestResources.text_format_unittest_data;
|
||||
|
@ -88,46 +84,46 @@ namespace Google.ProtocolBuffers
|
|||
/// <summary>
|
||||
/// Print TestAllTypes and compare with golden file.
|
||||
/// </summary>
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void PrintMessage()
|
||||
{
|
||||
TestUtil.TestInMultipleCultures(() =>
|
||||
{
|
||||
string text = TextFormat.PrintToString(TestUtil.GetAllSet());
|
||||
Assert.AreEqual(AllFieldsSetText.Replace("\r\n", "\n").Trim(),
|
||||
text.Replace("\r\n", "\n").Trim());
|
||||
});
|
||||
{
|
||||
string text = TextFormat.PrintToString(TestUtil.GetAllSet());
|
||||
Assert.Equal(AllFieldsSetText.Replace("\r\n", "\n").Trim(),
|
||||
text.Replace("\r\n", "\n").Trim());
|
||||
});
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Tests that a builder prints the same way as a message.
|
||||
/// </summary>
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void PrintBuilder()
|
||||
{
|
||||
TestUtil.TestInMultipleCultures(() =>
|
||||
{
|
||||
string messageText = TextFormat.PrintToString(TestUtil.GetAllSet());
|
||||
string builderText = TextFormat.PrintToString(TestUtil.GetAllSet().ToBuilder());
|
||||
Assert.AreEqual(messageText, builderText);
|
||||
Assert.Equal(messageText, builderText);
|
||||
});
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Print TestAllExtensions and compare with golden file.
|
||||
/// </summary>
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void PrintExtensions()
|
||||
{
|
||||
string text = TextFormat.PrintToString(TestUtil.GetAllExtensionsSet());
|
||||
|
||||
Assert.AreEqual(AllExtensionsSetText.Replace("\r\n", "\n").Trim(), text.Replace("\r\n", "\n").Trim());
|
||||
Assert.Equal(AllExtensionsSetText.Replace("\r\n", "\n").Trim(), text.Replace("\r\n", "\n").Trim());
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Test printing of unknown fields in a message.
|
||||
/// </summary>
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void PrintUnknownFields()
|
||||
{
|
||||
TestEmptyMessage message =
|
||||
|
@ -163,7 +159,7 @@ namespace Google.ProtocolBuffers
|
|||
.Build())
|
||||
.Build();
|
||||
|
||||
Assert.AreEqual(
|
||||
Assert.Equal(
|
||||
"5: 1\n" +
|
||||
"5: 0x00000002\n" +
|
||||
"5: 0x0000000000000003\n" +
|
||||
|
@ -193,7 +189,7 @@ namespace Google.ProtocolBuffers
|
|||
return ByteString.CopyFrom(bytes);
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void PrintExotic()
|
||||
{
|
||||
IMessage message = TestAllTypes.CreateBuilder()
|
||||
|
@ -224,10 +220,10 @@ namespace Google.ProtocolBuffers
|
|||
.AddRepeatedBytes(Bytes("\0\u0001\u0007\b\f\n\r\t\v\\\'\"\u00fe"))
|
||||
.Build();
|
||||
|
||||
Assert.AreEqual(ExoticText, message.ToString());
|
||||
Assert.Equal(ExoticText, message.ToString());
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void PrintMessageSet()
|
||||
{
|
||||
TestMessageSet messageSet =
|
||||
|
@ -240,12 +236,12 @@ namespace Google.ProtocolBuffers
|
|||
TestMessageSetExtension2.CreateBuilder().SetStr("foo").Build())
|
||||
.Build();
|
||||
|
||||
Assert.AreEqual(MessageSetText, messageSet.ToString());
|
||||
Assert.Equal(MessageSetText, messageSet.ToString());
|
||||
}
|
||||
|
||||
// =================================================================
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void Parse()
|
||||
{
|
||||
TestUtil.TestInMultipleCultures(() =>
|
||||
|
@ -256,7 +252,7 @@ namespace Google.ProtocolBuffers
|
|||
});
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void ParseReader()
|
||||
{
|
||||
TestAllTypes.Builder builder = TestAllTypes.CreateBuilder();
|
||||
|
@ -264,7 +260,7 @@ namespace Google.ProtocolBuffers
|
|||
TestUtil.AssertAllFieldsSet(builder.Build());
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void ParseExtensions()
|
||||
{
|
||||
TestAllExtensions.Builder builder = TestAllExtensions.CreateBuilder();
|
||||
|
@ -274,7 +270,7 @@ namespace Google.ProtocolBuffers
|
|||
TestUtil.AssertAllExtensionsSet(builder.Build());
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void ParseCompatibility()
|
||||
{
|
||||
string original = "repeated_float: inf\n" +
|
||||
|
@ -303,10 +299,10 @@ namespace Google.ProtocolBuffers
|
|||
"repeated_double: NaN\n";
|
||||
TestAllTypes.Builder builder = TestAllTypes.CreateBuilder();
|
||||
TextFormat.Merge(original, builder);
|
||||
Assert.AreEqual(canonical, builder.Build().ToString());
|
||||
Assert.Equal(canonical, builder.Build().ToString());
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void ParseExotic()
|
||||
{
|
||||
TestAllTypes.Builder builder = TestAllTypes.CreateBuilder();
|
||||
|
@ -314,10 +310,10 @@ namespace Google.ProtocolBuffers
|
|||
|
||||
// Too lazy to check things individually. Don't try to debug this
|
||||
// if testPrintExotic() is Assert.Failing.
|
||||
Assert.AreEqual(ExoticText, builder.Build().ToString());
|
||||
Assert.Equal(ExoticText, builder.Build().ToString());
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void ParseMessageSet()
|
||||
{
|
||||
ExtensionRegistry extensionRegistry = ExtensionRegistry.CreateInstance();
|
||||
|
@ -328,30 +324,30 @@ namespace Google.ProtocolBuffers
|
|||
TextFormat.Merge(MessageSetText, extensionRegistry, builder);
|
||||
TestMessageSet messageSet = builder.Build();
|
||||
|
||||
Assert.IsTrue(messageSet.HasExtension(TestMessageSetExtension1.MessageSetExtension));
|
||||
Assert.AreEqual(123, messageSet.GetExtension(TestMessageSetExtension1.MessageSetExtension).I);
|
||||
Assert.IsTrue(messageSet.HasExtension(TestMessageSetExtension2.MessageSetExtension));
|
||||
Assert.AreEqual("foo", messageSet.GetExtension(TestMessageSetExtension2.MessageSetExtension).Str);
|
||||
Assert.True(messageSet.HasExtension(TestMessageSetExtension1.MessageSetExtension));
|
||||
Assert.Equal(123, messageSet.GetExtension(TestMessageSetExtension1.MessageSetExtension).I);
|
||||
Assert.True(messageSet.HasExtension(TestMessageSetExtension2.MessageSetExtension));
|
||||
Assert.Equal("foo", messageSet.GetExtension(TestMessageSetExtension2.MessageSetExtension).Str);
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void ParseNumericEnum()
|
||||
{
|
||||
TestAllTypes.Builder builder = TestAllTypes.CreateBuilder();
|
||||
TextFormat.Merge("optional_nested_enum: 2", builder);
|
||||
Assert.AreEqual(TestAllTypes.Types.NestedEnum.BAR, builder.OptionalNestedEnum);
|
||||
Assert.Equal(TestAllTypes.Types.NestedEnum.BAR, builder.OptionalNestedEnum);
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void ParseAngleBrackets()
|
||||
{
|
||||
TestAllTypes.Builder builder = TestAllTypes.CreateBuilder();
|
||||
TextFormat.Merge("OptionalGroup: < a: 1 >", builder);
|
||||
Assert.IsTrue(builder.HasOptionalGroup);
|
||||
Assert.AreEqual(1, builder.OptionalGroup.A);
|
||||
Assert.True(builder.HasOptionalGroup);
|
||||
Assert.Equal(1, builder.OptionalGroup.A);
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void ParseComment()
|
||||
{
|
||||
TestAllTypes.Builder builder = TestAllTypes.CreateBuilder();
|
||||
|
@ -360,26 +356,19 @@ namespace Google.ProtocolBuffers
|
|||
"optional_int32: 1 # another comment\n" +
|
||||
"optional_int64: 2\n" +
|
||||
"# EOF comment", builder);
|
||||
Assert.AreEqual(1, builder.OptionalInt32);
|
||||
Assert.AreEqual(2, builder.OptionalInt64);
|
||||
Assert.Equal(1, builder.OptionalInt32);
|
||||
Assert.Equal(2, builder.OptionalInt64);
|
||||
}
|
||||
|
||||
|
||||
private static void AssertParseError(string error, string text)
|
||||
{
|
||||
TestAllTypes.Builder builder = TestAllTypes.CreateBuilder();
|
||||
try
|
||||
{
|
||||
TextFormat.Merge(text, TestUtil.CreateExtensionRegistry(), builder);
|
||||
Assert.Fail("Expected parse exception.");
|
||||
}
|
||||
catch (FormatException e)
|
||||
{
|
||||
Assert.AreEqual(error, e.Message);
|
||||
}
|
||||
Exception exception = Assert.Throws<FormatException>(() => TextFormat.Merge(text, TestUtil.CreateExtensionRegistry(), builder));
|
||||
Assert.Equal(error, exception.Message);
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void ParseErrors()
|
||||
{
|
||||
AssertParseError(
|
||||
|
@ -454,111 +443,96 @@ namespace Google.ProtocolBuffers
|
|||
return ByteString.CopyFrom(bytes);
|
||||
}
|
||||
|
||||
private delegate void FormattingAction();
|
||||
|
||||
private static void AssertFormatException(FormattingAction action)
|
||||
{
|
||||
try
|
||||
{
|
||||
action();
|
||||
Assert.Fail("Should have thrown an exception.");
|
||||
}
|
||||
catch (FormatException)
|
||||
{
|
||||
// success
|
||||
}
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void Escape()
|
||||
{
|
||||
// Escape sequences.
|
||||
Assert.AreEqual("\\000\\001\\a\\b\\f\\n\\r\\t\\v\\\\\\'\\\"",
|
||||
Assert.Equal("\\000\\001\\a\\b\\f\\n\\r\\t\\v\\\\\\'\\\"",
|
||||
TextFormat.EscapeBytes(Bytes("\0\u0001\u0007\b\f\n\r\t\v\\\'\"")));
|
||||
Assert.AreEqual("\\000\\001\\a\\b\\f\\n\\r\\t\\v\\\\\\'\\\"",
|
||||
Assert.Equal("\\000\\001\\a\\b\\f\\n\\r\\t\\v\\\\\\'\\\"",
|
||||
TextFormat.EscapeText("\0\u0001\u0007\b\f\n\r\t\v\\\'\""));
|
||||
Assert.AreEqual(Bytes("\0\u0001\u0007\b\f\n\r\t\v\\\'\""),
|
||||
Assert.Equal(Bytes("\0\u0001\u0007\b\f\n\r\t\v\\\'\""),
|
||||
TextFormat.UnescapeBytes("\\000\\001\\a\\b\\f\\n\\r\\t\\v\\\\\\'\\\""));
|
||||
Assert.AreEqual("\0\u0001\u0007\b\f\n\r\t\v\\\'\"",
|
||||
Assert.Equal("\0\u0001\u0007\b\f\n\r\t\v\\\'\"",
|
||||
TextFormat.UnescapeText("\\000\\001\\a\\b\\f\\n\\r\\t\\v\\\\\\'\\\""));
|
||||
|
||||
// Unicode handling.
|
||||
Assert.AreEqual("\\341\\210\\264", TextFormat.EscapeText("\u1234"));
|
||||
Assert.AreEqual("\\341\\210\\264", TextFormat.EscapeBytes(Bytes(0xe1, 0x88, 0xb4)));
|
||||
Assert.AreEqual("\u1234", TextFormat.UnescapeText("\\341\\210\\264"));
|
||||
Assert.AreEqual(Bytes(0xe1, 0x88, 0xb4), TextFormat.UnescapeBytes("\\341\\210\\264"));
|
||||
Assert.AreEqual("\u1234", TextFormat.UnescapeText("\\xe1\\x88\\xb4"));
|
||||
Assert.AreEqual(Bytes(0xe1, 0x88, 0xb4), TextFormat.UnescapeBytes("\\xe1\\x88\\xb4"));
|
||||
Assert.Equal("\\341\\210\\264", TextFormat.EscapeText("\u1234"));
|
||||
Assert.Equal("\\341\\210\\264", TextFormat.EscapeBytes(Bytes(0xe1, 0x88, 0xb4)));
|
||||
Assert.Equal("\u1234", TextFormat.UnescapeText("\\341\\210\\264"));
|
||||
Assert.Equal(Bytes(0xe1, 0x88, 0xb4), TextFormat.UnescapeBytes("\\341\\210\\264"));
|
||||
Assert.Equal("\u1234", TextFormat.UnescapeText("\\xe1\\x88\\xb4"));
|
||||
Assert.Equal(Bytes(0xe1, 0x88, 0xb4), TextFormat.UnescapeBytes("\\xe1\\x88\\xb4"));
|
||||
|
||||
// Errors.
|
||||
AssertFormatException(() => TextFormat.UnescapeText("\\x"));
|
||||
AssertFormatException(() => TextFormat.UnescapeText("\\z"));
|
||||
AssertFormatException(() => TextFormat.UnescapeText("\\"));
|
||||
Assert.Throws<FormatException>(() => TextFormat.UnescapeText("\\x"));
|
||||
Assert.Throws<FormatException>(() => TextFormat.UnescapeText("\\z"));
|
||||
Assert.Throws<FormatException>(() => TextFormat.UnescapeText("\\"));
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void ParseInteger()
|
||||
{
|
||||
Assert.AreEqual(0, TextFormat.ParseInt32("0"));
|
||||
Assert.AreEqual(1, TextFormat.ParseInt32("1"));
|
||||
Assert.AreEqual(-1, TextFormat.ParseInt32("-1"));
|
||||
Assert.AreEqual(12345, TextFormat.ParseInt32("12345"));
|
||||
Assert.AreEqual(-12345, TextFormat.ParseInt32("-12345"));
|
||||
Assert.AreEqual(2147483647, TextFormat.ParseInt32("2147483647"));
|
||||
Assert.AreEqual(-2147483648, TextFormat.ParseInt32("-2147483648"));
|
||||
Assert.Equal(0, TextFormat.ParseInt32("0"));
|
||||
Assert.Equal(1, TextFormat.ParseInt32("1"));
|
||||
Assert.Equal(-1, TextFormat.ParseInt32("-1"));
|
||||
Assert.Equal(12345, TextFormat.ParseInt32("12345"));
|
||||
Assert.Equal(-12345, TextFormat.ParseInt32("-12345"));
|
||||
Assert.Equal(2147483647, TextFormat.ParseInt32("2147483647"));
|
||||
Assert.Equal(-2147483648, TextFormat.ParseInt32("-2147483648"));
|
||||
|
||||
Assert.AreEqual(0u, TextFormat.ParseUInt32("0"));
|
||||
Assert.AreEqual(1u, TextFormat.ParseUInt32("1"));
|
||||
Assert.AreEqual(12345u, TextFormat.ParseUInt32("12345"));
|
||||
Assert.AreEqual(2147483647u, TextFormat.ParseUInt32("2147483647"));
|
||||
Assert.AreEqual(2147483648U, TextFormat.ParseUInt32("2147483648"));
|
||||
Assert.AreEqual(4294967295U, TextFormat.ParseUInt32("4294967295"));
|
||||
Assert.Equal(0u, TextFormat.ParseUInt32("0"));
|
||||
Assert.Equal(1u, TextFormat.ParseUInt32("1"));
|
||||
Assert.Equal(12345u, TextFormat.ParseUInt32("12345"));
|
||||
Assert.Equal(2147483647u, TextFormat.ParseUInt32("2147483647"));
|
||||
Assert.Equal(2147483648U, TextFormat.ParseUInt32("2147483648"));
|
||||
Assert.Equal(4294967295U, TextFormat.ParseUInt32("4294967295"));
|
||||
|
||||
Assert.AreEqual(0L, TextFormat.ParseInt64("0"));
|
||||
Assert.AreEqual(1L, TextFormat.ParseInt64("1"));
|
||||
Assert.AreEqual(-1L, TextFormat.ParseInt64("-1"));
|
||||
Assert.AreEqual(12345L, TextFormat.ParseInt64("12345"));
|
||||
Assert.AreEqual(-12345L, TextFormat.ParseInt64("-12345"));
|
||||
Assert.AreEqual(2147483647L, TextFormat.ParseInt64("2147483647"));
|
||||
Assert.AreEqual(-2147483648L, TextFormat.ParseInt64("-2147483648"));
|
||||
Assert.AreEqual(4294967295L, TextFormat.ParseInt64("4294967295"));
|
||||
Assert.AreEqual(4294967296L, TextFormat.ParseInt64("4294967296"));
|
||||
Assert.AreEqual(9223372036854775807L, TextFormat.ParseInt64("9223372036854775807"));
|
||||
Assert.AreEqual(-9223372036854775808L, TextFormat.ParseInt64("-9223372036854775808"));
|
||||
Assert.Equal(0L, TextFormat.ParseInt64("0"));
|
||||
Assert.Equal(1L, TextFormat.ParseInt64("1"));
|
||||
Assert.Equal(-1L, TextFormat.ParseInt64("-1"));
|
||||
Assert.Equal(12345L, TextFormat.ParseInt64("12345"));
|
||||
Assert.Equal(-12345L, TextFormat.ParseInt64("-12345"));
|
||||
Assert.Equal(2147483647L, TextFormat.ParseInt64("2147483647"));
|
||||
Assert.Equal(-2147483648L, TextFormat.ParseInt64("-2147483648"));
|
||||
Assert.Equal(4294967295L, TextFormat.ParseInt64("4294967295"));
|
||||
Assert.Equal(4294967296L, TextFormat.ParseInt64("4294967296"));
|
||||
Assert.Equal(9223372036854775807L, TextFormat.ParseInt64("9223372036854775807"));
|
||||
Assert.Equal(-9223372036854775808L, TextFormat.ParseInt64("-9223372036854775808"));
|
||||
|
||||
Assert.AreEqual(0uL, TextFormat.ParseUInt64("0"));
|
||||
Assert.AreEqual(1uL, TextFormat.ParseUInt64("1"));
|
||||
Assert.AreEqual(12345uL, TextFormat.ParseUInt64("12345"));
|
||||
Assert.AreEqual(2147483647uL, TextFormat.ParseUInt64("2147483647"));
|
||||
Assert.AreEqual(4294967295uL, TextFormat.ParseUInt64("4294967295"));
|
||||
Assert.AreEqual(4294967296uL, TextFormat.ParseUInt64("4294967296"));
|
||||
Assert.AreEqual(9223372036854775807UL, TextFormat.ParseUInt64("9223372036854775807"));
|
||||
Assert.AreEqual(9223372036854775808UL, TextFormat.ParseUInt64("9223372036854775808"));
|
||||
Assert.AreEqual(18446744073709551615UL, TextFormat.ParseUInt64("18446744073709551615"));
|
||||
Assert.Equal(0uL, TextFormat.ParseUInt64("0"));
|
||||
Assert.Equal(1uL, TextFormat.ParseUInt64("1"));
|
||||
Assert.Equal(12345uL, TextFormat.ParseUInt64("12345"));
|
||||
Assert.Equal(2147483647uL, TextFormat.ParseUInt64("2147483647"));
|
||||
Assert.Equal(4294967295uL, TextFormat.ParseUInt64("4294967295"));
|
||||
Assert.Equal(4294967296uL, TextFormat.ParseUInt64("4294967296"));
|
||||
Assert.Equal(9223372036854775807UL, TextFormat.ParseUInt64("9223372036854775807"));
|
||||
Assert.Equal(9223372036854775808UL, TextFormat.ParseUInt64("9223372036854775808"));
|
||||
Assert.Equal(18446744073709551615UL, TextFormat.ParseUInt64("18446744073709551615"));
|
||||
|
||||
// Hex
|
||||
Assert.AreEqual(0x1234abcd, TextFormat.ParseInt32("0x1234abcd"));
|
||||
Assert.AreEqual(-0x1234abcd, TextFormat.ParseInt32("-0x1234abcd"));
|
||||
Assert.AreEqual(0xffffffffffffffffUL, TextFormat.ParseUInt64("0xffffffffffffffff"));
|
||||
Assert.AreEqual(0x7fffffffffffffffL,
|
||||
Assert.Equal(0x1234abcd, TextFormat.ParseInt32("0x1234abcd"));
|
||||
Assert.Equal(-0x1234abcd, TextFormat.ParseInt32("-0x1234abcd"));
|
||||
Assert.Equal(0xffffffffffffffffUL, TextFormat.ParseUInt64("0xffffffffffffffff"));
|
||||
Assert.Equal(0x7fffffffffffffffL,
|
||||
TextFormat.ParseInt64("0x7fffffffffffffff"));
|
||||
|
||||
// Octal
|
||||
Assert.AreEqual(342391, TextFormat.ParseInt32("01234567"));
|
||||
Assert.Equal(342391, TextFormat.ParseInt32("01234567"));
|
||||
|
||||
// Out-of-range
|
||||
AssertFormatException(() => TextFormat.ParseInt32("2147483648"));
|
||||
AssertFormatException(() => TextFormat.ParseInt32("-2147483649"));
|
||||
AssertFormatException(() => TextFormat.ParseUInt32("4294967296"));
|
||||
AssertFormatException(() => TextFormat.ParseUInt32("-1"));
|
||||
AssertFormatException(() => TextFormat.ParseInt64("9223372036854775808"));
|
||||
AssertFormatException(() => TextFormat.ParseInt64("-9223372036854775809"));
|
||||
AssertFormatException(() => TextFormat.ParseUInt64("18446744073709551616"));
|
||||
AssertFormatException(() => TextFormat.ParseUInt64("-1"));
|
||||
AssertFormatException(() => TextFormat.ParseInt32("abcd"));
|
||||
Assert.Throws<FormatException>(() => TextFormat.ParseInt32("2147483648"));
|
||||
Assert.Throws<FormatException>(() => TextFormat.ParseInt32("-2147483649"));
|
||||
Assert.Throws<FormatException>(() => TextFormat.ParseUInt32("4294967296"));
|
||||
Assert.Throws<FormatException>(() => TextFormat.ParseUInt32("-1"));
|
||||
Assert.Throws<FormatException>(() => TextFormat.ParseInt64("9223372036854775808"));
|
||||
Assert.Throws<FormatException>(() => TextFormat.ParseInt64("-9223372036854775809"));
|
||||
Assert.Throws<FormatException>(() => TextFormat.ParseUInt64("18446744073709551616"));
|
||||
Assert.Throws<FormatException>(() => TextFormat.ParseUInt64("-1"));
|
||||
Assert.Throws<FormatException>(() => TextFormat.ParseInt32("abcd"));
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void ParseLongString()
|
||||
{
|
||||
string longText =
|
||||
|
@ -580,7 +554,7 @@ namespace Google.ProtocolBuffers
|
|||
"123456789012345678901234567890123456789012345678901234567890";
|
||||
TestAllTypes.Builder builder = TestAllTypes.CreateBuilder();
|
||||
TextFormat.Merge("optional_string: \"" + longText + "\"", builder);
|
||||
Assert.AreEqual(longText, builder.OptionalString);
|
||||
Assert.Equal(longText, builder.OptionalString);
|
||||
}
|
||||
}
|
||||
}
|
|
@ -38,27 +38,25 @@ using System;
|
|||
using System.Collections.Generic;
|
||||
using Google.ProtocolBuffers.Descriptors;
|
||||
using Google.ProtocolBuffers.TestProtos;
|
||||
using Microsoft.VisualStudio.TestTools.UnitTesting;
|
||||
using Xunit;
|
||||
|
||||
namespace Google.ProtocolBuffers
|
||||
{
|
||||
[TestClass]
|
||||
public class UnknownFieldSetTest
|
||||
{
|
||||
private MessageDescriptor descriptor;
|
||||
private TestAllTypes allFields;
|
||||
private ByteString allFieldsData;
|
||||
private readonly MessageDescriptor descriptor;
|
||||
private readonly TestAllTypes allFields;
|
||||
private readonly ByteString allFieldsData;
|
||||
|
||||
/// <summary>
|
||||
/// An empty message that has been parsed from allFieldsData. So, it has
|
||||
/// unknown fields of every type.
|
||||
/// </summary>
|
||||
private TestEmptyMessage emptyMessage;
|
||||
private readonly TestEmptyMessage emptyMessage;
|
||||
|
||||
private UnknownFieldSet unknownFields;
|
||||
private readonly UnknownFieldSet unknownFields;
|
||||
|
||||
[TestInitialize]
|
||||
public void SetUp()
|
||||
public UnknownFieldSetTest()
|
||||
{
|
||||
descriptor = TestAllTypes.Descriptor;
|
||||
allFields = TestUtil.GetAllSet();
|
||||
|
@ -70,7 +68,7 @@ namespace Google.ProtocolBuffers
|
|||
private UnknownField GetField(String name)
|
||||
{
|
||||
FieldDescriptor field = descriptor.FindDescriptor<FieldDescriptor>(name);
|
||||
Assert.IsNotNull(field);
|
||||
Assert.NotNull(field);
|
||||
return unknownFields.FieldDictionary[field.FieldNumber];
|
||||
}
|
||||
|
||||
|
@ -105,75 +103,75 @@ namespace Google.ProtocolBuffers
|
|||
|
||||
// =================================================================
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void Varint()
|
||||
{
|
||||
UnknownField field = GetField("optional_int32");
|
||||
Assert.AreEqual(1, field.VarintList.Count);
|
||||
Assert.AreEqual(allFields.OptionalInt32, (long) field.VarintList[0]);
|
||||
Assert.Equal(1, field.VarintList.Count);
|
||||
Assert.Equal(allFields.OptionalInt32, (long) field.VarintList[0]);
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void Fixed32()
|
||||
{
|
||||
UnknownField field = GetField("optional_fixed32");
|
||||
Assert.AreEqual(1, field.Fixed32List.Count);
|
||||
Assert.AreEqual<long>(allFields.OptionalFixed32, (int) field.Fixed32List[0]);
|
||||
Assert.Equal(1, field.Fixed32List.Count);
|
||||
Assert.Equal<long>(allFields.OptionalFixed32, (int) field.Fixed32List[0]);
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void Fixed64()
|
||||
{
|
||||
UnknownField field = GetField("optional_fixed64");
|
||||
Assert.AreEqual(1, field.Fixed64List.Count);
|
||||
Assert.AreEqual((long)allFields.OptionalFixed64, (long)field.Fixed64List[0]);
|
||||
Assert.Equal(1, field.Fixed64List.Count);
|
||||
Assert.Equal((long)allFields.OptionalFixed64, (long)field.Fixed64List[0]);
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void LengthDelimited()
|
||||
{
|
||||
UnknownField field = GetField("optional_bytes");
|
||||
Assert.AreEqual(1, field.LengthDelimitedList.Count);
|
||||
Assert.AreEqual(allFields.OptionalBytes, field.LengthDelimitedList[0]);
|
||||
Assert.Equal(1, field.LengthDelimitedList.Count);
|
||||
Assert.Equal(allFields.OptionalBytes, field.LengthDelimitedList[0]);
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void Group()
|
||||
{
|
||||
FieldDescriptor nestedFieldDescriptor =
|
||||
TestAllTypes.Types.OptionalGroup.Descriptor.FindDescriptor<FieldDescriptor>("a");
|
||||
Assert.IsNotNull(nestedFieldDescriptor);
|
||||
Assert.NotNull(nestedFieldDescriptor);
|
||||
|
||||
UnknownField field = GetField("optionalgroup");
|
||||
Assert.AreEqual(1, field.GroupList.Count);
|
||||
Assert.Equal(1, field.GroupList.Count);
|
||||
|
||||
UnknownFieldSet group = field.GroupList[0];
|
||||
Assert.AreEqual(1, group.FieldDictionary.Count);
|
||||
Assert.IsTrue(group.HasField(nestedFieldDescriptor.FieldNumber));
|
||||
Assert.Equal(1, group.FieldDictionary.Count);
|
||||
Assert.True(group.HasField(nestedFieldDescriptor.FieldNumber));
|
||||
|
||||
UnknownField nestedField = group[nestedFieldDescriptor.FieldNumber];
|
||||
Assert.AreEqual(1, nestedField.VarintList.Count);
|
||||
Assert.AreEqual(allFields.OptionalGroup.A, (long) nestedField.VarintList[0]);
|
||||
Assert.Equal(1, nestedField.VarintList.Count);
|
||||
Assert.Equal(allFields.OptionalGroup.A, (long) nestedField.VarintList[0]);
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void Serialize()
|
||||
{
|
||||
// Check that serializing the UnknownFieldSet produces the original data again.
|
||||
ByteString data = emptyMessage.ToByteString();
|
||||
Assert.AreEqual(allFieldsData, data);
|
||||
Assert.Equal(allFieldsData, data);
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void CopyFrom()
|
||||
{
|
||||
TestEmptyMessage message =
|
||||
TestEmptyMessage.CreateBuilder().MergeFrom(emptyMessage).Build();
|
||||
|
||||
Assert.AreEqual(emptyMessage.ToString(), message.ToString());
|
||||
Assert.Equal(emptyMessage.ToString(), message.ToString());
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void MergeFrom()
|
||||
{
|
||||
TestEmptyMessage source =
|
||||
|
@ -202,7 +200,7 @@ namespace Google.ProtocolBuffers
|
|||
.MergeFrom(source)
|
||||
.Build();
|
||||
|
||||
Assert.AreEqual(
|
||||
Assert.Equal(
|
||||
"1: 1\n" +
|
||||
"2: 2\n" +
|
||||
"3: 3\n" +
|
||||
|
@ -210,23 +208,23 @@ namespace Google.ProtocolBuffers
|
|||
destination.ToString());
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void Clear()
|
||||
{
|
||||
UnknownFieldSet fields =
|
||||
UnknownFieldSet.CreateBuilder().MergeFrom(unknownFields).Clear().Build();
|
||||
Assert.AreEqual(0, fields.FieldDictionary.Count);
|
||||
Assert.Equal(0, fields.FieldDictionary.Count);
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void ClearMessage()
|
||||
{
|
||||
TestEmptyMessage message =
|
||||
TestEmptyMessage.CreateBuilder().MergeFrom(emptyMessage).Clear().Build();
|
||||
Assert.AreEqual(0, message.SerializedSize);
|
||||
Assert.Equal(0, message.SerializedSize);
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void ParseKnownAndUnknown()
|
||||
{
|
||||
// Test mixing known and unknown fields when parsing.
|
||||
|
@ -241,14 +239,14 @@ namespace Google.ProtocolBuffers
|
|||
TestAllTypes destination = TestAllTypes.ParseFrom(data);
|
||||
|
||||
TestUtil.AssertAllFieldsSet(destination);
|
||||
Assert.AreEqual(1, destination.UnknownFields.FieldDictionary.Count);
|
||||
Assert.Equal(1, destination.UnknownFields.FieldDictionary.Count);
|
||||
|
||||
UnknownField field = destination.UnknownFields[123456];
|
||||
Assert.AreEqual(1, field.VarintList.Count);
|
||||
Assert.AreEqual(654321, (long) field.VarintList[0]);
|
||||
Assert.Equal(1, field.VarintList.Count);
|
||||
Assert.Equal(654321, (long) field.VarintList[0]);
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void WrongTypeTreatedAsUnknown()
|
||||
{
|
||||
// Test that fields of the wrong wire type are treated like unknown fields
|
||||
|
@ -260,10 +258,10 @@ namespace Google.ProtocolBuffers
|
|||
|
||||
// All fields should have been interpreted as unknown, so the debug strings
|
||||
// should be the same.
|
||||
Assert.AreEqual(emptyMessage.ToString(), allTypesMessage.ToString());
|
||||
Assert.Equal(emptyMessage.ToString(), allTypesMessage.ToString());
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void UnknownExtensions()
|
||||
{
|
||||
// Make sure fields are properly parsed to the UnknownFieldSet even when
|
||||
|
@ -272,12 +270,12 @@ namespace Google.ProtocolBuffers
|
|||
TestEmptyMessageWithExtensions message =
|
||||
TestEmptyMessageWithExtensions.ParseFrom(allFieldsData);
|
||||
|
||||
Assert.AreEqual(unknownFields.FieldDictionary.Count,
|
||||
Assert.Equal(unknownFields.FieldDictionary.Count,
|
||||
message.UnknownFields.FieldDictionary.Count);
|
||||
Assert.AreEqual(allFieldsData, message.ToByteString());
|
||||
Assert.Equal(allFieldsData, message.ToByteString());
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void WrongExtensionTypeTreatedAsUnknown()
|
||||
{
|
||||
// Test that fields of the wrong wire type are treated like unknown fields
|
||||
|
@ -289,19 +287,19 @@ namespace Google.ProtocolBuffers
|
|||
|
||||
// All fields should have been interpreted as unknown, so the debug strings
|
||||
// should be the same.
|
||||
Assert.AreEqual(emptyMessage.ToString(),
|
||||
Assert.Equal(emptyMessage.ToString(),
|
||||
allExtensionsMessage.ToString());
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void ParseUnknownEnumValue()
|
||||
{
|
||||
FieldDescriptor singularField =
|
||||
TestAllTypes.Descriptor.FindDescriptor<FieldDescriptor>("optional_nested_enum");
|
||||
FieldDescriptor repeatedField =
|
||||
TestAllTypes.Descriptor.FindDescriptor<FieldDescriptor>("repeated_nested_enum");
|
||||
Assert.IsNotNull(singularField);
|
||||
Assert.IsNotNull(repeatedField);
|
||||
Assert.NotNull(singularField);
|
||||
Assert.NotNull(repeatedField);
|
||||
|
||||
ByteString data =
|
||||
UnknownFieldSet.CreateBuilder()
|
||||
|
@ -322,7 +320,7 @@ namespace Google.ProtocolBuffers
|
|||
|
||||
{
|
||||
TestAllTypes message = TestAllTypes.ParseFrom(data);
|
||||
Assert.AreEqual(TestAllTypes.Types.NestedEnum.BAR,
|
||||
Assert.Equal(TestAllTypes.Types.NestedEnum.BAR,
|
||||
message.OptionalNestedEnum);
|
||||
TestUtil.AssertEqual(new[] {TestAllTypes.Types.NestedEnum.FOO, TestAllTypes.Types.NestedEnum.BAZ},
|
||||
message.RepeatedNestedEnumList);
|
||||
|
@ -333,7 +331,7 @@ namespace Google.ProtocolBuffers
|
|||
{
|
||||
TestAllExtensions message =
|
||||
TestAllExtensions.ParseFrom(data, TestUtil.CreateExtensionRegistry());
|
||||
Assert.AreEqual(TestAllTypes.Types.NestedEnum.BAR,
|
||||
Assert.Equal(TestAllTypes.Types.NestedEnum.BAR,
|
||||
message.GetExtension(Unittest.OptionalNestedEnumExtension));
|
||||
TestUtil.AssertEqual(new[] {TestAllTypes.Types.NestedEnum.FOO, TestAllTypes.Types.NestedEnum.BAZ},
|
||||
message.GetExtension(Unittest.RepeatedNestedEnumExtension));
|
||||
|
@ -342,7 +340,7 @@ namespace Google.ProtocolBuffers
|
|||
}
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void LargeVarint()
|
||||
{
|
||||
ByteString data =
|
||||
|
@ -355,11 +353,11 @@ namespace Google.ProtocolBuffers
|
|||
.ToByteString();
|
||||
UnknownFieldSet parsed = UnknownFieldSet.ParseFrom(data);
|
||||
UnknownField field = parsed[1];
|
||||
Assert.AreEqual(1, field.VarintList.Count);
|
||||
Assert.AreEqual(0x7FFFFFFFFFFFFFFFUL, field.VarintList[0]);
|
||||
Assert.Equal(1, field.VarintList.Count);
|
||||
Assert.Equal(0x7FFFFFFFFFFFFFFFUL, field.VarintList[0]);
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void EqualsAndHashCode()
|
||||
{
|
||||
UnknownField fixed32Field = UnknownField.CreateBuilder().AddFixed32(1).Build();
|
||||
|
@ -407,10 +405,10 @@ namespace Google.ProtocolBuffers
|
|||
private static void CheckNotEqual(UnknownFieldSet s1, UnknownFieldSet s2)
|
||||
{
|
||||
String equalsError = string.Format("{0} should not be equal to {1}", s1, s2);
|
||||
Assert.IsFalse(s1.Equals(s2), equalsError);
|
||||
Assert.IsFalse(s2.Equals(s1), equalsError);
|
||||
Assert.False(s1.Equals(s2), equalsError);
|
||||
Assert.False(s2.Equals(s1), equalsError);
|
||||
|
||||
Assert.IsFalse(s1.GetHashCode() == s2.GetHashCode(),
|
||||
Assert.False(s1.GetHashCode() == s2.GetHashCode(),
|
||||
string.Format("{0} should have a different hash code from {1}", s1, s2));
|
||||
}
|
||||
|
||||
|
@ -421,13 +419,13 @@ namespace Google.ProtocolBuffers
|
|||
private static void CheckEqualsIsConsistent(UnknownFieldSet set)
|
||||
{
|
||||
// Object should be equal to itself.
|
||||
Assert.AreEqual(set, set);
|
||||
Assert.Equal(set, set);
|
||||
|
||||
// Object should be equal to a copy of itself.
|
||||
UnknownFieldSet copy = UnknownFieldSet.CreateBuilder(set).Build();
|
||||
Assert.AreEqual(set, copy);
|
||||
Assert.AreEqual(copy, set);
|
||||
Assert.AreEqual(set.GetHashCode(), copy.GetHashCode());
|
||||
Assert.Equal(set, copy);
|
||||
Assert.Equal(copy, set);
|
||||
Assert.Equal(set.GetHashCode(), copy.GetHashCode());
|
||||
}
|
||||
}
|
||||
}
|
|
@ -38,17 +38,16 @@ using System.IO;
|
|||
using System.Reflection;
|
||||
using Google.ProtocolBuffers.Descriptors;
|
||||
using Google.ProtocolBuffers.TestProtos;
|
||||
using Microsoft.VisualStudio.TestTools.UnitTesting;
|
||||
using Xunit;
|
||||
|
||||
namespace Google.ProtocolBuffers
|
||||
{
|
||||
[TestClass]
|
||||
public class WireFormatTest
|
||||
{
|
||||
/// <summary>
|
||||
/// Keeps the attributes on FieldType and the switch statement in WireFormat in sync.
|
||||
/// </summary>
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void FieldTypeToWireTypeMapping()
|
||||
{
|
||||
foreach (FieldInfo field in typeof(FieldType).GetFields(BindingFlags.Static | BindingFlags.Public))
|
||||
|
@ -56,34 +55,34 @@ namespace Google.ProtocolBuffers
|
|||
FieldType fieldType = (FieldType) field.GetValue(null);
|
||||
FieldMappingAttribute mapping =
|
||||
(FieldMappingAttribute) field.GetCustomAttributes(typeof(FieldMappingAttribute), false)[0];
|
||||
Assert.AreEqual(mapping.WireType, WireFormat.GetWireType(fieldType));
|
||||
Assert.Equal(mapping.WireType, WireFormat.GetWireType(fieldType));
|
||||
}
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void Serialization()
|
||||
{
|
||||
TestAllTypes message = TestUtil.GetAllSet();
|
||||
|
||||
ByteString rawBytes = message.ToByteString();
|
||||
Assert.AreEqual(rawBytes.Length, message.SerializedSize);
|
||||
Assert.Equal(rawBytes.Length, message.SerializedSize);
|
||||
|
||||
TestAllTypes message2 = TestAllTypes.ParseFrom(rawBytes);
|
||||
|
||||
TestUtil.AssertAllFieldsSet(message2);
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void SerializationPacked()
|
||||
{
|
||||
TestPackedTypes message = TestUtil.GetPackedSet();
|
||||
ByteString rawBytes = message.ToByteString();
|
||||
Assert.AreEqual(rawBytes.Length, message.SerializedSize);
|
||||
Assert.Equal(rawBytes.Length, message.SerializedSize);
|
||||
TestPackedTypes message2 = TestPackedTypes.ParseFrom(rawBytes);
|
||||
TestUtil.AssertPackedFieldsSet(message2);
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void SerializeExtensions()
|
||||
{
|
||||
// TestAllTypes and TestAllExtensions should have compatible wire formats,
|
||||
|
@ -91,14 +90,14 @@ namespace Google.ProtocolBuffers
|
|||
// it should work.
|
||||
TestAllExtensions message = TestUtil.GetAllExtensionsSet();
|
||||
ByteString rawBytes = message.ToByteString();
|
||||
Assert.AreEqual(rawBytes.Length, message.SerializedSize);
|
||||
Assert.Equal(rawBytes.Length, message.SerializedSize);
|
||||
|
||||
TestAllTypes message2 = TestAllTypes.ParseFrom(rawBytes);
|
||||
|
||||
TestUtil.AssertAllFieldsSet(message2);
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void SerializePackedExtensions()
|
||||
{
|
||||
// TestPackedTypes and TestPackedExtensions should have compatible wire
|
||||
|
@ -109,10 +108,10 @@ namespace Google.ProtocolBuffers
|
|||
TestPackedTypes message2 = TestUtil.GetPackedSet();
|
||||
ByteString rawBytes2 = message2.ToByteString();
|
||||
|
||||
Assert.AreEqual(rawBytes, rawBytes2);
|
||||
Assert.Equal(rawBytes, rawBytes2);
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void SerializeDelimited()
|
||||
{
|
||||
MemoryStream stream = new MemoryStream();
|
||||
|
@ -124,13 +123,13 @@ namespace Google.ProtocolBuffers
|
|||
stream.Position = 0;
|
||||
|
||||
TestUtil.AssertAllFieldsSet(TestAllTypes.ParseDelimitedFrom(stream));
|
||||
Assert.AreEqual(12, stream.ReadByte());
|
||||
Assert.Equal(12, stream.ReadByte());
|
||||
TestUtil.AssertPackedFieldsSet(TestPackedTypes.ParseDelimitedFrom(stream));
|
||||
Assert.AreEqual(34, stream.ReadByte());
|
||||
Assert.AreEqual(-1, stream.ReadByte());
|
||||
Assert.Equal(34, stream.ReadByte());
|
||||
Assert.Equal(-1, stream.ReadByte());
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void ParseExtensions()
|
||||
{
|
||||
// TestAllTypes and TestAllExtensions should have compatible wire formats,
|
||||
|
@ -149,7 +148,7 @@ namespace Google.ProtocolBuffers
|
|||
TestUtil.AssertAllExtensionsSet(message2);
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void ParsePackedExtensions()
|
||||
{
|
||||
// Ensure that packed extensions can be properly parsed.
|
||||
|
@ -162,10 +161,10 @@ namespace Google.ProtocolBuffers
|
|||
TestUtil.AssertPackedExtensionsSet(message2);
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void ExtensionsSerializedSize()
|
||||
{
|
||||
Assert.AreEqual(TestUtil.GetAllSet().SerializedSize, TestUtil.GetAllExtensionsSet().SerializedSize);
|
||||
Assert.Equal(TestUtil.GetAllSet().SerializedSize, TestUtil.GetAllExtensionsSet().SerializedSize);
|
||||
}
|
||||
|
||||
private static void AssertFieldsInOrder(ByteString data)
|
||||
|
@ -177,13 +176,13 @@ namespace Google.ProtocolBuffers
|
|||
string name;
|
||||
while (input.ReadTag(out tag, out name))
|
||||
{
|
||||
Assert.IsTrue(tag > previousTag);
|
||||
Assert.True(tag > previousTag);
|
||||
previousTag = tag;
|
||||
input.SkipField();
|
||||
}
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void InterleavedFieldsAndExtensions()
|
||||
{
|
||||
// Tests that fields are written in order even when extension ranges
|
||||
|
@ -214,7 +213,7 @@ namespace Google.ProtocolBuffers
|
|||
private static readonly int TypeId1 = TestMessageSetExtension1.Descriptor.Extensions[0].FieldNumber;
|
||||
private static readonly int TypeId2 = TestMessageSetExtension2.Descriptor.Extensions[0].FieldNumber;
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void SerializeMessageSet()
|
||||
{
|
||||
// Set up a TestMessageSet with two known messages and an unknown one.
|
||||
|
@ -240,23 +239,23 @@ namespace Google.ProtocolBuffers
|
|||
// Parse back using RawMessageSet and check the contents.
|
||||
RawMessageSet raw = RawMessageSet.ParseFrom(data);
|
||||
|
||||
Assert.AreEqual(0, raw.UnknownFields.FieldDictionary.Count);
|
||||
Assert.Equal(0, raw.UnknownFields.FieldDictionary.Count);
|
||||
|
||||
Assert.AreEqual(3, raw.ItemCount);
|
||||
Assert.AreEqual(TypeId1, raw.ItemList[0].TypeId);
|
||||
Assert.AreEqual(TypeId2, raw.ItemList[1].TypeId);
|
||||
Assert.AreEqual(UnknownTypeId, raw.ItemList[2].TypeId);
|
||||
Assert.Equal(3, raw.ItemCount);
|
||||
Assert.Equal(TypeId1, raw.ItemList[0].TypeId);
|
||||
Assert.Equal(TypeId2, raw.ItemList[1].TypeId);
|
||||
Assert.Equal(UnknownTypeId, raw.ItemList[2].TypeId);
|
||||
|
||||
TestMessageSetExtension1 message1 = TestMessageSetExtension1.ParseFrom(raw.GetItem(0).Message.ToByteArray());
|
||||
Assert.AreEqual(123, message1.I);
|
||||
Assert.Equal(123, message1.I);
|
||||
|
||||
TestMessageSetExtension2 message2 = TestMessageSetExtension2.ParseFrom(raw.GetItem(1).Message.ToByteArray());
|
||||
Assert.AreEqual("foo", message2.Str);
|
||||
Assert.Equal("foo", message2.Str);
|
||||
|
||||
Assert.AreEqual("bar", raw.GetItem(2).Message.ToStringUtf8());
|
||||
Assert.Equal("bar", raw.GetItem(2).Message.ToStringUtf8());
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void ParseMessageSet()
|
||||
{
|
||||
ExtensionRegistry extensionRegistry = ExtensionRegistry.CreateInstance();
|
||||
|
@ -295,18 +294,18 @@ namespace Google.ProtocolBuffers
|
|||
TestMessageSet messageSet =
|
||||
TestMessageSet.ParseFrom(data, extensionRegistry);
|
||||
|
||||
Assert.AreEqual(123, messageSet.GetExtension(TestMessageSetExtension1.MessageSetExtension).I);
|
||||
Assert.AreEqual("foo", messageSet.GetExtension(TestMessageSetExtension2.MessageSetExtension).Str);
|
||||
Assert.Equal(123, messageSet.GetExtension(TestMessageSetExtension1.MessageSetExtension).I);
|
||||
Assert.Equal("foo", messageSet.GetExtension(TestMessageSetExtension2.MessageSetExtension).Str);
|
||||
|
||||
// Check for unknown field with type LENGTH_DELIMITED,
|
||||
// number UNKNOWN_TYPE_ID, and contents "bar".
|
||||
UnknownFieldSet unknownFields = messageSet.UnknownFields;
|
||||
Assert.AreEqual(1, unknownFields.FieldDictionary.Count);
|
||||
Assert.IsTrue(unknownFields.HasField(UnknownTypeId));
|
||||
Assert.Equal(1, unknownFields.FieldDictionary.Count);
|
||||
Assert.True(unknownFields.HasField(UnknownTypeId));
|
||||
|
||||
UnknownField field = unknownFields[UnknownTypeId];
|
||||
Assert.AreEqual(1, field.LengthDelimitedList.Count);
|
||||
Assert.AreEqual("bar", field.LengthDelimitedList[0].ToStringUtf8());
|
||||
Assert.Equal(1, field.LengthDelimitedList.Count);
|
||||
Assert.Equal("bar", field.LengthDelimitedList[0].ToStringUtf8());
|
||||
}
|
||||
}
|
||||
}
|
9
csharp/src/ProtocolBuffers.Test/packages.config
Normal file
9
csharp/src/ProtocolBuffers.Test/packages.config
Normal file
|
@ -0,0 +1,9 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<packages>
|
||||
<package id="xunit" version="2.0.0" targetFramework="net45" />
|
||||
<package id="xunit.abstractions" version="2.0.0" targetFramework="net45" />
|
||||
<package id="xunit.assert" version="2.0.0" targetFramework="net45" />
|
||||
<package id="xunit.core" version="2.0.0" targetFramework="net45" />
|
||||
<package id="xunit.extensibility.core" version="2.0.0" targetFramework="net45" />
|
||||
<package id="xunit.runner.visualstudio" version="2.0.0" targetFramework="net45" />
|
||||
</packages>
|
|
@ -34,19 +34,15 @@
|
|||
|
||||
#endregion
|
||||
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.IO;
|
||||
using Google.ProtocolBuffers;
|
||||
using Google.ProtocolBuffers.TestProtos;
|
||||
using Microsoft.VisualStudio.TestTools.UnitTesting;
|
||||
using Xunit;
|
||||
|
||||
namespace Google.ProtocolBuffers
|
||||
{
|
||||
[TestClass]
|
||||
public class AbstractBuilderLiteTest
|
||||
{
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void TestMergeFromCodedInputStream()
|
||||
{
|
||||
TestAllTypesLite copy,
|
||||
|
@ -54,7 +50,7 @@ namespace Google.ProtocolBuffers
|
|||
.SetOptionalUint32(uint.MaxValue).Build();
|
||||
|
||||
copy = TestAllTypesLite.DefaultInstance;
|
||||
Assert.AreNotEqual(msg.ToByteArray(), copy.ToByteArray());
|
||||
Assert.NotEqual(msg.ToByteArray(), copy.ToByteArray());
|
||||
|
||||
using (MemoryStream ms = new MemoryStream(msg.ToByteArray()))
|
||||
{
|
||||
|
@ -62,22 +58,22 @@ namespace Google.ProtocolBuffers
|
|||
copy = copy.ToBuilder().MergeFrom(ci).Build();
|
||||
}
|
||||
|
||||
TestUtil.AssertBytesEqual(msg.ToByteArray(), copy.ToByteArray());
|
||||
Assert.Equal(msg.ToByteArray(), copy.ToByteArray());
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void TestIBuilderLiteWeakClear()
|
||||
{
|
||||
TestAllTypesLite copy, msg = TestAllTypesLite.DefaultInstance;
|
||||
|
||||
copy = msg.ToBuilder().SetOptionalString("Should be removed.").Build();
|
||||
Assert.AreNotEqual(msg.ToByteArray(), copy.ToByteArray());
|
||||
Assert.NotEqual(msg.ToByteArray(), copy.ToByteArray());
|
||||
|
||||
copy = (TestAllTypesLite) ((IBuilderLite) copy.ToBuilder()).WeakClear().WeakBuild();
|
||||
TestUtil.AssertBytesEqual(msg.ToByteArray(), copy.ToByteArray());
|
||||
Assert.Equal(msg.ToByteArray(), copy.ToByteArray());
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void TestBuilderLiteMergeFromCodedInputStream()
|
||||
{
|
||||
TestAllTypesLite copy,
|
||||
|
@ -85,14 +81,14 @@ namespace Google.ProtocolBuffers
|
|||
.SetOptionalString("Should be merged.").Build();
|
||||
|
||||
copy = TestAllTypesLite.DefaultInstance;
|
||||
Assert.AreNotEqual(msg.ToByteArray(), copy.ToByteArray());
|
||||
Assert.NotEqual(msg.ToByteArray(), copy.ToByteArray());
|
||||
|
||||
copy =
|
||||
copy.ToBuilder().MergeFrom(CodedInputStream.CreateInstance(new MemoryStream(msg.ToByteArray()))).Build();
|
||||
TestUtil.AssertBytesEqual(msg.ToByteArray(), copy.ToByteArray());
|
||||
Assert.Equal(msg.ToByteArray(), copy.ToByteArray());
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void TestBuilderLiteMergeDelimitedFrom()
|
||||
{
|
||||
TestAllTypesLite copy,
|
||||
|
@ -100,15 +96,15 @@ namespace Google.ProtocolBuffers
|
|||
.SetOptionalString("Should be merged.").Build();
|
||||
|
||||
copy = TestAllTypesLite.DefaultInstance;
|
||||
Assert.AreNotEqual(msg.ToByteArray(), copy.ToByteArray());
|
||||
Assert.NotEqual(msg.ToByteArray(), copy.ToByteArray());
|
||||
Stream s = new MemoryStream();
|
||||
msg.WriteDelimitedTo(s);
|
||||
s.Position = 0;
|
||||
copy = copy.ToBuilder().MergeDelimitedFrom(s).Build();
|
||||
TestUtil.AssertBytesEqual(msg.ToByteArray(), copy.ToByteArray());
|
||||
Assert.Equal(msg.ToByteArray(), copy.ToByteArray());
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void TestBuilderLiteMergeDelimitedFromExtensions()
|
||||
{
|
||||
TestAllExtensionsLite copy,
|
||||
|
@ -117,7 +113,7 @@ namespace Google.ProtocolBuffers
|
|||
"Should be merged.").Build();
|
||||
|
||||
copy = TestAllExtensionsLite.DefaultInstance;
|
||||
Assert.AreNotEqual(msg.ToByteArray(), copy.ToByteArray());
|
||||
Assert.NotEqual(msg.ToByteArray(), copy.ToByteArray());
|
||||
|
||||
Stream s = new MemoryStream();
|
||||
msg.WriteDelimitedTo(s);
|
||||
|
@ -127,11 +123,11 @@ namespace Google.ProtocolBuffers
|
|||
UnittestLite.RegisterAllExtensions(registry);
|
||||
|
||||
copy = copy.ToBuilder().MergeDelimitedFrom(s, registry).Build();
|
||||
TestUtil.AssertBytesEqual(msg.ToByteArray(), copy.ToByteArray());
|
||||
Assert.AreEqual("Should be merged.", copy.GetExtension(UnittestLite.OptionalStringExtensionLite));
|
||||
Assert.Equal(msg.ToByteArray(), copy.ToByteArray());
|
||||
Assert.Equal("Should be merged.", copy.GetExtension(UnittestLite.OptionalStringExtensionLite));
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void TestBuilderLiteMergeFromStream()
|
||||
{
|
||||
TestAllTypesLite copy,
|
||||
|
@ -139,15 +135,15 @@ namespace Google.ProtocolBuffers
|
|||
.SetOptionalString("Should be merged.").Build();
|
||||
|
||||
copy = TestAllTypesLite.DefaultInstance;
|
||||
Assert.AreNotEqual(msg.ToByteArray(), copy.ToByteArray());
|
||||
Assert.NotEqual(msg.ToByteArray(), copy.ToByteArray());
|
||||
Stream s = new MemoryStream();
|
||||
msg.WriteTo(s);
|
||||
s.Position = 0;
|
||||
copy = copy.ToBuilder().MergeFrom(s).Build();
|
||||
TestUtil.AssertBytesEqual(msg.ToByteArray(), copy.ToByteArray());
|
||||
Assert.Equal(msg.ToByteArray(), copy.ToByteArray());
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void TestBuilderLiteMergeFromStreamExtensions()
|
||||
{
|
||||
TestAllExtensionsLite copy,
|
||||
|
@ -156,7 +152,7 @@ namespace Google.ProtocolBuffers
|
|||
"Should be merged.").Build();
|
||||
|
||||
copy = TestAllExtensionsLite.DefaultInstance;
|
||||
Assert.AreNotEqual(msg.ToByteArray(), copy.ToByteArray());
|
||||
Assert.NotEqual(msg.ToByteArray(), copy.ToByteArray());
|
||||
|
||||
Stream s = new MemoryStream();
|
||||
msg.WriteTo(s);
|
||||
|
@ -166,11 +162,11 @@ namespace Google.ProtocolBuffers
|
|||
UnittestLite.RegisterAllExtensions(registry);
|
||||
|
||||
copy = copy.ToBuilder().MergeFrom(s, registry).Build();
|
||||
TestUtil.AssertBytesEqual(msg.ToByteArray(), copy.ToByteArray());
|
||||
Assert.AreEqual("Should be merged.", copy.GetExtension(UnittestLite.OptionalStringExtensionLite));
|
||||
Assert.Equal(msg.ToByteArray(), copy.ToByteArray());
|
||||
Assert.Equal("Should be merged.", copy.GetExtension(UnittestLite.OptionalStringExtensionLite));
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void TestIBuilderLiteWeakMergeFromIMessageLite()
|
||||
{
|
||||
TestAllTypesLite copy,
|
||||
|
@ -178,13 +174,13 @@ namespace Google.ProtocolBuffers
|
|||
.SetOptionalString("Should be merged.").Build();
|
||||
|
||||
copy = TestAllTypesLite.DefaultInstance;
|
||||
Assert.AreNotEqual(msg.ToByteArray(), copy.ToByteArray());
|
||||
Assert.NotEqual(msg.ToByteArray(), copy.ToByteArray());
|
||||
|
||||
copy = (TestAllTypesLite) ((IBuilderLite) copy.ToBuilder()).WeakMergeFrom((IMessageLite) msg).WeakBuild();
|
||||
TestUtil.AssertBytesEqual(msg.ToByteArray(), copy.ToByteArray());
|
||||
Assert.Equal(msg.ToByteArray(), copy.ToByteArray());
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void TestIBuilderLiteWeakMergeFromByteString()
|
||||
{
|
||||
TestAllTypesLite copy,
|
||||
|
@ -192,13 +188,13 @@ namespace Google.ProtocolBuffers
|
|||
.SetOptionalString("Should be merged.").Build();
|
||||
|
||||
copy = TestAllTypesLite.DefaultInstance;
|
||||
Assert.AreNotEqual(msg.ToByteArray(), copy.ToByteArray());
|
||||
Assert.NotEqual(msg.ToByteArray(), copy.ToByteArray());
|
||||
|
||||
copy = (TestAllTypesLite) ((IBuilderLite) copy.ToBuilder()).WeakMergeFrom(msg.ToByteString()).WeakBuild();
|
||||
TestUtil.AssertBytesEqual(msg.ToByteArray(), copy.ToByteArray());
|
||||
Assert.Equal(msg.ToByteArray(), copy.ToByteArray());
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void TestIBuilderLiteWeakMergeFromByteStringExtensions()
|
||||
{
|
||||
TestAllExtensionsLite copy,
|
||||
|
@ -207,12 +203,12 @@ namespace Google.ProtocolBuffers
|
|||
"Should be merged.").Build();
|
||||
|
||||
copy = TestAllExtensionsLite.DefaultInstance;
|
||||
Assert.AreNotEqual(msg.ToByteArray(), copy.ToByteArray());
|
||||
Assert.NotEqual(msg.ToByteArray(), copy.ToByteArray());
|
||||
|
||||
copy =
|
||||
(TestAllExtensionsLite)
|
||||
((IBuilderLite) copy.ToBuilder()).WeakMergeFrom(msg.ToByteString(), ExtensionRegistry.Empty).WeakBuild();
|
||||
Assert.AreNotEqual(msg.ToByteArray(), copy.ToByteArray());
|
||||
Assert.NotEqual(msg.ToByteArray(), copy.ToByteArray());
|
||||
|
||||
ExtensionRegistry registry = ExtensionRegistry.CreateInstance();
|
||||
UnittestLite.RegisterAllExtensions(registry);
|
||||
|
@ -220,11 +216,11 @@ namespace Google.ProtocolBuffers
|
|||
copy =
|
||||
(TestAllExtensionsLite)
|
||||
((IBuilderLite) copy.ToBuilder()).WeakMergeFrom(msg.ToByteString(), registry).WeakBuild();
|
||||
TestUtil.AssertBytesEqual(msg.ToByteArray(), copy.ToByteArray());
|
||||
Assert.AreEqual("Should be merged.", copy.GetExtension(UnittestLite.OptionalStringExtensionLite));
|
||||
Assert.Equal(msg.ToByteArray(), copy.ToByteArray());
|
||||
Assert.Equal("Should be merged.", copy.GetExtension(UnittestLite.OptionalStringExtensionLite));
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void TestIBuilderLiteWeakMergeFromCodedInputStream()
|
||||
{
|
||||
TestAllTypesLite copy,
|
||||
|
@ -232,7 +228,7 @@ namespace Google.ProtocolBuffers
|
|||
.SetOptionalUint32(uint.MaxValue).Build();
|
||||
|
||||
copy = TestAllTypesLite.DefaultInstance;
|
||||
Assert.AreNotEqual(msg.ToByteArray(), copy.ToByteArray());
|
||||
Assert.NotEqual(msg.ToByteArray(), copy.ToByteArray());
|
||||
|
||||
using (MemoryStream ms = new MemoryStream(msg.ToByteArray()))
|
||||
{
|
||||
|
@ -240,58 +236,58 @@ namespace Google.ProtocolBuffers
|
|||
copy = (TestAllTypesLite) ((IBuilderLite) copy.ToBuilder()).WeakMergeFrom(ci).WeakBuild();
|
||||
}
|
||||
|
||||
TestUtil.AssertBytesEqual(msg.ToByteArray(), copy.ToByteArray());
|
||||
Assert.Equal(msg.ToByteArray(), copy.ToByteArray());
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void TestIBuilderLiteWeakBuildPartial()
|
||||
{
|
||||
IBuilderLite builder = TestRequiredLite.CreateBuilder();
|
||||
Assert.IsFalse(builder.IsInitialized);
|
||||
Assert.False(builder.IsInitialized);
|
||||
|
||||
IMessageLite msg = builder.WeakBuildPartial();
|
||||
Assert.IsFalse(msg.IsInitialized);
|
||||
Assert.False(msg.IsInitialized);
|
||||
|
||||
TestUtil.AssertBytesEqual(msg.ToByteArray(), TestRequiredLite.DefaultInstance.ToByteArray());
|
||||
Assert.Equal(msg.ToByteArray(), TestRequiredLite.DefaultInstance.ToByteArray());
|
||||
}
|
||||
|
||||
[TestMethod, ExpectedException(typeof(UninitializedMessageException))]
|
||||
[Fact]
|
||||
public void TestIBuilderLiteWeakBuildUninitialized()
|
||||
{
|
||||
IBuilderLite builder = TestRequiredLite.CreateBuilder();
|
||||
Assert.IsFalse(builder.IsInitialized);
|
||||
builder.WeakBuild();
|
||||
Assert.False(builder.IsInitialized);
|
||||
Assert.Throws<UninitializedMessageException>(() => builder.WeakBuild());
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void TestIBuilderLiteWeakBuild()
|
||||
{
|
||||
IBuilderLite builder = TestRequiredLite.CreateBuilder()
|
||||
.SetD(0)
|
||||
.SetEn(ExtraEnum.EXLITE_BAZ);
|
||||
Assert.IsTrue(builder.IsInitialized);
|
||||
Assert.True(builder.IsInitialized);
|
||||
builder.WeakBuild();
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void TestIBuilderLiteWeakClone()
|
||||
{
|
||||
TestRequiredLite msg = TestRequiredLite.CreateBuilder()
|
||||
.SetD(1).SetEn(ExtraEnum.EXLITE_BAR).Build();
|
||||
Assert.IsTrue(msg.IsInitialized);
|
||||
Assert.True(msg.IsInitialized);
|
||||
|
||||
IMessageLite copy = ((IBuilderLite) msg.ToBuilder()).WeakClone().WeakBuild();
|
||||
TestUtil.AssertBytesEqual(msg.ToByteArray(), copy.ToByteArray());
|
||||
Assert.Equal(msg.ToByteArray(), copy.ToByteArray());
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void TestIBuilderLiteWeakDefaultInstance()
|
||||
{
|
||||
Assert.IsTrue(ReferenceEquals(TestRequiredLite.DefaultInstance,
|
||||
Assert.True(ReferenceEquals(TestRequiredLite.DefaultInstance,
|
||||
((IBuilderLite) TestRequiredLite.CreateBuilder()).WeakDefaultInstanceForType));
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void TestGeneratedBuilderLiteAddRange()
|
||||
{
|
||||
TestAllTypesLite copy,
|
||||
|
@ -303,11 +299,11 @@ namespace Google.ProtocolBuffers
|
|||
.Build();
|
||||
|
||||
copy = msg.DefaultInstanceForType.ToBuilder().MergeFrom(msg).Build();
|
||||
TestUtil.AssertBytesEqual(msg.ToByteArray(), copy.ToByteArray());
|
||||
Assert.Equal(msg.ToByteArray(), copy.ToByteArray());
|
||||
}
|
||||
|
||||
// ROK 5/7/2013 Issue #54: should retire all bytes in buffer (bufferSize)
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void TestBufferRefillIssue()
|
||||
{
|
||||
var ms = new MemoryStream();
|
||||
|
@ -326,15 +322,15 @@ namespace Google.ProtocolBuffers
|
|||
var input = CodedInputStream.CreateInstance(ms);
|
||||
var builder = BucketOfBytes.CreateBuilder();
|
||||
input.ReadMessage(builder, ExtensionRegistry.Empty);
|
||||
Assert.AreEqual(3005L, input.Position);
|
||||
Assert.AreEqual(3000, builder.Value.Length);
|
||||
Assert.Equal(3005L, input.Position);
|
||||
Assert.Equal(3000, builder.Value.Length);
|
||||
input.ReadMessage(builder, ExtensionRegistry.Empty);
|
||||
Assert.AreEqual(5114, input.Position);
|
||||
Assert.AreEqual(1000, builder.Value.Length);
|
||||
Assert.Equal(5114, input.Position);
|
||||
Assert.Equal(1000, builder.Value.Length);
|
||||
input.ReadMessage(builder, ExtensionRegistry.Empty);
|
||||
Assert.AreEqual(5217L, input.Position);
|
||||
Assert.AreEqual(input.Position, ms.Length);
|
||||
Assert.AreEqual(100, builder.Value.Length);
|
||||
Assert.Equal(5217L, input.Position);
|
||||
Assert.Equal(input.Position, ms.Length);
|
||||
Assert.Equal(100, builder.Value.Length);
|
||||
}
|
||||
}
|
||||
}
|
|
@ -35,18 +35,15 @@
|
|||
#endregion
|
||||
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.IO;
|
||||
using Google.ProtocolBuffers;
|
||||
using Google.ProtocolBuffers.TestProtos;
|
||||
using Microsoft.VisualStudio.TestTools.UnitTesting;
|
||||
using Xunit;
|
||||
|
||||
namespace Google.ProtocolBuffers
|
||||
{
|
||||
[TestClass]
|
||||
public class AbstractMessageLiteTest
|
||||
{
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void TestMessageLiteToByteString()
|
||||
{
|
||||
TestRequiredLite msg = TestRequiredLite.CreateBuilder()
|
||||
|
@ -55,14 +52,14 @@ namespace Google.ProtocolBuffers
|
|||
.Build();
|
||||
|
||||
ByteString b = msg.ToByteString();
|
||||
Assert.AreEqual(4, b.Length);
|
||||
Assert.AreEqual(TestRequiredLite.DFieldNumber << 3, b[0]);
|
||||
Assert.AreEqual(42, b[1]);
|
||||
Assert.AreEqual(TestRequiredLite.EnFieldNumber << 3, b[2]);
|
||||
Assert.AreEqual((int) ExtraEnum.EXLITE_BAZ, b[3]);
|
||||
Assert.Equal(4, b.Length);
|
||||
Assert.Equal(TestRequiredLite.DFieldNumber << 3, b[0]);
|
||||
Assert.Equal(42, b[1]);
|
||||
Assert.Equal(TestRequiredLite.EnFieldNumber << 3, b[2]);
|
||||
Assert.Equal((int) ExtraEnum.EXLITE_BAZ, b[3]);
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void TestMessageLiteToByteArray()
|
||||
{
|
||||
TestRequiredLite msg = TestRequiredLite.CreateBuilder()
|
||||
|
@ -72,10 +69,10 @@ namespace Google.ProtocolBuffers
|
|||
|
||||
ByteString b = msg.ToByteString();
|
||||
ByteString copy = ByteString.CopyFrom(msg.ToByteArray());
|
||||
Assert.AreEqual(b, copy);
|
||||
Assert.Equal(b, copy);
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void TestMessageLiteWriteTo()
|
||||
{
|
||||
TestRequiredLite msg = TestRequiredLite.CreateBuilder()
|
||||
|
@ -85,10 +82,10 @@ namespace Google.ProtocolBuffers
|
|||
|
||||
MemoryStream ms = new MemoryStream();
|
||||
msg.WriteTo(ms);
|
||||
TestUtil.AssertBytesEqual(msg.ToByteArray(), ms.ToArray());
|
||||
Assert.Equal(msg.ToByteArray(), ms.ToArray());
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void TestMessageLiteWriteDelimitedTo()
|
||||
{
|
||||
TestRequiredLite msg = TestRequiredLite.CreateBuilder()
|
||||
|
@ -100,21 +97,21 @@ namespace Google.ProtocolBuffers
|
|||
msg.WriteDelimitedTo(ms);
|
||||
byte[] buffer = ms.ToArray();
|
||||
|
||||
Assert.AreEqual(5, buffer.Length);
|
||||
Assert.AreEqual(4, buffer[0]);
|
||||
Assert.Equal(5, buffer.Length);
|
||||
Assert.Equal(4, buffer[0]);
|
||||
byte[] msgBytes = new byte[4];
|
||||
Array.Copy(buffer, 1, msgBytes, 0, 4);
|
||||
TestUtil.AssertBytesEqual(msg.ToByteArray(), msgBytes);
|
||||
Assert.Equal(msg.ToByteArray(), msgBytes);
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void TestIMessageLiteWeakCreateBuilderForType()
|
||||
{
|
||||
IMessageLite msg = TestRequiredLite.DefaultInstance;
|
||||
Assert.AreEqual(typeof(TestRequiredLite.Builder), msg.WeakCreateBuilderForType().GetType());
|
||||
Assert.Equal(typeof(TestRequiredLite.Builder), msg.WeakCreateBuilderForType().GetType());
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void TestMessageLiteWeakToBuilder()
|
||||
{
|
||||
IMessageLite msg = TestRequiredLite.CreateBuilder()
|
||||
|
@ -123,14 +120,14 @@ namespace Google.ProtocolBuffers
|
|||
.Build();
|
||||
|
||||
IMessageLite copy = msg.WeakToBuilder().WeakBuild();
|
||||
TestUtil.AssertBytesEqual(msg.ToByteArray(), copy.ToByteArray());
|
||||
Assert.Equal(msg.ToByteArray(), copy.ToByteArray());
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void TestMessageLiteWeakDefaultInstanceForType()
|
||||
{
|
||||
IMessageLite msg = TestRequiredLite.DefaultInstance;
|
||||
Assert.IsTrue(Object.ReferenceEquals(TestRequiredLite.DefaultInstance, msg.WeakDefaultInstanceForType));
|
||||
Assert.True(Object.ReferenceEquals(TestRequiredLite.DefaultInstance, msg.WeakDefaultInstanceForType));
|
||||
}
|
||||
}
|
||||
}
|
|
@ -35,34 +35,31 @@
|
|||
#endregion
|
||||
|
||||
using System;
|
||||
using System.Collections;
|
||||
using System.Collections.Generic;
|
||||
using Google.ProtocolBuffers;
|
||||
using Google.ProtocolBuffers.TestProtos;
|
||||
using Microsoft.VisualStudio.TestTools.UnitTesting;
|
||||
using Xunit;
|
||||
|
||||
namespace Google.ProtocolBuffers
|
||||
{
|
||||
[TestClass]
|
||||
public class ExtendableBuilderLiteTest
|
||||
{
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void TestHasExtensionT()
|
||||
{
|
||||
TestAllExtensionsLite.Builder builder = TestAllExtensionsLite.CreateBuilder()
|
||||
.SetExtension(UnittestLite.OptionalInt32ExtensionLite, 123);
|
||||
|
||||
Assert.IsTrue(builder.HasExtension(UnittestLite.OptionalInt32ExtensionLite));
|
||||
Assert.True(builder.HasExtension(UnittestLite.OptionalInt32ExtensionLite));
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void TestHasExtensionTMissing()
|
||||
{
|
||||
TestAllExtensionsLite.Builder builder = TestAllExtensionsLite.CreateBuilder();
|
||||
Assert.IsFalse(builder.HasExtension(UnittestLite.OptionalInt32ExtensionLite));
|
||||
Assert.False(builder.HasExtension(UnittestLite.OptionalInt32ExtensionLite));
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void TestGetExtensionCountT()
|
||||
{
|
||||
TestAllExtensionsLite.Builder builder = TestAllExtensionsLite.CreateBuilder()
|
||||
|
@ -70,41 +67,41 @@ namespace Google.ProtocolBuffers
|
|||
.AddExtension(UnittestLite.RepeatedInt32ExtensionLite, 2)
|
||||
.AddExtension(UnittestLite.RepeatedInt32ExtensionLite, 3);
|
||||
|
||||
Assert.AreEqual(3, builder.GetExtensionCount(UnittestLite.RepeatedInt32ExtensionLite));
|
||||
Assert.Equal(3, builder.GetExtensionCount(UnittestLite.RepeatedInt32ExtensionLite));
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void TestGetExtensionCountTEmpty()
|
||||
{
|
||||
TestAllExtensionsLite.Builder builder = TestAllExtensionsLite.CreateBuilder();
|
||||
Assert.AreEqual(0, builder.GetExtensionCount(UnittestLite.RepeatedInt32ExtensionLite));
|
||||
Assert.Equal(0, builder.GetExtensionCount(UnittestLite.RepeatedInt32ExtensionLite));
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void TestGetExtensionTNull()
|
||||
{
|
||||
TestAllExtensionsLite.Builder builder = TestAllExtensionsLite.CreateBuilder();
|
||||
string value = builder.GetExtension(UnittestLite.OptionalStringExtensionLite);
|
||||
Assert.IsNull(value);
|
||||
Assert.Null(value);
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void TestGetExtensionTValue()
|
||||
{
|
||||
TestAllExtensionsLite.Builder builder = TestAllExtensionsLite.CreateBuilder()
|
||||
.SetExtension(UnittestLite.OptionalInt32ExtensionLite, 3);
|
||||
|
||||
Assert.AreEqual(3, builder.GetExtension(UnittestLite.OptionalInt32ExtensionLite));
|
||||
Assert.Equal(3, builder.GetExtension(UnittestLite.OptionalInt32ExtensionLite));
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void TestGetExtensionTEmpty()
|
||||
{
|
||||
TestAllExtensionsLite.Builder builder = TestAllExtensionsLite.CreateBuilder();
|
||||
Assert.AreEqual(0, builder.GetExtension(UnittestLite.RepeatedInt32ExtensionLite).Count);
|
||||
Assert.Equal(0, builder.GetExtension(UnittestLite.RepeatedInt32ExtensionLite).Count);
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void TestGetExtensionTList()
|
||||
{
|
||||
TestAllExtensionsLite.Builder builder = TestAllExtensionsLite.CreateBuilder()
|
||||
|
@ -113,10 +110,10 @@ namespace Google.ProtocolBuffers
|
|||
.AddExtension(UnittestLite.RepeatedInt32ExtensionLite, 3);
|
||||
|
||||
IList<int> values = builder.GetExtension(UnittestLite.RepeatedInt32ExtensionLite);
|
||||
Assert.AreEqual(3, values.Count);
|
||||
Assert.Equal(3, values.Count);
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void TestGetExtensionTIndex()
|
||||
{
|
||||
TestAllExtensionsLite.Builder builder = TestAllExtensionsLite.CreateBuilder()
|
||||
|
@ -125,17 +122,17 @@ namespace Google.ProtocolBuffers
|
|||
.AddExtension(UnittestLite.RepeatedInt32ExtensionLite, 2);
|
||||
|
||||
for (int i = 0; i < 3; i++)
|
||||
Assert.AreEqual(i, builder.GetExtension(UnittestLite.RepeatedInt32ExtensionLite, i));
|
||||
Assert.Equal(i, builder.GetExtension(UnittestLite.RepeatedInt32ExtensionLite, i));
|
||||
}
|
||||
|
||||
[TestMethod, ExpectedException(typeof(ArgumentOutOfRangeException))]
|
||||
[Fact]
|
||||
public void TestGetExtensionTIndexOutOfRange()
|
||||
{
|
||||
TestAllExtensionsLite.Builder builder = TestAllExtensionsLite.CreateBuilder();
|
||||
builder.GetExtension(UnittestLite.RepeatedInt32ExtensionLite, 0);
|
||||
Assert.Throws<ArgumentOutOfRangeException>(() => builder.GetExtension(UnittestLite.RepeatedInt32ExtensionLite, 0));
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void TestSetExtensionTIndex()
|
||||
{
|
||||
TestAllExtensionsLite.Builder builder = TestAllExtensionsLite.CreateBuilder()
|
||||
|
@ -144,107 +141,107 @@ namespace Google.ProtocolBuffers
|
|||
.AddExtension(UnittestLite.RepeatedInt32ExtensionLite, 2);
|
||||
|
||||
for (int i = 0; i < 3; i++)
|
||||
Assert.AreEqual(i, builder.GetExtension(UnittestLite.RepeatedInt32ExtensionLite, i));
|
||||
Assert.Equal(i, builder.GetExtension(UnittestLite.RepeatedInt32ExtensionLite, i));
|
||||
|
||||
builder.SetExtension(UnittestLite.RepeatedInt32ExtensionLite, 0, 5);
|
||||
builder.SetExtension(UnittestLite.RepeatedInt32ExtensionLite, 1, 6);
|
||||
builder.SetExtension(UnittestLite.RepeatedInt32ExtensionLite, 2, 7);
|
||||
|
||||
for (int i = 0; i < 3; i++)
|
||||
Assert.AreEqual(5 + i, builder.GetExtension(UnittestLite.RepeatedInt32ExtensionLite, i));
|
||||
Assert.Equal(5 + i, builder.GetExtension(UnittestLite.RepeatedInt32ExtensionLite, i));
|
||||
}
|
||||
|
||||
[TestMethod, ExpectedException(typeof(ArgumentOutOfRangeException))]
|
||||
[Fact]
|
||||
public void TestSetExtensionTIndexOutOfRange()
|
||||
{
|
||||
TestAllExtensionsLite.Builder builder = TestAllExtensionsLite.CreateBuilder();
|
||||
builder.SetExtension(UnittestLite.RepeatedInt32ExtensionLite, 0, -1);
|
||||
Assert.Throws<ArgumentOutOfRangeException>(() => builder.SetExtension(UnittestLite.RepeatedInt32ExtensionLite, 0, -1));
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void TestClearExtensionTList()
|
||||
{
|
||||
TestAllExtensionsLite.Builder builder = TestAllExtensionsLite.CreateBuilder()
|
||||
.AddExtension(UnittestLite.RepeatedInt32ExtensionLite, 0);
|
||||
Assert.AreEqual(1, builder.GetExtensionCount(UnittestLite.RepeatedInt32ExtensionLite));
|
||||
Assert.Equal(1, builder.GetExtensionCount(UnittestLite.RepeatedInt32ExtensionLite));
|
||||
|
||||
builder.ClearExtension(UnittestLite.RepeatedInt32ExtensionLite);
|
||||
Assert.AreEqual(0, builder.GetExtensionCount(UnittestLite.RepeatedInt32ExtensionLite));
|
||||
Assert.Equal(0, builder.GetExtensionCount(UnittestLite.RepeatedInt32ExtensionLite));
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void TestClearExtensionTValue()
|
||||
{
|
||||
TestAllExtensionsLite.Builder builder = TestAllExtensionsLite.CreateBuilder()
|
||||
.SetExtension(UnittestLite.OptionalInt32ExtensionLite, 0);
|
||||
Assert.IsTrue(builder.HasExtension(UnittestLite.OptionalInt32ExtensionLite));
|
||||
Assert.True(builder.HasExtension(UnittestLite.OptionalInt32ExtensionLite));
|
||||
|
||||
builder.ClearExtension(UnittestLite.OptionalInt32ExtensionLite);
|
||||
Assert.IsFalse(builder.HasExtension(UnittestLite.OptionalInt32ExtensionLite));
|
||||
Assert.False(builder.HasExtension(UnittestLite.OptionalInt32ExtensionLite));
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void TestIndexedByDescriptor()
|
||||
{
|
||||
TestAllExtensionsLite.Builder builder = TestAllExtensionsLite.CreateBuilder();
|
||||
Assert.IsFalse(builder.HasExtension(UnittestLite.OptionalInt32ExtensionLite));
|
||||
Assert.False(builder.HasExtension(UnittestLite.OptionalInt32ExtensionLite));
|
||||
|
||||
builder[UnittestLite.OptionalInt32ExtensionLite.Descriptor] = 123;
|
||||
|
||||
Assert.IsTrue(builder.HasExtension(UnittestLite.OptionalInt32ExtensionLite));
|
||||
Assert.AreEqual(123, builder.GetExtension(UnittestLite.OptionalInt32ExtensionLite));
|
||||
Assert.True(builder.HasExtension(UnittestLite.OptionalInt32ExtensionLite));
|
||||
Assert.Equal(123, builder.GetExtension(UnittestLite.OptionalInt32ExtensionLite));
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void TestIndexedByDescriptorAndOrdinal()
|
||||
{
|
||||
TestAllExtensionsLite.Builder builder = TestAllExtensionsLite.CreateBuilder()
|
||||
.AddExtension(UnittestLite.RepeatedInt32ExtensionLite, 0);
|
||||
Assert.AreEqual(1, builder.GetExtensionCount(UnittestLite.RepeatedInt32ExtensionLite));
|
||||
Assert.Equal(1, builder.GetExtensionCount(UnittestLite.RepeatedInt32ExtensionLite));
|
||||
|
||||
IFieldDescriptorLite f = UnittestLite.RepeatedInt32ExtensionLite.Descriptor;
|
||||
builder[f, 0] = 123;
|
||||
|
||||
Assert.AreEqual(1, builder.GetExtensionCount(UnittestLite.RepeatedInt32ExtensionLite));
|
||||
Assert.AreEqual(123, builder.GetExtension(UnittestLite.RepeatedInt32ExtensionLite, 0));
|
||||
Assert.Equal(1, builder.GetExtensionCount(UnittestLite.RepeatedInt32ExtensionLite));
|
||||
Assert.Equal(123, builder.GetExtension(UnittestLite.RepeatedInt32ExtensionLite, 0));
|
||||
}
|
||||
|
||||
[TestMethod, ExpectedException(typeof(ArgumentOutOfRangeException))]
|
||||
[Fact]
|
||||
public void TestIndexedByDescriptorAndOrdinalOutOfRange()
|
||||
{
|
||||
TestAllExtensionsLite.Builder builder = TestAllExtensionsLite.CreateBuilder();
|
||||
Assert.AreEqual(0, builder.GetExtensionCount(UnittestLite.RepeatedInt32ExtensionLite));
|
||||
Assert.Equal(0, builder.GetExtensionCount(UnittestLite.RepeatedInt32ExtensionLite));
|
||||
|
||||
IFieldDescriptorLite f = UnittestLite.RepeatedInt32ExtensionLite.Descriptor;
|
||||
builder[f, 0] = 123;
|
||||
Assert.Throws<ArgumentOutOfRangeException>(() => builder[f, 0] = 123);
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void TestClearFieldByDescriptor()
|
||||
{
|
||||
TestAllExtensionsLite.Builder builder = TestAllExtensionsLite.CreateBuilder()
|
||||
.AddExtension(UnittestLite.RepeatedInt32ExtensionLite, 0);
|
||||
Assert.AreEqual(1, builder.GetExtensionCount(UnittestLite.RepeatedInt32ExtensionLite));
|
||||
Assert.Equal(1, builder.GetExtensionCount(UnittestLite.RepeatedInt32ExtensionLite));
|
||||
|
||||
IFieldDescriptorLite f = UnittestLite.RepeatedInt32ExtensionLite.Descriptor;
|
||||
builder.ClearField(f);
|
||||
Assert.AreEqual(0, builder.GetExtensionCount(UnittestLite.RepeatedInt32ExtensionLite));
|
||||
Assert.Equal(0, builder.GetExtensionCount(UnittestLite.RepeatedInt32ExtensionLite));
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void TestAddRepeatedFieldByDescriptor()
|
||||
{
|
||||
TestAllExtensionsLite.Builder builder = TestAllExtensionsLite.CreateBuilder()
|
||||
.AddExtension(UnittestLite.RepeatedInt32ExtensionLite, 0);
|
||||
Assert.AreEqual(1, builder.GetExtensionCount(UnittestLite.RepeatedInt32ExtensionLite));
|
||||
Assert.Equal(1, builder.GetExtensionCount(UnittestLite.RepeatedInt32ExtensionLite));
|
||||
|
||||
IFieldDescriptorLite f = UnittestLite.RepeatedInt32ExtensionLite.Descriptor;
|
||||
builder.AddRepeatedField(f, 123);
|
||||
Assert.AreEqual(2, builder.GetExtensionCount(UnittestLite.RepeatedInt32ExtensionLite));
|
||||
Assert.AreEqual(123, builder.GetExtension(UnittestLite.RepeatedInt32ExtensionLite, 1));
|
||||
Assert.Equal(2, builder.GetExtensionCount(UnittestLite.RepeatedInt32ExtensionLite));
|
||||
Assert.Equal(123, builder.GetExtension(UnittestLite.RepeatedInt32ExtensionLite, 1));
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void TestMissingExtensionsLite()
|
||||
{
|
||||
const int optionalInt32 = 12345678;
|
||||
|
@ -255,21 +252,21 @@ namespace Google.ProtocolBuffers
|
|||
builder.AddExtension(UnittestLite.RepeatedDoubleExtensionLite, 1.3);
|
||||
TestAllExtensionsLite msg = builder.Build();
|
||||
|
||||
Assert.IsTrue(msg.HasExtension(UnittestLite.OptionalInt32ExtensionLite));
|
||||
Assert.AreEqual(3, msg.GetExtensionCount(UnittestLite.RepeatedDoubleExtensionLite));
|
||||
Assert.True(msg.HasExtension(UnittestLite.OptionalInt32ExtensionLite));
|
||||
Assert.Equal(3, msg.GetExtensionCount(UnittestLite.RepeatedDoubleExtensionLite));
|
||||
|
||||
byte[] bits = msg.ToByteArray();
|
||||
TestAllExtensionsLite copy = TestAllExtensionsLite.ParseFrom(bits);
|
||||
Assert.IsFalse(copy.HasExtension(UnittestLite.OptionalInt32ExtensionLite));
|
||||
Assert.AreEqual(0, copy.GetExtensionCount(UnittestLite.RepeatedDoubleExtensionLite));
|
||||
Assert.AreNotEqual(msg, copy);
|
||||
Assert.False(copy.HasExtension(UnittestLite.OptionalInt32ExtensionLite));
|
||||
Assert.Equal(0, copy.GetExtensionCount(UnittestLite.RepeatedDoubleExtensionLite));
|
||||
Assert.NotEqual(msg, copy);
|
||||
|
||||
//The lite runtime removes all unknown fields and extensions
|
||||
byte[] copybits = copy.ToByteArray();
|
||||
Assert.AreEqual(0, copybits.Length);
|
||||
Assert.Equal(0, copybits.Length);
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void TestMissingFieldsLite()
|
||||
{
|
||||
TestAllTypesLite msg = TestAllTypesLite.CreateBuilder()
|
||||
|
@ -278,12 +275,14 @@ namespace Google.ProtocolBuffers
|
|||
.Build();
|
||||
|
||||
byte[] bits = msg.ToByteArray();
|
||||
TestAllExtensionsLite copy = TestAllExtensionsLite.ParseFrom(bits);
|
||||
Assert.AreNotEqual(msg, copy);
|
||||
IMessageLite copy = TestAllExtensionsLite.ParseFrom(bits);
|
||||
// Use explicit call to Equals to avoid xUnit checking for type equality.
|
||||
Assert.False(msg.Equals(copy));
|
||||
Assert.False(copy.Equals(msg));
|
||||
|
||||
//The lite runtime removes all unknown fields and extensions
|
||||
byte[] copybits = copy.ToByteArray();
|
||||
Assert.AreEqual(0, copybits.Length);
|
||||
Assert.Equal(0, copybits.Length);
|
||||
}
|
||||
}
|
||||
}
|
|
@ -39,11 +39,10 @@ using System.Collections.Generic;
|
|||
using System.Text;
|
||||
using Google.ProtocolBuffers;
|
||||
using Google.ProtocolBuffers.TestProtos;
|
||||
using Microsoft.VisualStudio.TestTools.UnitTesting;
|
||||
using Xunit;
|
||||
|
||||
namespace Google.ProtocolBuffers
|
||||
{
|
||||
[TestClass]
|
||||
public class ExtendableMessageLiteTest
|
||||
{
|
||||
//The lite framework does not make this assertion
|
||||
|
@ -55,7 +54,7 @@ namespace Google.ProtocolBuffers
|
|||
// ForeignMessageLite.DefaultInstance;
|
||||
//}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void ExtensionWriterTestMessages()
|
||||
{
|
||||
TestAllExtensionsLite.Builder b = TestAllExtensionsLite.CreateBuilder().SetExtension(
|
||||
|
@ -67,20 +66,20 @@ namespace Google.ProtocolBuffers
|
|||
UnittestLite.RegisterAllExtensions(registry);
|
||||
|
||||
copy = TestAllExtensionsLite.ParseFrom(msg.ToByteArray(), registry);
|
||||
TestUtil.AssertBytesEqual(msg.ToByteArray(), copy.ToByteArray());
|
||||
Assert.Equal(msg.ToByteArray(), copy.ToByteArray());
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void ExtensionWriterIsInitialized()
|
||||
{
|
||||
Assert.IsTrue(ForeignMessageLite.DefaultInstance.IsInitialized);
|
||||
Assert.IsTrue(TestPackedExtensionsLite.CreateBuilder().IsInitialized);
|
||||
Assert.IsTrue(TestAllExtensionsLite.CreateBuilder().SetExtension(
|
||||
Assert.True(ForeignMessageLite.DefaultInstance.IsInitialized);
|
||||
Assert.True(TestPackedExtensionsLite.CreateBuilder().IsInitialized);
|
||||
Assert.True(TestAllExtensionsLite.CreateBuilder().SetExtension(
|
||||
UnittestLite.OptionalForeignMessageExtensionLite, ForeignMessageLite.DefaultInstance)
|
||||
.IsInitialized);
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void ExtensionWriterTestSetExtensionLists()
|
||||
{
|
||||
TestAllExtensionsLite msg, copy;
|
||||
|
@ -96,13 +95,13 @@ namespace Google.ProtocolBuffers
|
|||
UnittestLite.RegisterAllExtensions(registry);
|
||||
|
||||
copy = TestAllExtensionsLite.ParseFrom(msg.ToByteArray(), registry);
|
||||
TestUtil.AssertBytesEqual(msg.ToByteArray(), copy.ToByteArray());
|
||||
Assert.Equal(msg.ToByteArray(), copy.ToByteArray());
|
||||
|
||||
Assert.AreEqual(ForeignEnumLite.FOREIGN_LITE_FOO,
|
||||
Assert.Equal(ForeignEnumLite.FOREIGN_LITE_FOO,
|
||||
copy.GetExtension(UnittestLite.RepeatedForeignEnumExtensionLite, 1));
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void ExtensionWriterTest()
|
||||
{
|
||||
TestAllExtensionsLite.Builder builder = TestAllExtensionsLite.CreateBuilder()
|
||||
|
@ -181,82 +180,82 @@ namespace Google.ProtocolBuffers
|
|||
TestAllExtensionsLite.CreateBuilder().MergeFrom(msg.ToByteArray(), registry);
|
||||
TestAllExtensionsLite copy = copyBuilder.Build();
|
||||
|
||||
TestUtil.AssertBytesEqual(msg.ToByteArray(), copy.ToByteArray());
|
||||
Assert.Equal(msg.ToByteArray(), copy.ToByteArray());
|
||||
|
||||
Assert.AreEqual(true, copy.GetExtension(UnittestLite.DefaultBoolExtensionLite));
|
||||
Assert.AreEqual(ByteString.CopyFromUtf8("123"),
|
||||
Assert.Equal(true, copy.GetExtension(UnittestLite.DefaultBoolExtensionLite));
|
||||
Assert.Equal(ByteString.CopyFromUtf8("123"),
|
||||
copy.GetExtension(UnittestLite.DefaultBytesExtensionLite));
|
||||
Assert.AreEqual("123", copy.GetExtension(UnittestLite.DefaultCordExtensionLite));
|
||||
Assert.AreEqual(123, copy.GetExtension(UnittestLite.DefaultDoubleExtensionLite));
|
||||
Assert.AreEqual(123u, copy.GetExtension(UnittestLite.DefaultFixed32ExtensionLite));
|
||||
Assert.AreEqual(123u, copy.GetExtension(UnittestLite.DefaultFixed64ExtensionLite));
|
||||
Assert.AreEqual(123, copy.GetExtension(UnittestLite.DefaultFloatExtensionLite));
|
||||
Assert.AreEqual(ForeignEnumLite.FOREIGN_LITE_BAZ,
|
||||
Assert.Equal("123", copy.GetExtension(UnittestLite.DefaultCordExtensionLite));
|
||||
Assert.Equal(123, copy.GetExtension(UnittestLite.DefaultDoubleExtensionLite));
|
||||
Assert.Equal(123u, copy.GetExtension(UnittestLite.DefaultFixed32ExtensionLite));
|
||||
Assert.Equal(123u, copy.GetExtension(UnittestLite.DefaultFixed64ExtensionLite));
|
||||
Assert.Equal(123, copy.GetExtension(UnittestLite.DefaultFloatExtensionLite));
|
||||
Assert.Equal(ForeignEnumLite.FOREIGN_LITE_BAZ,
|
||||
copy.GetExtension(UnittestLite.DefaultForeignEnumExtensionLite));
|
||||
Assert.AreEqual(ImportEnumLite.IMPORT_LITE_BAZ,
|
||||
Assert.Equal(ImportEnumLite.IMPORT_LITE_BAZ,
|
||||
copy.GetExtension(UnittestLite.DefaultImportEnumExtensionLite));
|
||||
Assert.AreEqual(123, copy.GetExtension(UnittestLite.DefaultInt32ExtensionLite));
|
||||
Assert.AreEqual(123, copy.GetExtension(UnittestLite.DefaultInt64ExtensionLite));
|
||||
Assert.AreEqual(TestAllTypesLite.Types.NestedEnum.FOO,
|
||||
Assert.Equal(123, copy.GetExtension(UnittestLite.DefaultInt32ExtensionLite));
|
||||
Assert.Equal(123, copy.GetExtension(UnittestLite.DefaultInt64ExtensionLite));
|
||||
Assert.Equal(TestAllTypesLite.Types.NestedEnum.FOO,
|
||||
copy.GetExtension(UnittestLite.DefaultNestedEnumExtensionLite));
|
||||
Assert.AreEqual(123, copy.GetExtension(UnittestLite.DefaultSfixed32ExtensionLite));
|
||||
Assert.AreEqual(123, copy.GetExtension(UnittestLite.DefaultSfixed64ExtensionLite));
|
||||
Assert.AreEqual(123, copy.GetExtension(UnittestLite.DefaultSint32ExtensionLite));
|
||||
Assert.AreEqual(123, copy.GetExtension(UnittestLite.DefaultSint64ExtensionLite));
|
||||
Assert.AreEqual("123", copy.GetExtension(UnittestLite.DefaultStringExtensionLite));
|
||||
Assert.AreEqual("123", copy.GetExtension(UnittestLite.DefaultStringPieceExtensionLite));
|
||||
Assert.AreEqual(123u, copy.GetExtension(UnittestLite.DefaultUint32ExtensionLite));
|
||||
Assert.AreEqual(123u, copy.GetExtension(UnittestLite.DefaultUint64ExtensionLite));
|
||||
Assert.Equal(123, copy.GetExtension(UnittestLite.DefaultSfixed32ExtensionLite));
|
||||
Assert.Equal(123, copy.GetExtension(UnittestLite.DefaultSfixed64ExtensionLite));
|
||||
Assert.Equal(123, copy.GetExtension(UnittestLite.DefaultSint32ExtensionLite));
|
||||
Assert.Equal(123, copy.GetExtension(UnittestLite.DefaultSint64ExtensionLite));
|
||||
Assert.Equal("123", copy.GetExtension(UnittestLite.DefaultStringExtensionLite));
|
||||
Assert.Equal("123", copy.GetExtension(UnittestLite.DefaultStringPieceExtensionLite));
|
||||
Assert.Equal(123u, copy.GetExtension(UnittestLite.DefaultUint32ExtensionLite));
|
||||
Assert.Equal(123u, copy.GetExtension(UnittestLite.DefaultUint64ExtensionLite));
|
||||
|
||||
Assert.AreEqual(true, copy.GetExtension(UnittestLite.OptionalBoolExtensionLite));
|
||||
Assert.AreEqual(ByteString.CopyFromUtf8("123"),
|
||||
Assert.Equal(true, copy.GetExtension(UnittestLite.OptionalBoolExtensionLite));
|
||||
Assert.Equal(ByteString.CopyFromUtf8("123"),
|
||||
copy.GetExtension(UnittestLite.OptionalBytesExtensionLite));
|
||||
Assert.AreEqual("123", copy.GetExtension(UnittestLite.OptionalCordExtensionLite));
|
||||
Assert.AreEqual(123, copy.GetExtension(UnittestLite.OptionalDoubleExtensionLite));
|
||||
Assert.AreEqual(123u, copy.GetExtension(UnittestLite.OptionalFixed32ExtensionLite));
|
||||
Assert.AreEqual(123u, copy.GetExtension(UnittestLite.OptionalFixed64ExtensionLite));
|
||||
Assert.AreEqual(123, copy.GetExtension(UnittestLite.OptionalFloatExtensionLite));
|
||||
Assert.AreEqual(ForeignEnumLite.FOREIGN_LITE_BAZ,
|
||||
Assert.Equal("123", copy.GetExtension(UnittestLite.OptionalCordExtensionLite));
|
||||
Assert.Equal(123, copy.GetExtension(UnittestLite.OptionalDoubleExtensionLite));
|
||||
Assert.Equal(123u, copy.GetExtension(UnittestLite.OptionalFixed32ExtensionLite));
|
||||
Assert.Equal(123u, copy.GetExtension(UnittestLite.OptionalFixed64ExtensionLite));
|
||||
Assert.Equal(123, copy.GetExtension(UnittestLite.OptionalFloatExtensionLite));
|
||||
Assert.Equal(ForeignEnumLite.FOREIGN_LITE_BAZ,
|
||||
copy.GetExtension(UnittestLite.OptionalForeignEnumExtensionLite));
|
||||
Assert.AreEqual(ImportEnumLite.IMPORT_LITE_BAZ,
|
||||
Assert.Equal(ImportEnumLite.IMPORT_LITE_BAZ,
|
||||
copy.GetExtension(UnittestLite.OptionalImportEnumExtensionLite));
|
||||
Assert.AreEqual(123, copy.GetExtension(UnittestLite.OptionalInt32ExtensionLite));
|
||||
Assert.AreEqual(123, copy.GetExtension(UnittestLite.OptionalInt64ExtensionLite));
|
||||
Assert.AreEqual(TestAllTypesLite.Types.NestedEnum.FOO,
|
||||
Assert.Equal(123, copy.GetExtension(UnittestLite.OptionalInt32ExtensionLite));
|
||||
Assert.Equal(123, copy.GetExtension(UnittestLite.OptionalInt64ExtensionLite));
|
||||
Assert.Equal(TestAllTypesLite.Types.NestedEnum.FOO,
|
||||
copy.GetExtension(UnittestLite.OptionalNestedEnumExtensionLite));
|
||||
Assert.AreEqual(123, copy.GetExtension(UnittestLite.OptionalSfixed32ExtensionLite));
|
||||
Assert.AreEqual(123, copy.GetExtension(UnittestLite.OptionalSfixed64ExtensionLite));
|
||||
Assert.AreEqual(123, copy.GetExtension(UnittestLite.OptionalSint32ExtensionLite));
|
||||
Assert.AreEqual(123, copy.GetExtension(UnittestLite.OptionalSint64ExtensionLite));
|
||||
Assert.AreEqual("123", copy.GetExtension(UnittestLite.OptionalStringExtensionLite));
|
||||
Assert.AreEqual("123", copy.GetExtension(UnittestLite.OptionalStringPieceExtensionLite));
|
||||
Assert.AreEqual(123u, copy.GetExtension(UnittestLite.OptionalUint32ExtensionLite));
|
||||
Assert.AreEqual(123u, copy.GetExtension(UnittestLite.OptionalUint64ExtensionLite));
|
||||
Assert.Equal(123, copy.GetExtension(UnittestLite.OptionalSfixed32ExtensionLite));
|
||||
Assert.Equal(123, copy.GetExtension(UnittestLite.OptionalSfixed64ExtensionLite));
|
||||
Assert.Equal(123, copy.GetExtension(UnittestLite.OptionalSint32ExtensionLite));
|
||||
Assert.Equal(123, copy.GetExtension(UnittestLite.OptionalSint64ExtensionLite));
|
||||
Assert.Equal("123", copy.GetExtension(UnittestLite.OptionalStringExtensionLite));
|
||||
Assert.Equal("123", copy.GetExtension(UnittestLite.OptionalStringPieceExtensionLite));
|
||||
Assert.Equal(123u, copy.GetExtension(UnittestLite.OptionalUint32ExtensionLite));
|
||||
Assert.Equal(123u, copy.GetExtension(UnittestLite.OptionalUint64ExtensionLite));
|
||||
|
||||
Assert.AreEqual(true, copy.GetExtension(UnittestLite.RepeatedBoolExtensionLite, 0));
|
||||
Assert.AreEqual(ByteString.CopyFromUtf8("123"),
|
||||
Assert.Equal(true, copy.GetExtension(UnittestLite.RepeatedBoolExtensionLite, 0));
|
||||
Assert.Equal(ByteString.CopyFromUtf8("123"),
|
||||
copy.GetExtension(UnittestLite.RepeatedBytesExtensionLite, 0));
|
||||
Assert.AreEqual("123", copy.GetExtension(UnittestLite.RepeatedCordExtensionLite, 0));
|
||||
Assert.AreEqual(123, copy.GetExtension(UnittestLite.RepeatedDoubleExtensionLite, 0));
|
||||
Assert.AreEqual(123u, copy.GetExtension(UnittestLite.RepeatedFixed32ExtensionLite, 0));
|
||||
Assert.AreEqual(123u, copy.GetExtension(UnittestLite.RepeatedFixed64ExtensionLite, 0));
|
||||
Assert.AreEqual(123, copy.GetExtension(UnittestLite.RepeatedFloatExtensionLite, 0));
|
||||
Assert.AreEqual(ForeignEnumLite.FOREIGN_LITE_BAZ,
|
||||
Assert.Equal("123", copy.GetExtension(UnittestLite.RepeatedCordExtensionLite, 0));
|
||||
Assert.Equal(123, copy.GetExtension(UnittestLite.RepeatedDoubleExtensionLite, 0));
|
||||
Assert.Equal(123u, copy.GetExtension(UnittestLite.RepeatedFixed32ExtensionLite, 0));
|
||||
Assert.Equal(123u, copy.GetExtension(UnittestLite.RepeatedFixed64ExtensionLite, 0));
|
||||
Assert.Equal(123, copy.GetExtension(UnittestLite.RepeatedFloatExtensionLite, 0));
|
||||
Assert.Equal(ForeignEnumLite.FOREIGN_LITE_BAZ,
|
||||
copy.GetExtension(UnittestLite.RepeatedForeignEnumExtensionLite, 0));
|
||||
Assert.AreEqual(ImportEnumLite.IMPORT_LITE_BAZ,
|
||||
Assert.Equal(ImportEnumLite.IMPORT_LITE_BAZ,
|
||||
copy.GetExtension(UnittestLite.RepeatedImportEnumExtensionLite, 0));
|
||||
Assert.AreEqual(123, copy.GetExtension(UnittestLite.RepeatedInt32ExtensionLite, 0));
|
||||
Assert.AreEqual(123, copy.GetExtension(UnittestLite.RepeatedInt64ExtensionLite, 0));
|
||||
Assert.AreEqual(TestAllTypesLite.Types.NestedEnum.FOO,
|
||||
Assert.Equal(123, copy.GetExtension(UnittestLite.RepeatedInt32ExtensionLite, 0));
|
||||
Assert.Equal(123, copy.GetExtension(UnittestLite.RepeatedInt64ExtensionLite, 0));
|
||||
Assert.Equal(TestAllTypesLite.Types.NestedEnum.FOO,
|
||||
copy.GetExtension(UnittestLite.RepeatedNestedEnumExtensionLite, 0));
|
||||
Assert.AreEqual(123, copy.GetExtension(UnittestLite.RepeatedSfixed32ExtensionLite, 0));
|
||||
Assert.AreEqual(123, copy.GetExtension(UnittestLite.RepeatedSfixed64ExtensionLite, 0));
|
||||
Assert.AreEqual(123, copy.GetExtension(UnittestLite.RepeatedSint32ExtensionLite, 0));
|
||||
Assert.AreEqual(123, copy.GetExtension(UnittestLite.RepeatedSint64ExtensionLite, 0));
|
||||
Assert.AreEqual("123", copy.GetExtension(UnittestLite.RepeatedStringExtensionLite, 0));
|
||||
Assert.AreEqual("123", copy.GetExtension(UnittestLite.RepeatedStringPieceExtensionLite, 0));
|
||||
Assert.AreEqual(123u, copy.GetExtension(UnittestLite.RepeatedUint32ExtensionLite, 0));
|
||||
Assert.AreEqual(123u, copy.GetExtension(UnittestLite.RepeatedUint64ExtensionLite, 0));
|
||||
Assert.Equal(123, copy.GetExtension(UnittestLite.RepeatedSfixed32ExtensionLite, 0));
|
||||
Assert.Equal(123, copy.GetExtension(UnittestLite.RepeatedSfixed64ExtensionLite, 0));
|
||||
Assert.Equal(123, copy.GetExtension(UnittestLite.RepeatedSint32ExtensionLite, 0));
|
||||
Assert.Equal(123, copy.GetExtension(UnittestLite.RepeatedSint64ExtensionLite, 0));
|
||||
Assert.Equal("123", copy.GetExtension(UnittestLite.RepeatedStringExtensionLite, 0));
|
||||
Assert.Equal("123", copy.GetExtension(UnittestLite.RepeatedStringPieceExtensionLite, 0));
|
||||
Assert.Equal(123u, copy.GetExtension(UnittestLite.RepeatedUint32ExtensionLite, 0));
|
||||
Assert.Equal(123u, copy.GetExtension(UnittestLite.RepeatedUint64ExtensionLite, 0));
|
||||
}
|
||||
|
||||
private TestPackedExtensionsLite BuildPackedExtensions()
|
||||
|
@ -295,36 +294,36 @@ namespace Google.ProtocolBuffers
|
|||
|
||||
private void AssertPackedExtensions(TestPackedExtensionsLite copy)
|
||||
{
|
||||
Assert.AreEqual(true, copy.GetExtension(UnittestLite.PackedBoolExtensionLite, 0));
|
||||
Assert.AreEqual(123, copy.GetExtension(UnittestLite.PackedDoubleExtensionLite, 0));
|
||||
Assert.AreEqual(123u, copy.GetExtension(UnittestLite.PackedFixed32ExtensionLite, 0));
|
||||
Assert.AreEqual(123u, copy.GetExtension(UnittestLite.PackedFixed64ExtensionLite, 0));
|
||||
Assert.AreEqual(123, copy.GetExtension(UnittestLite.PackedFloatExtensionLite, 0));
|
||||
Assert.AreEqual(123, copy.GetExtension(UnittestLite.PackedInt32ExtensionLite, 0));
|
||||
Assert.AreEqual(123, copy.GetExtension(UnittestLite.PackedInt64ExtensionLite, 0));
|
||||
Assert.AreEqual(123, copy.GetExtension(UnittestLite.PackedSfixed32ExtensionLite, 0));
|
||||
Assert.AreEqual(123, copy.GetExtension(UnittestLite.PackedSfixed64ExtensionLite, 0));
|
||||
Assert.AreEqual(123, copy.GetExtension(UnittestLite.PackedSint32ExtensionLite, 0));
|
||||
Assert.AreEqual(123, copy.GetExtension(UnittestLite.PackedSint64ExtensionLite, 0));
|
||||
Assert.AreEqual(123u, copy.GetExtension(UnittestLite.PackedUint32ExtensionLite, 0));
|
||||
Assert.AreEqual(123u, copy.GetExtension(UnittestLite.PackedUint64ExtensionLite, 0));
|
||||
Assert.Equal(true, copy.GetExtension(UnittestLite.PackedBoolExtensionLite, 0));
|
||||
Assert.Equal(123, copy.GetExtension(UnittestLite.PackedDoubleExtensionLite, 0));
|
||||
Assert.Equal(123u, copy.GetExtension(UnittestLite.PackedFixed32ExtensionLite, 0));
|
||||
Assert.Equal(123u, copy.GetExtension(UnittestLite.PackedFixed64ExtensionLite, 0));
|
||||
Assert.Equal(123, copy.GetExtension(UnittestLite.PackedFloatExtensionLite, 0));
|
||||
Assert.Equal(123, copy.GetExtension(UnittestLite.PackedInt32ExtensionLite, 0));
|
||||
Assert.Equal(123, copy.GetExtension(UnittestLite.PackedInt64ExtensionLite, 0));
|
||||
Assert.Equal(123, copy.GetExtension(UnittestLite.PackedSfixed32ExtensionLite, 0));
|
||||
Assert.Equal(123, copy.GetExtension(UnittestLite.PackedSfixed64ExtensionLite, 0));
|
||||
Assert.Equal(123, copy.GetExtension(UnittestLite.PackedSint32ExtensionLite, 0));
|
||||
Assert.Equal(123, copy.GetExtension(UnittestLite.PackedSint64ExtensionLite, 0));
|
||||
Assert.Equal(123u, copy.GetExtension(UnittestLite.PackedUint32ExtensionLite, 0));
|
||||
Assert.Equal(123u, copy.GetExtension(UnittestLite.PackedUint64ExtensionLite, 0));
|
||||
|
||||
Assert.AreEqual(true, copy.GetExtension(UnittestLite.PackedBoolExtensionLite, 1));
|
||||
Assert.AreEqual(123, copy.GetExtension(UnittestLite.PackedDoubleExtensionLite, 1));
|
||||
Assert.AreEqual(123u, copy.GetExtension(UnittestLite.PackedFixed32ExtensionLite, 1));
|
||||
Assert.AreEqual(123u, copy.GetExtension(UnittestLite.PackedFixed64ExtensionLite, 1));
|
||||
Assert.AreEqual(123, copy.GetExtension(UnittestLite.PackedFloatExtensionLite, 1));
|
||||
Assert.AreEqual(123, copy.GetExtension(UnittestLite.PackedInt32ExtensionLite, 1));
|
||||
Assert.AreEqual(123, copy.GetExtension(UnittestLite.PackedInt64ExtensionLite, 1));
|
||||
Assert.AreEqual(123, copy.GetExtension(UnittestLite.PackedSfixed32ExtensionLite, 1));
|
||||
Assert.AreEqual(123, copy.GetExtension(UnittestLite.PackedSfixed64ExtensionLite, 1));
|
||||
Assert.AreEqual(123, copy.GetExtension(UnittestLite.PackedSint32ExtensionLite, 1));
|
||||
Assert.AreEqual(123, copy.GetExtension(UnittestLite.PackedSint64ExtensionLite, 1));
|
||||
Assert.AreEqual(123u, copy.GetExtension(UnittestLite.PackedUint32ExtensionLite, 1));
|
||||
Assert.AreEqual(123u, copy.GetExtension(UnittestLite.PackedUint64ExtensionLite, 1));
|
||||
Assert.Equal(true, copy.GetExtension(UnittestLite.PackedBoolExtensionLite, 1));
|
||||
Assert.Equal(123, copy.GetExtension(UnittestLite.PackedDoubleExtensionLite, 1));
|
||||
Assert.Equal(123u, copy.GetExtension(UnittestLite.PackedFixed32ExtensionLite, 1));
|
||||
Assert.Equal(123u, copy.GetExtension(UnittestLite.PackedFixed64ExtensionLite, 1));
|
||||
Assert.Equal(123, copy.GetExtension(UnittestLite.PackedFloatExtensionLite, 1));
|
||||
Assert.Equal(123, copy.GetExtension(UnittestLite.PackedInt32ExtensionLite, 1));
|
||||
Assert.Equal(123, copy.GetExtension(UnittestLite.PackedInt64ExtensionLite, 1));
|
||||
Assert.Equal(123, copy.GetExtension(UnittestLite.PackedSfixed32ExtensionLite, 1));
|
||||
Assert.Equal(123, copy.GetExtension(UnittestLite.PackedSfixed64ExtensionLite, 1));
|
||||
Assert.Equal(123, copy.GetExtension(UnittestLite.PackedSint32ExtensionLite, 1));
|
||||
Assert.Equal(123, copy.GetExtension(UnittestLite.PackedSint64ExtensionLite, 1));
|
||||
Assert.Equal(123u, copy.GetExtension(UnittestLite.PackedUint32ExtensionLite, 1));
|
||||
Assert.Equal(123u, copy.GetExtension(UnittestLite.PackedUint64ExtensionLite, 1));
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void ExtensionWriterTestPacked()
|
||||
{
|
||||
TestPackedExtensionsLite msg = BuildPackedExtensions();
|
||||
|
@ -336,12 +335,12 @@ namespace Google.ProtocolBuffers
|
|||
TestPackedExtensionsLite.CreateBuilder().MergeFrom(msg.ToByteArray(), registry);
|
||||
TestPackedExtensionsLite copy = copyBuilder.Build();
|
||||
|
||||
TestUtil.AssertBytesEqual(msg.ToByteArray(), copy.ToByteArray());
|
||||
Assert.Equal(msg.ToByteArray(), copy.ToByteArray());
|
||||
|
||||
AssertPackedExtensions(copy);
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void TestUnpackedAndPackedExtensions()
|
||||
{
|
||||
TestPackedExtensionsLite original = BuildPackedExtensions();
|
||||
|
@ -355,19 +354,19 @@ namespace Google.ProtocolBuffers
|
|||
|
||||
TestPackedExtensionsLite packed = TestPackedExtensionsLite.ParseFrom(unpacked.ToByteArray(), registry);
|
||||
|
||||
Assert.AreEqual(original, packed);
|
||||
TestUtil.AssertBytesEqual(original.ToByteArray(), packed.ToByteArray());
|
||||
Assert.Equal(original, packed);
|
||||
Assert.Equal(original.ToByteArray(), packed.ToByteArray());
|
||||
AssertPackedExtensions(packed);
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void TestUnpackedFromPackedInput()
|
||||
{
|
||||
byte[] packedData = BuildPackedExtensions().ToByteArray();
|
||||
|
||||
TestUnpackedTypesLite unpacked = TestUnpackedTypesLite.ParseFrom(packedData);
|
||||
TestPackedTypesLite packed = TestPackedTypesLite.ParseFrom(unpacked.ToByteArray());
|
||||
TestUtil.AssertBytesEqual(packedData, packed.ToByteArray());
|
||||
Assert.Equal(packedData, packed.ToByteArray());
|
||||
|
||||
unpacked = TestUnpackedTypesLite.ParseFrom(packed.ToByteArray());
|
||||
|
||||
|
|
|
@ -35,31 +35,28 @@
|
|||
#endregion
|
||||
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using Google.ProtocolBuffers;
|
||||
using Google.ProtocolBuffers.TestProtos;
|
||||
using Microsoft.VisualStudio.TestTools.UnitTesting;
|
||||
using Xunit;
|
||||
|
||||
namespace Google.ProtocolBuffers
|
||||
{
|
||||
[TestClass]
|
||||
public class InteropLiteTest
|
||||
{
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void TestConvertFromFullMinimal()
|
||||
{
|
||||
TestInteropPerson person = TestInteropPerson.CreateBuilder()
|
||||
.SetId(123)
|
||||
.SetName("abc")
|
||||
.Build();
|
||||
Assert.IsTrue(person.IsInitialized);
|
||||
Assert.True(person.IsInitialized);
|
||||
|
||||
TestInteropPersonLite copy = TestInteropPersonLite.ParseFrom(person.ToByteArray());
|
||||
|
||||
TestUtil.AssertBytesEqual(person.ToByteArray(), copy.ToByteArray());
|
||||
Assert.Equal(person.ToByteArray(), copy.ToByteArray());
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void TestConvertFromFullComplete()
|
||||
{
|
||||
TestInteropPerson person = TestInteropPerson.CreateBuilder()
|
||||
|
@ -75,7 +72,7 @@ namespace Google.ProtocolBuffers
|
|||
.SetExtension(UnittestExtrasFull.EmployeeId,
|
||||
TestInteropEmployeeId.CreateBuilder().SetNumber("123").Build())
|
||||
.Build();
|
||||
Assert.IsTrue(person.IsInitialized);
|
||||
Assert.True(person.IsInitialized);
|
||||
|
||||
ExtensionRegistry registry = ExtensionRegistry.CreateInstance();
|
||||
UnittestExtrasLite.RegisterAllExtensions(registry);
|
||||
|
@ -84,24 +81,24 @@ namespace Google.ProtocolBuffers
|
|||
TestInteropPersonLite copy = TestInteropPersonLite.ParseFrom(fullBytes, registry);
|
||||
byte[] liteBytes = copy.ToByteArray();
|
||||
|
||||
TestUtil.AssertBytesEqual(fullBytes, liteBytes);
|
||||
Assert.Equal(fullBytes, liteBytes);
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void TestConvertFromLiteMinimal()
|
||||
{
|
||||
TestInteropPersonLite person = TestInteropPersonLite.CreateBuilder()
|
||||
.SetId(123)
|
||||
.SetName("abc")
|
||||
.Build();
|
||||
Assert.IsTrue(person.IsInitialized);
|
||||
Assert.True(person.IsInitialized);
|
||||
|
||||
TestInteropPerson copy = TestInteropPerson.ParseFrom(person.ToByteArray());
|
||||
|
||||
TestUtil.AssertBytesEqual(person.ToByteArray(), copy.ToByteArray());
|
||||
Assert.Equal(person.ToByteArray(), copy.ToByteArray());
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void TestConvertFromLiteComplete()
|
||||
{
|
||||
TestInteropPersonLite person = TestInteropPersonLite.CreateBuilder()
|
||||
|
@ -117,14 +114,14 @@ namespace Google.ProtocolBuffers
|
|||
.SetExtension(UnittestExtrasLite.EmployeeIdLite,
|
||||
TestInteropEmployeeIdLite.CreateBuilder().SetNumber("123").Build())
|
||||
.Build();
|
||||
Assert.IsTrue(person.IsInitialized);
|
||||
Assert.True(person.IsInitialized);
|
||||
|
||||
ExtensionRegistry registry = ExtensionRegistry.CreateInstance();
|
||||
UnittestExtrasFull.RegisterAllExtensions(registry);
|
||||
|
||||
TestInteropPerson copy = TestInteropPerson.ParseFrom(person.ToByteArray(), registry);
|
||||
|
||||
TestUtil.AssertBytesEqual(person.ToByteArray(), copy.ToByteArray());
|
||||
Assert.Equal(person.ToByteArray(), copy.ToByteArray());
|
||||
}
|
||||
|
||||
public ByteString AllBytes
|
||||
|
@ -138,7 +135,7 @@ namespace Google.ProtocolBuffers
|
|||
}
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void TestCompareStringValues()
|
||||
{
|
||||
TestInteropPersonLite person = TestInteropPersonLite.CreateBuilder()
|
||||
|
@ -156,14 +153,14 @@ namespace Google.ProtocolBuffers
|
|||
.SetExtension(UnittestExtrasLite.EmployeeIdLite,
|
||||
TestInteropEmployeeIdLite.CreateBuilder().SetNumber("123").Build())
|
||||
.Build();
|
||||
Assert.IsTrue(person.IsInitialized);
|
||||
Assert.True(person.IsInitialized);
|
||||
|
||||
ExtensionRegistry registry = ExtensionRegistry.CreateInstance();
|
||||
UnittestExtrasFull.RegisterAllExtensions(registry);
|
||||
|
||||
TestInteropPerson copy = TestInteropPerson.ParseFrom(person.ToByteArray(), registry);
|
||||
|
||||
TestUtil.AssertBytesEqual(person.ToByteArray(), copy.ToByteArray());
|
||||
Assert.Equal(person.ToByteArray(), copy.ToByteArray());
|
||||
|
||||
TestInteropPerson.Builder copyBuilder = TestInteropPerson.CreateBuilder();
|
||||
TextFormat.Merge(
|
||||
|
@ -171,7 +168,7 @@ namespace Google.ProtocolBuffers
|
|||
"[protobuf_unittest_extra.employee_id]"), registry, copyBuilder);
|
||||
|
||||
copy = copyBuilder.Build();
|
||||
TestUtil.AssertBytesEqual(person.ToByteArray(), copy.ToByteArray());
|
||||
Assert.Equal(person.ToByteArray(), copy.ToByteArray());
|
||||
|
||||
string liteText = person.ToString().TrimEnd().Replace("\r", "");
|
||||
string fullText = copy.ToString().TrimEnd().Replace("\r", "");
|
||||
|
@ -179,10 +176,10 @@ namespace Google.ProtocolBuffers
|
|||
liteText = liteText.Replace("[protobuf_unittest_extra.employee_id_lite]",
|
||||
"[protobuf_unittest_extra.employee_id]");
|
||||
//lite version does not indent
|
||||
while (fullText.IndexOf("\n ") >= 0)
|
||||
while (fullText.IndexOf("\n ", StringComparison.Ordinal) >= 0)
|
||||
fullText = fullText.Replace("\n ", "\n");
|
||||
|
||||
Assert.AreEqual(fullText, liteText);
|
||||
Assert.Equal(fullText, liteText);
|
||||
}
|
||||
}
|
||||
}
|
|
@ -34,12 +34,8 @@
|
|||
|
||||
#endregion
|
||||
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.IO;
|
||||
using Google.ProtocolBuffers.Descriptors;
|
||||
using Google.ProtocolBuffers.TestProtos;
|
||||
using Microsoft.VisualStudio.TestTools.UnitTesting;
|
||||
using Xunit;
|
||||
|
||||
namespace Google.ProtocolBuffers
|
||||
{
|
||||
|
@ -47,10 +43,9 @@ namespace Google.ProtocolBuffers
|
|||
/// Miscellaneous tests for message operations that apply to both
|
||||
/// generated and dynamic messages.
|
||||
/// </summary>
|
||||
[TestClass]
|
||||
public class LiteTest
|
||||
{
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void TestLite()
|
||||
{
|
||||
// Since lite messages are a subset of regular messages, we can mostly
|
||||
|
@ -73,13 +68,13 @@ namespace Google.ProtocolBuffers
|
|||
|
||||
TestAllTypesLite message2 = TestAllTypesLite.ParseFrom(data);
|
||||
|
||||
Assert.AreEqual(123, message2.OptionalInt32);
|
||||
Assert.AreEqual(1, message2.RepeatedStringCount);
|
||||
Assert.AreEqual("hello", message2.RepeatedStringList[0]);
|
||||
Assert.AreEqual(7, message2.OptionalNestedMessage.Bb);
|
||||
Assert.Equal(123, message2.OptionalInt32);
|
||||
Assert.Equal(1, message2.RepeatedStringCount);
|
||||
Assert.Equal("hello", message2.RepeatedStringList[0]);
|
||||
Assert.Equal(7, message2.OptionalNestedMessage.Bb);
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void TestLiteExtensions()
|
||||
{
|
||||
// TODO(kenton): Unlike other features of the lite library, extensions are
|
||||
|
@ -101,17 +96,17 @@ namespace Google.ProtocolBuffers
|
|||
// writing, parsing hasn't been implemented yet.
|
||||
TestAllExtensionsLite message2 = message.ToBuilder().Build();
|
||||
|
||||
Assert.AreEqual(123, (int) message2.GetExtension(
|
||||
Assert.Equal(123, (int) message2.GetExtension(
|
||||
UnittestLite.OptionalInt32ExtensionLite));
|
||||
Assert.AreEqual(1, message2.GetExtensionCount(
|
||||
Assert.Equal(1, message2.GetExtensionCount(
|
||||
UnittestLite.RepeatedStringExtensionLite));
|
||||
Assert.AreEqual(1, message2.GetExtension(
|
||||
Assert.Equal(1, message2.GetExtension(
|
||||
UnittestLite.RepeatedStringExtensionLite).Count);
|
||||
Assert.AreEqual("hello", message2.GetExtension(
|
||||
Assert.Equal("hello", message2.GetExtension(
|
||||
UnittestLite.RepeatedStringExtensionLite, 0));
|
||||
Assert.AreEqual(TestAllTypesLite.Types.NestedEnum.BAZ, message2.GetExtension(
|
||||
Assert.Equal(TestAllTypesLite.Types.NestedEnum.BAZ, message2.GetExtension(
|
||||
UnittestLite.OptionalNestedEnumExtensionLite));
|
||||
Assert.AreEqual(7, message2.GetExtension(
|
||||
Assert.Equal(7, message2.GetExtension(
|
||||
UnittestLite.OptionalNestedMessageExtensionLite).Bb);
|
||||
}
|
||||
}
|
||||
|
|
|
@ -34,17 +34,14 @@
|
|||
|
||||
#endregion
|
||||
|
||||
using System.IO;
|
||||
using Microsoft.VisualStudio.TestTools.UnitTesting;
|
||||
using System.Collections.Generic;
|
||||
using Google.ProtocolBuffers.TestProtos;
|
||||
using Xunit;
|
||||
|
||||
namespace Google.ProtocolBuffers
|
||||
{
|
||||
[TestClass]
|
||||
public class MissingFieldAndExtensionTest
|
||||
{
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void TestRecoverMissingExtensions()
|
||||
{
|
||||
const int optionalInt32 = 12345678;
|
||||
|
@ -55,42 +52,42 @@ namespace Google.ProtocolBuffers
|
|||
builder.AddExtension(Unittest.RepeatedDoubleExtension, 1.3);
|
||||
TestAllExtensions msg = builder.Build();
|
||||
|
||||
Assert.IsTrue(msg.HasExtension(Unittest.OptionalInt32Extension));
|
||||
Assert.AreEqual(3, msg.GetExtensionCount(Unittest.RepeatedDoubleExtension));
|
||||
Assert.True(msg.HasExtension(Unittest.OptionalInt32Extension));
|
||||
Assert.Equal(3, msg.GetExtensionCount(Unittest.RepeatedDoubleExtension));
|
||||
|
||||
byte[] bits = msg.ToByteArray();
|
||||
TestAllExtensions copy = TestAllExtensions.ParseFrom(bits);
|
||||
Assert.IsFalse(copy.HasExtension(Unittest.OptionalInt32Extension));
|
||||
Assert.AreEqual(0, copy.GetExtensionCount(Unittest.RepeatedDoubleExtension));
|
||||
Assert.AreNotEqual(msg, copy);
|
||||
Assert.False(copy.HasExtension(Unittest.OptionalInt32Extension));
|
||||
Assert.Equal(0, copy.GetExtensionCount(Unittest.RepeatedDoubleExtension));
|
||||
Assert.NotEqual(msg, copy);
|
||||
|
||||
//Even though copy does not understand the typees they serialize correctly
|
||||
byte[] copybits = copy.ToByteArray();
|
||||
TestUtil.AssertBytesEqual(bits, copybits);
|
||||
Assert.Equal(bits, copybits);
|
||||
|
||||
ExtensionRegistry registry = ExtensionRegistry.CreateInstance();
|
||||
Unittest.RegisterAllExtensions(registry);
|
||||
|
||||
//Now we can take those copy bits and restore the full message with extensions
|
||||
copy = TestAllExtensions.ParseFrom(copybits, registry);
|
||||
Assert.IsTrue(copy.HasExtension(Unittest.OptionalInt32Extension));
|
||||
Assert.AreEqual(3, copy.GetExtensionCount(Unittest.RepeatedDoubleExtension));
|
||||
Assert.True(copy.HasExtension(Unittest.OptionalInt32Extension));
|
||||
Assert.Equal(3, copy.GetExtensionCount(Unittest.RepeatedDoubleExtension));
|
||||
|
||||
Assert.AreEqual(msg, copy);
|
||||
TestUtil.AssertBytesEqual(bits, copy.ToByteArray());
|
||||
Assert.Equal(msg, copy);
|
||||
Assert.Equal(bits, copy.ToByteArray());
|
||||
|
||||
//If we modify the object this should all continue to work as before
|
||||
copybits = copy.ToBuilder().Build().ToByteArray();
|
||||
TestUtil.AssertBytesEqual(bits, copybits);
|
||||
Assert.Equal(bits, copybits);
|
||||
|
||||
//If we replace extension the object this should all continue to work as before
|
||||
copybits = copy.ToBuilder()
|
||||
.SetExtension(Unittest.OptionalInt32Extension, optionalInt32)
|
||||
.Build().ToByteArray();
|
||||
TestUtil.AssertBytesEqual(bits, copybits);
|
||||
Assert.Equal(bits, copybits);
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void TestRecoverMissingFields()
|
||||
{
|
||||
TestMissingFieldsA msga = TestMissingFieldsA.CreateBuilder()
|
||||
|
@ -101,53 +98,53 @@ namespace Google.ProtocolBuffers
|
|||
|
||||
//serialize to type B and verify all fields exist
|
||||
TestMissingFieldsB msgb = TestMissingFieldsB.ParseFrom(msga.ToByteArray());
|
||||
Assert.AreEqual(1001, msgb.Id);
|
||||
Assert.AreEqual("Name", msgb.Name);
|
||||
Assert.IsFalse(msgb.HasWebsite);
|
||||
Assert.AreEqual(1, msgb.UnknownFields.FieldDictionary.Count);
|
||||
Assert.AreEqual("missing@field.value",
|
||||
Assert.Equal(1001, msgb.Id);
|
||||
Assert.Equal("Name", msgb.Name);
|
||||
Assert.False(msgb.HasWebsite);
|
||||
Assert.Equal(1, msgb.UnknownFields.FieldDictionary.Count);
|
||||
Assert.Equal("missing@field.value",
|
||||
msgb.UnknownFields[TestMissingFieldsA.EmailFieldNumber].LengthDelimitedList[0].ToStringUtf8());
|
||||
|
||||
//serializes exactly the same (at least for this simple example)
|
||||
TestUtil.AssertBytesEqual(msga.ToByteArray(), msgb.ToByteArray());
|
||||
Assert.AreEqual(msga, TestMissingFieldsA.ParseFrom(msgb.ToByteArray()));
|
||||
Assert.Equal(msga.ToByteArray(), msgb.ToByteArray());
|
||||
Assert.Equal(msga, TestMissingFieldsA.ParseFrom(msgb.ToByteArray()));
|
||||
|
||||
//now re-create an exact copy of A from serialized B
|
||||
TestMissingFieldsA copya = TestMissingFieldsA.ParseFrom(msgb.ToByteArray());
|
||||
Assert.AreEqual(msga, copya);
|
||||
Assert.AreEqual(1001, copya.Id);
|
||||
Assert.AreEqual("Name", copya.Name);
|
||||
Assert.AreEqual("missing@field.value", copya.Email);
|
||||
Assert.Equal(msga, copya);
|
||||
Assert.Equal(1001, copya.Id);
|
||||
Assert.Equal("Name", copya.Name);
|
||||
Assert.Equal("missing@field.value", copya.Email);
|
||||
|
||||
//Now we modify B... and try again
|
||||
msgb = msgb.ToBuilder().SetWebsite("http://new.missing.field").Build();
|
||||
//Does B still have the missing field?
|
||||
Assert.AreEqual(1, msgb.UnknownFields.FieldDictionary.Count);
|
||||
Assert.Equal(1, msgb.UnknownFields.FieldDictionary.Count);
|
||||
|
||||
//Convert back to A and see if all fields are there?
|
||||
copya = TestMissingFieldsA.ParseFrom(msgb.ToByteArray());
|
||||
Assert.AreNotEqual(msga, copya);
|
||||
Assert.AreEqual(1001, copya.Id);
|
||||
Assert.AreEqual("Name", copya.Name);
|
||||
Assert.AreEqual("missing@field.value", copya.Email);
|
||||
Assert.AreEqual(1, copya.UnknownFields.FieldDictionary.Count);
|
||||
Assert.AreEqual("http://new.missing.field",
|
||||
Assert.NotEqual(msga, copya);
|
||||
Assert.Equal(1001, copya.Id);
|
||||
Assert.Equal("Name", copya.Name);
|
||||
Assert.Equal("missing@field.value", copya.Email);
|
||||
Assert.Equal(1, copya.UnknownFields.FieldDictionary.Count);
|
||||
Assert.Equal("http://new.missing.field",
|
||||
copya.UnknownFields[TestMissingFieldsB.WebsiteFieldNumber].LengthDelimitedList[0].
|
||||
ToStringUtf8());
|
||||
|
||||
//Lastly we can even still trip back to type B and see all fields:
|
||||
TestMissingFieldsB copyb = TestMissingFieldsB.ParseFrom(copya.ToByteArray());
|
||||
Assert.AreEqual(copya.ToByteArray().Length, copyb.ToByteArray().Length); //not exact order.
|
||||
Assert.AreEqual(1001, copyb.Id);
|
||||
Assert.AreEqual("Name", copyb.Name);
|
||||
Assert.AreEqual("http://new.missing.field", copyb.Website);
|
||||
Assert.AreEqual(1, copyb.UnknownFields.FieldDictionary.Count);
|
||||
Assert.AreEqual("missing@field.value",
|
||||
Assert.Equal(copya.ToByteArray().Length, copyb.ToByteArray().Length); //not exact order.
|
||||
Assert.Equal(1001, copyb.Id);
|
||||
Assert.Equal("Name", copyb.Name);
|
||||
Assert.Equal("http://new.missing.field", copyb.Website);
|
||||
Assert.Equal(1, copyb.UnknownFields.FieldDictionary.Count);
|
||||
Assert.Equal("missing@field.value",
|
||||
copyb.UnknownFields[TestMissingFieldsA.EmailFieldNumber].LengthDelimitedList[0].ToStringUtf8
|
||||
());
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void TestRecoverMissingMessage()
|
||||
{
|
||||
TestMissingFieldsA.Types.SubA suba =
|
||||
|
@ -161,52 +158,52 @@ namespace Google.ProtocolBuffers
|
|||
|
||||
//serialize to type B and verify all fields exist
|
||||
TestMissingFieldsB msgb = TestMissingFieldsB.ParseFrom(msga.ToByteArray());
|
||||
Assert.AreEqual(1001, msgb.Id);
|
||||
Assert.AreEqual("Name", msgb.Name);
|
||||
Assert.AreEqual(1, msgb.UnknownFields.FieldDictionary.Count);
|
||||
Assert.AreEqual(suba.ToString(),
|
||||
Assert.Equal(1001, msgb.Id);
|
||||
Assert.Equal("Name", msgb.Name);
|
||||
Assert.Equal(1, msgb.UnknownFields.FieldDictionary.Count);
|
||||
Assert.Equal(suba.ToString(),
|
||||
TestMissingFieldsA.Types.SubA.ParseFrom(
|
||||
msgb.UnknownFields[TestMissingFieldsA.TestAFieldNumber].LengthDelimitedList[0]).ToString
|
||||
());
|
||||
|
||||
//serializes exactly the same (at least for this simple example)
|
||||
TestUtil.AssertBytesEqual(msga.ToByteArray(), msgb.ToByteArray());
|
||||
Assert.AreEqual(msga, TestMissingFieldsA.ParseFrom(msgb.ToByteArray()));
|
||||
Assert.Equal(msga.ToByteArray(), msgb.ToByteArray());
|
||||
Assert.Equal(msga, TestMissingFieldsA.ParseFrom(msgb.ToByteArray()));
|
||||
|
||||
//now re-create an exact copy of A from serialized B
|
||||
TestMissingFieldsA copya = TestMissingFieldsA.ParseFrom(msgb.ToByteArray());
|
||||
Assert.AreEqual(msga, copya);
|
||||
Assert.AreEqual(1001, copya.Id);
|
||||
Assert.AreEqual("Name", copya.Name);
|
||||
Assert.AreEqual(suba, copya.TestA);
|
||||
Assert.Equal(msga, copya);
|
||||
Assert.Equal(1001, copya.Id);
|
||||
Assert.Equal("Name", copya.Name);
|
||||
Assert.Equal(suba, copya.TestA);
|
||||
|
||||
//Now we modify B... and try again
|
||||
TestMissingFieldsB.Types.SubB subb =
|
||||
TestMissingFieldsB.Types.SubB.CreateBuilder().AddValues("test-b").Build();
|
||||
msgb = msgb.ToBuilder().SetTestB(subb).Build();
|
||||
//Does B still have the missing field?
|
||||
Assert.AreEqual(1, msgb.UnknownFields.FieldDictionary.Count);
|
||||
Assert.Equal(1, msgb.UnknownFields.FieldDictionary.Count);
|
||||
|
||||
//Convert back to A and see if all fields are there?
|
||||
copya = TestMissingFieldsA.ParseFrom(msgb.ToByteArray());
|
||||
Assert.AreNotEqual(msga, copya);
|
||||
Assert.AreEqual(1001, copya.Id);
|
||||
Assert.AreEqual("Name", copya.Name);
|
||||
Assert.AreEqual(suba, copya.TestA);
|
||||
Assert.AreEqual(1, copya.UnknownFields.FieldDictionary.Count);
|
||||
TestUtil.AssertBytesEqual(subb.ToByteArray(),
|
||||
Assert.NotEqual(msga, copya);
|
||||
Assert.Equal(1001, copya.Id);
|
||||
Assert.Equal("Name", copya.Name);
|
||||
Assert.Equal(suba, copya.TestA);
|
||||
Assert.Equal(1, copya.UnknownFields.FieldDictionary.Count);
|
||||
Assert.Equal(subb.ToByteArray(),
|
||||
copya.UnknownFields[TestMissingFieldsB.TestBFieldNumber].LengthDelimitedList[0].ToByteArray());
|
||||
|
||||
//Lastly we can even still trip back to type B and see all fields:
|
||||
TestMissingFieldsB copyb = TestMissingFieldsB.ParseFrom(copya.ToByteArray());
|
||||
Assert.AreEqual(copya.ToByteArray().Length, copyb.ToByteArray().Length); //not exact order.
|
||||
Assert.AreEqual(1001, copyb.Id);
|
||||
Assert.AreEqual("Name", copyb.Name);
|
||||
Assert.AreEqual(subb, copyb.TestB);
|
||||
Assert.AreEqual(1, copyb.UnknownFields.FieldDictionary.Count);
|
||||
Assert.Equal(copya.ToByteArray().Length, copyb.ToByteArray().Length); //not exact order.
|
||||
Assert.Equal(1001, copyb.Id);
|
||||
Assert.Equal("Name", copyb.Name);
|
||||
Assert.Equal(subb, copyb.TestB);
|
||||
Assert.Equal(1, copyb.UnknownFields.FieldDictionary.Count);
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void TestRestoreFromOtherType()
|
||||
{
|
||||
TestInteropPerson person = TestInteropPerson.CreateBuilder()
|
||||
|
@ -222,19 +219,19 @@ namespace Google.ProtocolBuffers
|
|||
.SetExtension(UnittestExtrasFull.EmployeeId,
|
||||
TestInteropEmployeeId.CreateBuilder().SetNumber("123").Build())
|
||||
.Build();
|
||||
Assert.IsTrue(person.IsInitialized);
|
||||
Assert.True(person.IsInitialized);
|
||||
|
||||
TestEmptyMessage temp = TestEmptyMessage.ParseFrom(person.ToByteArray());
|
||||
Assert.AreEqual(7, temp.UnknownFields.FieldDictionary.Count);
|
||||
Assert.Equal(7, temp.UnknownFields.FieldDictionary.Count);
|
||||
temp = temp.ToBuilder().Build();
|
||||
Assert.AreEqual(7, temp.UnknownFields.FieldDictionary.Count);
|
||||
Assert.Equal(7, temp.UnknownFields.FieldDictionary.Count);
|
||||
|
||||
ExtensionRegistry registry = ExtensionRegistry.CreateInstance();
|
||||
UnittestExtrasFull.RegisterAllExtensions(registry);
|
||||
|
||||
TestInteropPerson copy = TestInteropPerson.ParseFrom(temp.ToByteArray(), registry);
|
||||
Assert.AreEqual(person, copy);
|
||||
TestUtil.AssertBytesEqual(person.ToByteArray(), copy.ToByteArray());
|
||||
Assert.Equal(person, copy);
|
||||
Assert.Equal(person.ToByteArray(), copy.ToByteArray());
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,9 +1,8 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<Import Project="..\packages\xunit.runner.visualstudio.2.0.0\build\net20\xunit.runner.visualstudio.props" Condition="Exists('..\packages\xunit.runner.visualstudio.2.0.0\build\net20\xunit.runner.visualstudio.props')" />
|
||||
<Import Project="..\packages\xunit.core.2.0.0\build\portable-net45+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS\xunit.core.props" Condition="Exists('..\packages\xunit.core.2.0.0\build\portable-net45+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS\xunit.core.props')" />
|
||||
<PropertyGroup>
|
||||
<EnvironmentFlavor>CLIENTPROFILE</EnvironmentFlavor>
|
||||
<EnvironmentTemplate>NET35</EnvironmentTemplate>
|
||||
<EnvironmentProjectType>TEST</EnvironmentProjectType>
|
||||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
||||
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
||||
<ProductVersion>9.0.30729</ProductVersion>
|
||||
|
@ -13,12 +12,13 @@
|
|||
<AppDesignerFolder>Properties</AppDesignerFolder>
|
||||
<RootNamespace>Google.ProtocolBuffers</RootNamespace>
|
||||
<AssemblyName>Google.ProtocolBuffersLite.Test</AssemblyName>
|
||||
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
|
||||
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
|
||||
<FileAlignment>512</FileAlignment>
|
||||
<SignAssembly>true</SignAssembly>
|
||||
<AssemblyOriginatorKeyFile>..\..\keys\Google.ProtocolBuffers.snk</AssemblyOriginatorKeyFile>
|
||||
<OldToolsVersion>3.5</OldToolsVersion>
|
||||
<TargetFrameworkProfile>Client</TargetFrameworkProfile>
|
||||
<TargetFrameworkProfile>
|
||||
</TargetFrameworkProfile>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
|
@ -32,6 +32,7 @@
|
|||
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
|
||||
<NoStdLib>true</NoStdLib>
|
||||
<GenerateSerializationAssemblies>Off</GenerateSerializationAssemblies>
|
||||
<Prefer32Bit>false</Prefer32Bit>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
||||
<DebugType>pdbonly</DebugType>
|
||||
|
@ -44,32 +45,23 @@
|
|||
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
|
||||
<NoStdLib>true</NoStdLib>
|
||||
<GenerateSerializationAssemblies>Off</GenerateSerializationAssemblies>
|
||||
<Prefer32Bit>false</Prefer32Bit>
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<Reference Include="mscorlib" />
|
||||
<Reference Include="System" />
|
||||
<Reference Include="System.Xml" />
|
||||
</ItemGroup>
|
||||
<ItemGroup Condition=" '$(EnvironmentFlavor)' == 'CLIENTPROFILE' ">
|
||||
<Reference Include="nunit.framework">
|
||||
<SpecificVersion>False</SpecificVersion>
|
||||
<HintPath>..\..\lib\NUnit\lib\nunit.framework.dll</HintPath>
|
||||
<Reference Include="xunit.abstractions">
|
||||
<HintPath>..\packages\xunit.abstractions.2.0.0\lib\net35\xunit.abstractions.dll</HintPath>
|
||||
</Reference>
|
||||
</ItemGroup>
|
||||
<ItemGroup Condition=" '$(EnvironmentFlavor)' != 'CLIENTPROFILE' ">
|
||||
<Reference Include="Microsoft.Silverlight.Testing, Version=2.0.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
|
||||
<SpecificVersion>False</SpecificVersion>
|
||||
<HintPath>..\..\lib\Microsoft.Silverlight.Testing\April2010\Microsoft.Silverlight.Testing.dll</HintPath>
|
||||
<Reference Include="xunit.assert">
|
||||
<HintPath>..\packages\xunit.assert.2.0.0\lib\portable-net45+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS\xunit.assert.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="Microsoft.VisualStudio.QualityTools.UnitTesting.Silverlight, Version=2.0.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
|
||||
<SpecificVersion>False</SpecificVersion>
|
||||
<HintPath>..\..\lib\Microsoft.Silverlight.Testing\April2010\Microsoft.VisualStudio.QualityTools.UnitTesting.Silverlight.dll</HintPath>
|
||||
<Reference Include="xunit.core">
|
||||
<HintPath>..\packages\xunit.extensibility.core.2.0.0\lib\portable-net45+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS\xunit.core.dll</HintPath>
|
||||
</Reference>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Compile Include="..\..\lib\NUnit-config\Microsoft.VisualStudio.TestTools.cs">
|
||||
<Link>Microsoft.VisualStudio.TestTools.cs</Link>
|
||||
</Compile>
|
||||
<Compile Include="..\ProtocolBuffers.Test\Properties\AssemblyInfo.cs">
|
||||
<Link>Properties\AssemblyInfo.cs</Link>
|
||||
</Compile>
|
||||
|
@ -83,7 +75,6 @@
|
|||
<Compile Include="TestProtos\UnittestImportLite.cs" />
|
||||
<Compile Include="TestProtos\UnittestImportPublicLite.cs" />
|
||||
<Compile Include="TestProtos\UnittestLite.cs" />
|
||||
<Compile Include="TestUtil.cs" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\ProtocolBuffers.Serialization\ProtocolBuffersLite.Serialization.csproj">
|
||||
|
@ -96,7 +87,9 @@
|
|||
<Private>True</Private>
|
||||
</ProjectReference>
|
||||
</ItemGroup>
|
||||
<ItemGroup />
|
||||
<ItemGroup>
|
||||
<Service Include="{82A7F48D-3B50-4B1E-B82E-3ADA8210C358}" />
|
||||
</ItemGroup>
|
||||
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
||||
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
|
||||
Other similar extension points exist, see Microsoft.Common.targets.
|
||||
|
@ -105,10 +98,11 @@
|
|||
<Target Name="AfterBuild">
|
||||
</Target>
|
||||
-->
|
||||
<PropertyGroup Condition=" '$(EnvironmentFlavor)' == 'CLIENTPROFILE' ">
|
||||
<StartAction>Program</StartAction>
|
||||
<StartProgram>$(ProjectDir)..\..\lib\NUnit\tools\nunit-console.exe</StartProgram>
|
||||
<StartArguments>/nologo /noshadow /labels /wait $(AssemblyName).dll</StartArguments>
|
||||
<StartWorkingDirectory>$(ProjectDir)$(OutputPath)</StartWorkingDirectory>
|
||||
</PropertyGroup>
|
||||
<Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
|
||||
<PropertyGroup>
|
||||
<ErrorText>This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.</ErrorText>
|
||||
</PropertyGroup>
|
||||
<Error Condition="!Exists('..\packages\xunit.core.2.0.0\build\portable-net45+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS\xunit.core.props')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\xunit.core.2.0.0\build\portable-net45+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS\xunit.core.props'))" />
|
||||
<Error Condition="!Exists('..\packages\xunit.runner.visualstudio.2.0.0\build\net20\xunit.runner.visualstudio.props')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\xunit.runner.visualstudio.2.0.0\build\net20\xunit.runner.visualstudio.props'))" />
|
||||
</Target>
|
||||
</Project>
|
|
@ -1,9 +1,8 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<Import Project="..\packages\xunit.runner.visualstudio.2.0.0\build\net20\xunit.runner.visualstudio.props" Condition="Exists('..\packages\xunit.runner.visualstudio.2.0.0\build\net20\xunit.runner.visualstudio.props')" />
|
||||
<Import Project="..\packages\xunit.core.2.0.0\build\portable-net45+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS\xunit.core.props" Condition="Exists('..\packages\xunit.core.2.0.0\build\portable-net45+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS\xunit.core.props')" />
|
||||
<PropertyGroup>
|
||||
<EnvironmentFlavor>CLIENTPROFILE</EnvironmentFlavor>
|
||||
<EnvironmentTemplate>NET35</EnvironmentTemplate>
|
||||
<EnvironmentProjectType>TEST</EnvironmentProjectType>
|
||||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
||||
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
||||
<ProductVersion>9.0.30729</ProductVersion>
|
||||
|
@ -13,12 +12,13 @@
|
|||
<AppDesignerFolder>Properties</AppDesignerFolder>
|
||||
<RootNamespace>Google.ProtocolBuffers</RootNamespace>
|
||||
<AssemblyName>Google.ProtocolBuffersMixedLite.Test</AssemblyName>
|
||||
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
|
||||
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
|
||||
<FileAlignment>512</FileAlignment>
|
||||
<SignAssembly>true</SignAssembly>
|
||||
<AssemblyOriginatorKeyFile>..\..\keys\Google.ProtocolBuffers.snk</AssemblyOriginatorKeyFile>
|
||||
<OldToolsVersion>3.5</OldToolsVersion>
|
||||
<TargetFrameworkProfile>Client</TargetFrameworkProfile>
|
||||
<TargetFrameworkProfile>
|
||||
</TargetFrameworkProfile>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
|
@ -32,6 +32,7 @@
|
|||
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
|
||||
<NoStdLib>true</NoStdLib>
|
||||
<GenerateSerializationAssemblies>Off</GenerateSerializationAssemblies>
|
||||
<Prefer32Bit>false</Prefer32Bit>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
||||
<DebugType>pdbonly</DebugType>
|
||||
|
@ -44,32 +45,23 @@
|
|||
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
|
||||
<NoStdLib>true</NoStdLib>
|
||||
<GenerateSerializationAssemblies>Off</GenerateSerializationAssemblies>
|
||||
<Prefer32Bit>false</Prefer32Bit>
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<Reference Include="mscorlib" />
|
||||
<Reference Include="System" />
|
||||
<Reference Include="System.Xml" />
|
||||
</ItemGroup>
|
||||
<ItemGroup Condition=" '$(EnvironmentFlavor)' == 'CLIENTPROFILE' ">
|
||||
<Reference Include="nunit.framework">
|
||||
<SpecificVersion>False</SpecificVersion>
|
||||
<HintPath>..\..\lib\NUnit\lib\nunit.framework.dll</HintPath>
|
||||
<Reference Include="xunit.abstractions">
|
||||
<HintPath>..\packages\xunit.abstractions.2.0.0\lib\net35\xunit.abstractions.dll</HintPath>
|
||||
</Reference>
|
||||
</ItemGroup>
|
||||
<ItemGroup Condition=" '$(EnvironmentFlavor)' != 'CLIENTPROFILE' ">
|
||||
<Reference Include="Microsoft.Silverlight.Testing, Version=2.0.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
|
||||
<SpecificVersion>False</SpecificVersion>
|
||||
<HintPath>..\..\lib\Microsoft.Silverlight.Testing\April2010\Microsoft.Silverlight.Testing.dll</HintPath>
|
||||
<Reference Include="xunit.assert">
|
||||
<HintPath>..\packages\xunit.assert.2.0.0\lib\portable-net45+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS\xunit.assert.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="Microsoft.VisualStudio.QualityTools.UnitTesting.Silverlight, Version=2.0.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
|
||||
<SpecificVersion>False</SpecificVersion>
|
||||
<HintPath>..\..\lib\Microsoft.Silverlight.Testing\April2010\Microsoft.VisualStudio.QualityTools.UnitTesting.Silverlight.dll</HintPath>
|
||||
<Reference Include="xunit.core">
|
||||
<HintPath>..\packages\xunit.extensibility.core.2.0.0\lib\portable-net45+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS\xunit.core.dll</HintPath>
|
||||
</Reference>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Compile Include="..\..\lib\NUnit-config\Microsoft.VisualStudio.TestTools.cs">
|
||||
<Link>Microsoft.VisualStudio.TestTools.cs</Link>
|
||||
</Compile>
|
||||
<Compile Include="..\ProtocolBuffers.Test\Properties\AssemblyInfo.cs">
|
||||
<Link>Properties\AssemblyInfo.cs</Link>
|
||||
</Compile>
|
||||
|
@ -90,7 +82,6 @@
|
|||
<Compile Include="TestProtos\UnittestImportPublicLite.cs" />
|
||||
<Compile Include="TestProtos\UnittestLite.cs" />
|
||||
<Compile Include="TestProtos\UnittestLiteImportsNonlite.cs" />
|
||||
<Compile Include="TestUtil.cs" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\ProtocolBuffers\ProtocolBuffers.csproj">
|
||||
|
@ -98,7 +89,9 @@
|
|||
<Name>ProtocolBuffers</Name>
|
||||
</ProjectReference>
|
||||
</ItemGroup>
|
||||
<ItemGroup />
|
||||
<ItemGroup>
|
||||
<Service Include="{82A7F48D-3B50-4B1E-B82E-3ADA8210C358}" />
|
||||
</ItemGroup>
|
||||
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
||||
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
|
||||
Other similar extension points exist, see Microsoft.Common.targets.
|
||||
|
@ -107,10 +100,11 @@
|
|||
<Target Name="AfterBuild">
|
||||
</Target>
|
||||
-->
|
||||
<PropertyGroup Condition=" '$(EnvironmentFlavor)' == 'CLIENTPROFILE' ">
|
||||
<StartAction>Program</StartAction>
|
||||
<StartProgram>$(ProjectDir)..\..\lib\NUnit\tools\nunit-console.exe</StartProgram>
|
||||
<StartArguments>/nologo /noshadow /labels /wait $(AssemblyName).dll</StartArguments>
|
||||
<StartWorkingDirectory>$(ProjectDir)$(OutputPath)</StartWorkingDirectory>
|
||||
</PropertyGroup>
|
||||
<Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
|
||||
<PropertyGroup>
|
||||
<ErrorText>This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.</ErrorText>
|
||||
</PropertyGroup>
|
||||
<Error Condition="!Exists('..\packages\xunit.core.2.0.0\build\portable-net45+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS\xunit.core.props')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\xunit.core.2.0.0\build\portable-net45+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS\xunit.core.props'))" />
|
||||
<Error Condition="!Exists('..\packages\xunit.runner.visualstudio.2.0.0\build\net20\xunit.runner.visualstudio.props')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\xunit.runner.visualstudio.2.0.0\build\net20\xunit.runner.visualstudio.props'))" />
|
||||
</Target>
|
||||
</Project>
|
|
@ -35,67 +35,66 @@
|
|||
#endregion
|
||||
|
||||
using Google.ProtocolBuffers.TestProtos;
|
||||
using Microsoft.VisualStudio.TestTools.UnitTesting;
|
||||
using Xunit;
|
||||
|
||||
namespace Google.ProtocolBuffers
|
||||
{
|
||||
[TestClass]
|
||||
public class TestLiteByApi
|
||||
{
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void TestAllTypesEquality()
|
||||
{
|
||||
TestAllTypesLite msg = TestAllTypesLite.DefaultInstance;
|
||||
TestAllTypesLite copy = msg.ToBuilder().Build();
|
||||
Assert.AreEqual(msg.GetHashCode(), copy.GetHashCode());
|
||||
Assert.IsTrue(msg.Equals(copy));
|
||||
Assert.Equal(msg.GetHashCode(), copy.GetHashCode());
|
||||
Assert.True(msg.Equals(copy));
|
||||
msg = msg.ToBuilder().SetOptionalString("Hi").Build();
|
||||
Assert.AreNotEqual(msg.GetHashCode(), copy.GetHashCode());
|
||||
Assert.IsFalse(msg.Equals(copy));
|
||||
Assert.NotEqual(msg.GetHashCode(), copy.GetHashCode());
|
||||
Assert.False(msg.Equals(copy));
|
||||
copy = copy.ToBuilder().SetOptionalString("Hi").Build();
|
||||
Assert.AreEqual(msg.GetHashCode(), copy.GetHashCode());
|
||||
Assert.IsTrue(msg.Equals(copy));
|
||||
Assert.Equal(msg.GetHashCode(), copy.GetHashCode());
|
||||
Assert.True(msg.Equals(copy));
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void TestEqualityOnExtensions()
|
||||
{
|
||||
TestAllExtensionsLite msg = TestAllExtensionsLite.DefaultInstance;
|
||||
TestAllExtensionsLite copy = msg.ToBuilder().Build();
|
||||
Assert.AreEqual(msg.GetHashCode(), copy.GetHashCode());
|
||||
Assert.IsTrue(msg.Equals(copy));
|
||||
Assert.Equal(msg.GetHashCode(), copy.GetHashCode());
|
||||
Assert.True(msg.Equals(copy));
|
||||
msg = msg.ToBuilder().SetExtension(UnittestLite.OptionalStringExtensionLite, "Hi").Build();
|
||||
Assert.AreNotEqual(msg.GetHashCode(), copy.GetHashCode());
|
||||
Assert.IsFalse(msg.Equals(copy));
|
||||
Assert.NotEqual(msg.GetHashCode(), copy.GetHashCode());
|
||||
Assert.False(msg.Equals(copy));
|
||||
copy = copy.ToBuilder().SetExtension(UnittestLite.OptionalStringExtensionLite, "Hi").Build();
|
||||
Assert.AreEqual(msg.GetHashCode(), copy.GetHashCode());
|
||||
Assert.IsTrue(msg.Equals(copy));
|
||||
Assert.Equal(msg.GetHashCode(), copy.GetHashCode());
|
||||
Assert.True(msg.Equals(copy));
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void TestAllTypesToString()
|
||||
{
|
||||
TestAllTypesLite msg = TestAllTypesLite.DefaultInstance;
|
||||
TestAllTypesLite copy = msg.ToBuilder().Build();
|
||||
Assert.AreEqual(msg.ToString(), copy.ToString());
|
||||
Assert.AreEqual(0, msg.ToString().Length);
|
||||
Assert.Equal(msg.ToString(), copy.ToString());
|
||||
Assert.Equal(0, msg.ToString().Length);
|
||||
msg = msg.ToBuilder().SetOptionalInt32(-1).Build();
|
||||
Assert.AreEqual("optional_int32: -1", msg.ToString().TrimEnd());
|
||||
Assert.Equal("optional_int32: -1", msg.ToString().TrimEnd());
|
||||
msg = msg.ToBuilder().SetOptionalString("abc123").Build();
|
||||
Assert.AreEqual("optional_int32: -1\noptional_string: \"abc123\"",
|
||||
Assert.Equal("optional_int32: -1\noptional_string: \"abc123\"",
|
||||
msg.ToString().Replace("\r", "").TrimEnd());
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void TestAllTypesDefaultedRoundTrip()
|
||||
{
|
||||
TestAllTypesLite msg = TestAllTypesLite.DefaultInstance;
|
||||
Assert.IsTrue(msg.IsInitialized);
|
||||
Assert.True(msg.IsInitialized);
|
||||
TestAllTypesLite copy = TestAllTypesLite.CreateBuilder().MergeFrom(msg.ToByteArray()).Build();
|
||||
TestUtil.AssertBytesEqual(msg.ToByteArray(), copy.ToByteArray());
|
||||
Assert.Equal(msg.ToByteArray(), copy.ToByteArray());
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[Fact]
|
||||
public void TestAllTypesModifiedRoundTrip()
|
||||
{
|
||||
TestAllTypesLite msg = TestAllTypesLite.DefaultInstance;
|
||||
|
@ -115,7 +114,7 @@ namespace Google.ProtocolBuffers
|
|||
.AddRepeatedGroup(TestAllTypesLite.Types.RepeatedGroup.CreateBuilder().SetA('A').Build())
|
||||
;
|
||||
TestAllTypesLite copy = TestAllTypesLite.CreateBuilder().MergeFrom(msg.ToByteArray()).Build();
|
||||
TestUtil.AssertBytesEqual(msg.ToByteArray(), copy.ToByteArray());
|
||||
Assert.Equal(msg.ToByteArray(), copy.ToByteArray());
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,31 +0,0 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
using Microsoft.VisualStudio.TestTools.UnitTesting;
|
||||
|
||||
namespace Google.ProtocolBuffers
|
||||
{
|
||||
class TestUtil
|
||||
{
|
||||
internal static void AssertBytesEqual(byte[] a, byte[] b)
|
||||
{
|
||||
if (a == null || b == null)
|
||||
{
|
||||
Assert.AreEqual<object>(a, b);
|
||||
}
|
||||
else
|
||||
{
|
||||
Assert.AreEqual(a.Length, b.Length, "The byte[] is not of the expected length.");
|
||||
|
||||
for (int i = 0; i < a.Length; i++)
|
||||
{
|
||||
if (a[i] != b[i])
|
||||
{
|
||||
Assert.AreEqual(a[i], b[i], "Byte[] differs at index " + i);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
}
|
9
csharp/src/ProtocolBuffersLite.Test/packages.config
Normal file
9
csharp/src/ProtocolBuffersLite.Test/packages.config
Normal file
|
@ -0,0 +1,9 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<packages>
|
||||
<package id="xunit" version="2.0.0" targetFramework="net45" />
|
||||
<package id="xunit.abstractions" version="2.0.0" targetFramework="net45" />
|
||||
<package id="xunit.assert" version="2.0.0" targetFramework="net45" />
|
||||
<package id="xunit.core" version="2.0.0" targetFramework="net45" />
|
||||
<package id="xunit.extensibility.core" version="2.0.0" targetFramework="net45" />
|
||||
<package id="xunit.runner.visualstudio" version="2.0.0" targetFramework="net45" />
|
||||
</packages>
|
5
csharp/src/packages/repositories.config
Normal file
5
csharp/src/packages/repositories.config
Normal file
|
@ -0,0 +1,5 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<repositories>
|
||||
<repository path="..\ProtocolBuffers.Test\packages.config" />
|
||||
<repository path="..\ProtocolBuffersLite.Test\packages.config" />
|
||||
</repositories>
|
Loading…
Add table
Reference in a new issue