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

AsMemory.cs « MemoryMarshal « tests « System.Memory « src - github.com/mono/corefx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 40990d08cbe79dc019993ffd7b74ce8a82fe1fbf (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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.

using System.Buffers;
using System.Collections.Generic;
using System.Runtime.InteropServices;
using Xunit;

namespace System.MemoryTests
{
    public static partial class MemoryMarshalTests
    {
        public static IEnumerable<object[]> ReadOnlyMemoryInt32Instances()
        {
            yield return new object[] { ReadOnlyMemory<int>.Empty };
            yield return new object[] { new ReadOnlyMemory<int>(new int[0]) };
            yield return new object[] { new ReadOnlyMemory<int>(new int[10]) };
            yield return new object[] { new ReadOnlyMemory<int>(new int[10], 1, 3) };
            yield return new object[] { (ReadOnlyMemory<int>)new CustomMemoryForTest<int>(new int[10]).Memory };
        }

        public static IEnumerable<object[]> ReadOnlyMemoryObjectInstances()
        {
            yield return new object[] { ReadOnlyMemory<object>.Empty };
            yield return new object[] { new ReadOnlyMemory<object>(new object[0]) };
            yield return new object[] { new ReadOnlyMemory<object>(new object[10]) };
            yield return new object[] { new ReadOnlyMemory<object>(new object[10], 1, 3) };
            yield return new object[] { (ReadOnlyMemory<object>)new CustomMemoryForTest<object>(new object[10]).Memory };
        }

        public static IEnumerable<object[]> ReadOnlyMemoryCharInstances()
        {
            yield return new object[] { ReadOnlyMemory<char>.Empty };
            yield return new object[] { new ReadOnlyMemory<char>(new char[10], 1, 3) };
            yield return new object[] { (ReadOnlyMemory<char>)new CustomMemoryForTest<char>(new char[10]).Memory };
            yield return new object[] { "12345".AsMemory() };
        }

        [Theory]
        [MemberData(nameof(ReadOnlyMemoryInt32Instances))]
        public static void AsMemory_Roundtrips(ReadOnlyMemory<int> readOnlyMemory) => AsMemory_Roundtrips_Core(readOnlyMemory, true);

        [Theory]
        [MemberData(nameof(ReadOnlyMemoryObjectInstances))]
        public static void AsMemory_Roundtrips(ReadOnlyMemory<object> readOnlyMemory) => AsMemory_Roundtrips_Core(readOnlyMemory, false);

        [Theory]
        [MemberData(nameof(ReadOnlyMemoryCharInstances))]
        public static void AsMemory_Roundtrips(ReadOnlyMemory<char> readOnlyMemory)
        {
            AsMemory_Roundtrips_Core(readOnlyMemory, true);

            Memory<char> memory = MemoryMarshal.AsMemory(readOnlyMemory);
            ReadOnlyMemory<char> readOnlyClone = memory;

            // TryGetString
            bool gotString1 = MemoryMarshal.TryGetString(readOnlyMemory, out string text1, out int start1, out int length1);
            Assert.Equal(gotString1, MemoryMarshal.TryGetString(readOnlyClone, out string text2, out int start2, out int length2));
            Assert.Same(text1, text2);
            Assert.Equal(start1, start2);
            Assert.Equal(length1, length2);
            if (gotString1)
            {
                Assert.False(MemoryMarshal.TryGetArray(memory, out ArraySegment<char> array));
            }
        }

        private static unsafe void AsMemory_Roundtrips_Core<T>(ReadOnlyMemory<T> readOnlyMemory, bool canBePinned)
        {
            Memory<T> memory = MemoryMarshal.AsMemory(readOnlyMemory);
            ReadOnlyMemory<T> readOnlyClone = memory;

            // Equals
            Assert.True(readOnlyMemory.Equals(readOnlyClone));
            Assert.True(readOnlyMemory.Equals((object)readOnlyClone));
            Assert.True(readOnlyMemory.Equals((object)memory));

            // Span
            Assert.True(readOnlyMemory.Span == readOnlyClone.Span);
            Assert.True(readOnlyMemory.Span == memory.Span);

            // TryGetArray
            Assert.True(MemoryMarshal.TryGetArray(readOnlyMemory, out ArraySegment<T> array1)
                            == MemoryMarshal.TryGetArray(memory, out ArraySegment<T> array2));
            Assert.Same(array1.Array, array2.Array);
            Assert.Equal(array1.Offset, array2.Offset);
            Assert.Equal(array1.Count, array2.Count);

            if (canBePinned)
            {
                // Pin
                using (MemoryHandle readOnlyMemoryHandle = readOnlyMemory.Pin())
                using (MemoryHandle readOnlyCloneHandle = readOnlyMemory.Pin())
                using (MemoryHandle memoryHandle = readOnlyMemory.Pin())
                {
                    Assert.Equal((IntPtr)readOnlyMemoryHandle.Pointer, (IntPtr)readOnlyCloneHandle.Pointer);
                    Assert.Equal((IntPtr)readOnlyMemoryHandle.Pointer, (IntPtr)memoryHandle.Pointer);
                }
            }
        }
    }
}