-
Notifications
You must be signed in to change notification settings - Fork 49
Expand file tree
/
Copy pathAPIApprovals.cs
More file actions
95 lines (84 loc) · 3.33 KB
/
APIApprovals.cs
File metadata and controls
95 lines (84 loc) · 3.33 KB
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
namespace Particular.LicensingComponent.UnitTests.API
{
using System;
using System.Collections.Generic;
using System.Linq;
using System.Reflection;
using System.Text;
using Microsoft.AspNetCore.Mvc;
using Microsoft.AspNetCore.Mvc.Routing;
using NUnit.Framework;
using Particular.Approvals;
[TestFixture]
class APIApprovals
{
[Test]
public void HttpApiRoutes()
{
var httpApiMethods = GetControllerRoutes()
.Select(pair =>
{
(MethodInfo method, RouteAttribute route) = pair;
var type = method.DeclaringType;
var httpMethods = method.GetCustomAttributes(true)
.OfType<IActionHttpMethodProvider>()
.SelectMany(att => att.HttpMethods.Select(m => m))
.Distinct()
.OrderBy(httpMethod => httpMethod)
.ToArray();
if (!httpMethods.Any())
{
throw new Exception($"Method {type.FullName}:{method.Name} has Route attribute but no method attribute like HttpGet.");
}
var parametersString = string.Join(", ", method.GetParameters().Select(p => $"{PrettyTypeName(p.ParameterType)} {p.Name}"));
var methodSignature = $"{type.FullName}:{method.Name}({parametersString})";
return new
{
MethodSignature = methodSignature,
HttpMethods = string.Join('/', httpMethods),
Route = route.Template
};
})
.OrderBy(x => x.Route).ThenBy(x => x.HttpMethods)
.ToArray();
var builder = new StringBuilder();
foreach (var item in httpApiMethods)
{
builder.AppendLine($"{item.HttpMethods} /{item.Route} => {item.MethodSignature}");
}
var httpApi = builder.ToString();
Console.Write(httpApi);
Approver.Verify(httpApi);
}
IEnumerable<(MethodInfo Method, RouteAttribute Route)> GetControllerRoutes()
{
var controllers = typeof(ThroughputCollector).Assembly.GetTypes()
.Where(t => typeof(ControllerBase).IsAssignableFrom(t));
foreach (var type in controllers)
{
foreach (var method in type.GetMethods())
{
var routeAtts = method.GetCustomAttributes(true).OfType<RouteAttribute>();
foreach (var routeAtt in routeAtts)
{
yield return (method, routeAtt);
}
}
}
}
static string PrettyTypeName(Type t)
{
if (t.IsArray)
{
return PrettyTypeName(t.GetElementType()) + "[]";
}
if (t.IsGenericType)
{
return string.Format("{0}<{1}>",
t.Name.Substring(0, t.Name.LastIndexOf("`", StringComparison.InvariantCulture)),
string.Join(", ", t.GetGenericArguments().Select(PrettyTypeName)));
}
return t.Name;
}
}
}