aboutsummaryrefslogtreecommitdiff
path: root/tests/Jellyfin.Model.Tests/Dlna/StreamInfoTests.cs
blob: 86819de8c0efcef69e6fdb8795598b2ac083c6c8 (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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
using System;
using System.Collections.Generic;
using System.Text;
using MediaBrowser.Model.Dlna;
using Xunit;

namespace Jellyfin.Model.Tests.Dlna;

public class StreamInfoTests
{
    private const string BaseUrl = "/test/";
    private const int RandomSeed = 298347823;

    /// <summary>
    /// Returns a random float.
    /// </summary>
    /// <param name="random">The <see cref="Random"/> instance.</param>
    /// <returns>A random <see cref="float"/>.</returns>
    private static float RandomFloat(Random random)
    {
        var buffer = new byte[4];
        random.NextBytes(buffer);
        return BitConverter.ToSingle(buffer, 0);
    }

    /// <summary>
    /// Creates a random array.
    /// </summary>
    /// <param name="random">The <see cref="Random"/> instance.</param>
    /// <param name="elementType">The element <see cref="Type"/> of the array.</param>
    /// <returns>An <see cref="Array"/> of <see cref="Type"/>.</returns>
    private static object? RandomArray(Random random, Type? elementType)
    {
        if (elementType == null)
        {
            return null;
        }

        if (elementType == typeof(string))
        {
            return RandomStringArray(random);
        }

        if (elementType == typeof(int))
        {
            return RandomIntArray(random);
        }

        if (elementType.IsEnum)
        {
            var values = Enum.GetValues(elementType);
            return RandomIntArray(random, 0, values.Length - 1);
        }

        throw new ArgumentException("Unsupported array type " + elementType.ToString());
    }

    /// <summary>
    /// Creates a random length string.
    /// </summary>
    /// <param name="random">The <see cref="Random"/> instance.</param>
    /// <param name="minLength">The minimum length of the string.</param>
    /// <param name="maxLength">The maximum length of the string.</param>
    /// <returns>The string.</returns>
    private static string RandomString(Random random, int minLength = 0, int maxLength = 256)
    {
        var len = random.Next(minLength, maxLength);
        var sb = new StringBuilder(len);

        while (len > 0)
        {
            sb.Append((char)random.Next(65, 97));
            len--;
        }

        return sb.ToString();
    }

    /// <summary>
    /// Creates a random long.
    /// </summary>
    /// <param name="random">The <see cref="Random"/> instance.</param>
    /// <param name="min">Min value.</param>
    /// <param name="max">Max value.</param>
    /// <returns>A random <see cref="long"/> between <paramref name="min"/> and <paramref name="max"/>.</returns>
    private static long RandomLong(Random random, long min = -9223372036854775808, long max = 9223372036854775807)
    {
        long result = random.Next((int)(min >> 32), (int)(max >> 32));
        result <<= 32;
        result |= (long)random.Next((int)(min >> 32) << 32, (int)(max >> 32) << 32);
        return result;
    }

    /// <summary>
    /// Creates a random string array containing between <paramref name="minLength"/> and <paramref name="maxLength"/>.
    /// </summary>
    /// <param name="random">The <see cref="Random"/> instance.</param>
    /// <param name="minLength">The minimum number of elements.</param>
    /// <param name="maxLength">The maximum number of elements.</param>
    /// <returns>A random <see cref="string[]"/> instance.</returns>
    private static string[] RandomStringArray(Random random, int minLength = 0, int maxLength = 9)
    {
        var len = random.Next(minLength, maxLength);
        var arr = new List<string>(len);
        while (len > 0)
        {
            arr.Add(RandomString(random, 1, 30));
            len--;
        }

        return arr.ToArray();
    }

    /// <summary>
    /// Creates a random int array containing between <paramref name="minLength"/> and <paramref name="maxLength"/>.
    /// </summary>
    /// <param name="random">The <see cref="Random"/> instance.</param>
    /// <param name="minLength">The minimum number of elements.</param>
    /// <param name="maxLength">The maximum number of elements.</param>
    /// <returns>A random <see cref="int[]"/> instance.</returns>
    private static int[] RandomIntArray(Random random, int minLength = 0, int maxLength = 9)
    {
        var len = random.Next(minLength, maxLength);
        var arr = new List<int>(len);
        while (len > 0)
        {
            arr.Add(random.Next());
            len--;
        }

        return arr.ToArray();
    }

    /// <summary>
    /// Fills most properties with random data.
    /// </summary>
    /// <param name="destination">The instance to fill with data.</param>
    private static void FillAllProperties<T>(T destination)
    {
        var random = new Random(RandomSeed);
        var objectType = destination!.GetType();
        foreach (var property in objectType.GetProperties())
        {
            if (!(property.CanRead && property.CanWrite))
            {
                continue;
            }

            var type = property.PropertyType;
            // If nullable, then set it to null, 25% of the time.
            if (Nullable.GetUnderlyingType(type) != null)
            {
                if (random.Next(0, 4) == 0)
                {
                    // Set it to null.
                    property.SetValue(destination, null);
                    continue;
                }
            }

            if (type == typeof(Guid))
            {
                property.SetValue(destination, Guid.NewGuid());
                continue;
            }

            if (type.IsEnum)
            {
                Array values = Enum.GetValues(property.PropertyType);
                property.SetValue(destination, values.GetValue(random.Next(0, values.Length - 1)));
                continue;
            }

            if (type == typeof(long))
            {
                property.SetValue(destination, RandomLong(random));
                continue;
            }

            if (type == typeof(string))
            {
                property.SetValue(destination, RandomString(random));
                continue;
            }

            if (type == typeof(bool))
            {
                property.SetValue(destination, random.Next(0, 1) == 1);
                continue;
            }

            if (type == typeof(float))
            {
                property.SetValue(destination, RandomFloat(random));
                continue;
            }

            if (type.IsArray)
            {
                property.SetValue(destination, RandomArray(random, type.GetElementType()));
                continue;
            }
        }
    }

    [InlineData(DlnaProfileType.Audio)]
    [InlineData(DlnaProfileType.Video)]
    [InlineData(DlnaProfileType.Photo)]
    [Theory]
    public void Test_Blank_Url_Method(DlnaProfileType type)
    {
        var streamInfo = new LegacyStreamInfo(Guid.Empty, type)
        {
            DeviceProfile = new DeviceProfile()
        };

        string legacyUrl = streamInfo.ToUrl_Original(BaseUrl, "123");

        // New version will return and & after the ? due to optional parameters.
        string newUrl = streamInfo.ToUrl(BaseUrl, "123", null).Replace("?&", "?", StringComparison.OrdinalIgnoreCase);

        Assert.Equal(legacyUrl, newUrl, ignoreCase: true);
    }

    [Fact]
    public void Fuzzy_Comparison()
    {
        var streamInfo = new LegacyStreamInfo(Guid.Empty, DlnaProfileType.Video)
        {
            DeviceProfile = new DeviceProfile()
        };
        for (int i = 0; i < 100000; i++)
        {
            FillAllProperties(streamInfo);
            string legacyUrl = streamInfo.ToUrl_Original(BaseUrl, "123");

            // New version will return and & after the ? due to optional parameters.
            string newUrl = streamInfo.ToUrl(BaseUrl, "123", null).Replace("?&", "?", StringComparison.OrdinalIgnoreCase);

            Assert.Equal(legacyUrl, newUrl, ignoreCase: true);
        }
    }
}