Welcome to mirror list, hosted at ThFree Co, Russian Federation.

StandardClassLibraryFormatterTests.cs « ShareTests « Tests « Scripts « Assets « MessagePack.UnityClient « src - github.com/aspnet/MessagePack-CSharp.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 12abda4417038397f5bd3d188a906bfe0cb5ff98 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
// Copyright (c) All contributors. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.

using System;
using System.Linq;
using Xunit;
using Xunit.Abstractions;

namespace MessagePack.Tests
{
    public class StandardClassLibraryFormatterTests : TestBase
    {
        private readonly ITestOutputHelper logger;

        public StandardClassLibraryFormatterTests(ITestOutputHelper logger)
        {
            this.logger = logger;
        }

        [Fact]
        public void SystemType_Serializable()
        {
            Type type = typeof(string);
            byte[] msgpack = MessagePackSerializer.Serialize(type, MessagePackSerializerOptions.Standard);
            Type type2 = MessagePackSerializer.Deserialize<Type>(msgpack, MessagePackSerializerOptions.Standard);
            Assert.Equal(type, type2);
        }

        [Fact]
        public void SystemType_Serializable_Null()
        {
            Type type = null;
            byte[] msgpack = MessagePackSerializer.Serialize(type, MessagePackSerializerOptions.Standard);
            Type type2 = MessagePackSerializer.Deserialize<Type>(msgpack, MessagePackSerializerOptions.Standard);
            Assert.Equal(type, type2);
        }

        [Fact]
        public void DeserializeByteArrayFromFixArray()
        {
            var input = new byte[] { 0x93, 0x01, 0x02, 0x03 };
            byte[] byte_array = MessagePackSerializer.Deserialize<byte[]>(input);
            Assert.Equal(new byte[] { 1, 2, 3 }, byte_array);
        }

        [Fact]
        public void DeserializeByteArrayFromFixArray_LargerNumbers()
        {
            var input = new byte[] { 0x93, 0x01, 0x02, 0xCC, 0xD4 };
            byte[] byte_array = MessagePackSerializer.Deserialize<byte[]>(input);
            Assert.Equal(new byte[] { 1, 2, 212 }, byte_array);
        }

        [Fact]
        public void DeserializeByteArrayFromFixArray_LargerThanByte()
        {
            var input = new byte[] { 0x93, 0x01, 0x02, 0xCD, 0x08, 0x48 }; // 1, 2, 2120
            var ex = Assert.Throws<MessagePackSerializationException>(() => MessagePackSerializer.Deserialize<byte[]>(input));
            this.logger.WriteLine(ex.ToString());
        }

        [Fact]
        public void DeserializeByteArrayFromFixArray_ZeroLength()
        {
            var input = new byte[] { 0x90 }; // [ ]
            byte[] actual = MessagePackSerializer.Deserialize<byte[]>(input);
            Assert.Empty(actual);

            // Make sure we're optimized to reuse singleton empty arrays.
            Assert.Same(Array.Empty<byte>(), actual);
        }

        [Fact]
        public void DeserializeByteArrayFromFixArray_Array32()
        {
            var input = new byte[] { 0xDD, 0, 0, 0, 3, 1, 2, 3 };
            byte[] byte_array = MessagePackSerializer.Deserialize<byte[]>(input);
            Assert.Equal(new byte[] { 1, 2, 3 }, byte_array);
        }
    }
}