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

OwinExtensionTests.cs « test « Owin « Http « src - github.com/dotnet/aspnetcore.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ca6ea45ba8948d4ceeac192cb54d9527ad659473 (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
// 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.Linq;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Builder;
using Microsoft.AspNetCore.Http;
using Microsoft.Extensions.DependencyInjection;
using Xunit;

namespace Microsoft.AspNetCore.Owin;

using AddMiddleware = Action<Func<
      Func<IDictionary<string, object>, Task>,
      Func<IDictionary<string, object>, Task>
    >>;
using AppFunc = Func<IDictionary<string, object>, Task>;
using CreateMiddleware = Func<
      Func<IDictionary<string, object>, Task>,
      Func<IDictionary<string, object>, Task>
    >;

public class OwinExtensionTests
{
    static readonly AppFunc notFound = env => new Task(() => { env["owin.ResponseStatusCode"] = 404; });

    [Fact]
    public async Task OwinConfigureServiceProviderAddsServices()
    {
        var list = new List<CreateMiddleware>();
        AddMiddleware build = list.Add;
        IServiceProvider serviceProvider = null;
        FakeService fakeService = null;

        var builder = build.UseBuilder(applicationBuilder =>
        {
            serviceProvider = applicationBuilder.ApplicationServices;
            applicationBuilder.Run(context =>
            {
                fakeService = context.RequestServices.GetService<FakeService>();
                return Task.FromResult(0);
            });
        },
        new ServiceCollection().AddSingleton(new FakeService()).BuildServiceProvider());

        list.Reverse();
        await list
            .Aggregate(notFound, (next, middleware) => middleware(next))
            .Invoke(new Dictionary<string, object>());

        Assert.NotNull(serviceProvider);
        Assert.NotNull(serviceProvider.GetService<FakeService>());
        Assert.NotNull(fakeService);
    }

    [Fact]
    public async Task OwinDefaultNoServices()
    {
        var list = new List<CreateMiddleware>();
        AddMiddleware build = list.Add;
        IServiceProvider expectedServiceProvider = new ServiceCollection().BuildServiceProvider();
        IServiceProvider serviceProvider = null;
        FakeService fakeService = null;
        bool builderExecuted = false;
        bool applicationExecuted = false;

        var builder = build.UseBuilder(applicationBuilder =>
        {
            builderExecuted = true;
            serviceProvider = applicationBuilder.ApplicationServices;
            applicationBuilder.Run(context =>
            {
                applicationExecuted = true;
                fakeService = context.RequestServices.GetService<FakeService>();
                return Task.FromResult(0);
            });
        },
        expectedServiceProvider);

        list.Reverse();
        await list
            .Aggregate(notFound, (next, middleware) => middleware(next))
            .Invoke(new Dictionary<string, object>());

        Assert.True(builderExecuted);
        Assert.Equal(expectedServiceProvider, serviceProvider);
        Assert.True(applicationExecuted);
        Assert.Null(fakeService);
    }

    [Fact]
    public async Task OwinDefaultNullServiceProvider()
    {
        var list = new List<CreateMiddleware>();
        AddMiddleware build = list.Add;
        IServiceProvider serviceProvider = null;
        FakeService fakeService = null;
        bool builderExecuted = false;
        bool applicationExecuted = false;

        var builder = build.UseBuilder(applicationBuilder =>
        {
            builderExecuted = true;
            serviceProvider = applicationBuilder.ApplicationServices;
            applicationBuilder.Run(context =>
            {
                applicationExecuted = true;
                fakeService = context.RequestServices.GetService<FakeService>();
                return Task.FromResult(0);
            });
        });

        list.Reverse();
        await list
            .Aggregate(notFound, (next, middleware) => middleware(next))
            .Invoke(new Dictionary<string, object>());

        Assert.True(builderExecuted);
        Assert.NotNull(serviceProvider);
        Assert.True(applicationExecuted);
        Assert.Null(fakeService);
    }

    [Fact]
    public async Task UseOwin()
    {
        var serviceProvider = new ServiceCollection().BuildServiceProvider();
        var builder = new ApplicationBuilder(serviceProvider);
        IDictionary<string, object> environment = null;
        var context = new DefaultHttpContext();

        builder.UseOwin(addToPipeline =>
        {
            addToPipeline(next =>
            {
                Assert.NotNull(next);
                return async env =>
                {
                    environment = env;
                    await next(env);
                };
            });
        });
        await builder.Build().Invoke(context);

        // Dictionary contains context but does not contain "websocket.Accept" or "websocket.AcceptAlt" keys.
        Assert.NotNull(environment);
        var value = Assert.Single(
                environment,
                kvp => string.Equals(typeof(HttpContext).FullName, kvp.Key, StringComparison.Ordinal))
            .Value;
        Assert.Equal(context, value);
        Assert.False(environment.ContainsKey("websocket.Accept"));
        Assert.False(environment.ContainsKey("websocket.AcceptAlt"));
    }

    private class FakeService
    {
    }
}