forked from ServiceStack/ServiceStack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTestAppHost.cs
More file actions
94 lines (71 loc) · 3.23 KB
/
TestAppHost.cs
File metadata and controls
94 lines (71 loc) · 3.23 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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Reflection;
using Funq;
using ServiceStack.Common.Web;
using ServiceStack.Html;
using ServiceStack.ServiceHost;
using ServiceStack.VirtualPath;
using ServiceStack.WebHost.Endpoints;
namespace ServiceStack.ServiceInterface.Testing
{
public class TestAppHost : IAppHost
{
private readonly Funq.Container container;
public TestAppHost()
: this(new Container(), Assembly.GetExecutingAssembly()) {}
public TestAppHost(Funq.Container container, params Assembly[] serviceAssemblies)
{
this.container = container ?? new Container();
if (serviceAssemblies.Length == 0)
serviceAssemblies = new[] { Assembly.GetExecutingAssembly() };
var createInstance = EndpointHostConfig.Instance;
this.Config = EndpointHost.Config = new EndpointHostConfig(
GetType().Name,
new ServiceManager(true, serviceAssemblies));
this.ContentTypeFilters = new HttpResponseFilter();
this.PreRequestFilters = new List<Action<IHttpRequest, IHttpResponse>>();
this.RequestFilters = new List<Action<IHttpRequest, IHttpResponse, object>>();
this.ResponseFilters = new List<Action<IHttpRequest, IHttpResponse, object>>();
this.ViewEngines = new List<IViewEngine>();
this.CatchAllHandlers = new List<HttpHandlerResolverDelegate>();
this.VirtualPathProvider = new FileSystemVirtualPathProvider(this);
}
public void RegisterAs<T, TAs>() where T : TAs
{
this.container.RegisterAs<T, TAs>();
}
public virtual void Release(object instance) { }
public void OnEndRequest() {}
public void Register<T>(T instance)
{
container.Register(instance);
}
public T TryResolve<T>()
{
return container.TryResolve<T>();
}
public IContentTypeFilter ContentTypeFilters { get; set; }
public List<Action<IHttpRequest, IHttpResponse>> PreRequestFilters { get; set; }
public List<Action<IHttpRequest, IHttpResponse, object>> RequestFilters { get; set; }
public List<Action<IHttpRequest, IHttpResponse, object>> ResponseFilters { get; set; }
public List<IViewEngine> ViewEngines { get; private set; }
public Action<IHttpRequest, IHttpResponse, string, Exception> ExceptionHandler { get; set; }
public List<HttpHandlerResolverDelegate> CatchAllHandlers { get; private set; }
public Dictionary<Type, Func<IHttpRequest, object>> RequestBinders
{
get { throw new NotImplementedException(); }
}
public EndpointHostConfig Config { get; set; }
public void RegisterService(Type serviceType, params string[] atRestPaths)
{
Config.ServiceManager.RegisterService(serviceType);
}
public void LoadPlugin(params IPlugin[] plugins)
{
plugins.ToList().ForEach(x => x.Register(this));
}
public IVirtualPathProvider VirtualPathProvider { get; set; }
}
}