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

EndpointMetadataCollectionTests.cs « test « Http.Abstractions « Http « src - github.com/dotnet/aspnetcore.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1cc65f79e4062d6c2ea28c207c9a3d9f337bc841 (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
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.

using System;
using System.Collections.Generic;
using System.Text;
using Microsoft.AspNetCore.Http;
using Xunit;

namespace Microsoft.AspNetCore.Routing
{
    public class EndpointMetadataCollectionTests
    {
        [Fact]
        public void Constructor_Enumeration_ContainsValues()
        {
            // Arrange & Act
            var metadata = new EndpointMetadataCollection(new List<object>
            {
                1,
                2,
                3,
            });

            // Assert
            Assert.Equal(3, metadata.Count);

            Assert.Collection(metadata,
                value => Assert.Equal(1, value),
                value => Assert.Equal(2, value),
                value => Assert.Equal(3, value));
        }

        [Fact]
        public void Constructor_ParamsArray_ContainsValues()
        {
            // Arrange & Act
            var metadata = new EndpointMetadataCollection(1, 2, 3);

            // Assert
            Assert.Equal(3, metadata.Count);

            Assert.Collection(metadata,
                value => Assert.Equal(1, value),
                value => Assert.Equal(2, value),
                value => Assert.Equal(3, value));
        }

        [Fact]
        public void GetOrderedMetadata_CanReturnEmptyCollection()
        {
            // Arrange
            var metadata = new EndpointMetadataCollection(1, 2, 3);

            // Act
            var ordered = metadata.GetOrderedMetadata<string>();

            Assert.Same(Array.Empty<string>(), ordered);
        }

        [Fact]
        public void GetOrderedMetadata_CanReturnNonEmptyCollection()
        {
            // Arrange
            var metadata = new EndpointMetadataCollection("1", "2");

            // Act
            var ordered1 = metadata.GetOrderedMetadata<string>();
            var ordered2 = metadata.GetOrderedMetadata<string>();

            Assert.Same(ordered1, ordered2);
            Assert.Equal(new string[] { "1", "2" }, ordered1);
        }
    }
}