IoCConfiguration_autoServiceCustom.xmlΒΆ

This configuration file can be downloaded downloaded from IoCConfiguration_autoServiceCustom.xml.

  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
 <?xml version="1.0" encoding="utf-8"?>

 <!--
    The XML configuration file is validated against schema file IoC.Configuration.Schema.7579ADB2-0FBD-4210-A8CA-EE4B4646DB3F.xsd,
    which can be found in folder IoC.Configuration.Content in output directory.
    The schema file can also be downloaded from
    http://oroptimizer.com/ioc.configuration/V2/IoC.Configuration.Schema.7579ADB2-0FBD-4210-A8CA-EE4B4646DB3F.xsd or in source code
    project in Github.com.

    To use Visual Studio code completion based on schema contents, right click Properties on this file in Visual Studio, and in Schemas
    field pick the schema IoC.Configuration.Schema.7579ADB2-0FBD-4210-A8CA-EE4B4646DB3F.xsd.

    Before running the tests make sure to execute IoC.Configuration\Tests\IoC.Configuration.Tests\PostBuildCommands.bat to copy the dlls into
    folders specified in this configuration file.
    Also, modify the batch file to copy the Autofac and Ninject assemblies from Nuget packages folder on machine, where the test is run.
 -->

 <iocConfiguration
     xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance'
     xsi:noNamespaceSchemaLocation="http://oroptimizer.com/IoC.Configuration/V2/IoC.Configuration.Schema.7579ADB2-0FBD-4210-A8CA-EE4B4646DB3F.xsd">

     <!--The application should have write permissions to path specified in appDataDir.
     This is where dynamically generated DLLs are saved.-->
     <!--NOTE: path should be an absolute path, or should be converted to absolute path by some implementation of
     IoC.Configuration.AttributeValueTransformer.IAttributeValueTransformer. In this example the paths are converted by
     IoC.Configuration.Tests.FileFolderPathAttributeValueTransformer.-->
     <appDataDir
             path="TestFiles\AutogeneratedDlls\DynamicFiles_AutoServiceCustomTests"  />

     <plugins pluginsDirPath="TestFiles\PluginDlls">

             <!--
         Plugin assemblies will be in a folder with similar name under pluginsDirPath folder.
         The plugin folders will be included in assembly resolution mechanism.
         -->

             <!--A folder K:\...\IoC.Configuration\Tests\IoC.Configuration.Tests\bin\TestFiles\PluginDlls\Plugin1 should exist.  -->
     </plugins>

     <additionalAssemblyProbingPaths>
             <probingPath
               path="TestFiles\ThirdPartyLibs" />
             <probingPath
               path="TestFiles\ContainerImplementations\Autofac" />
             <probingPath
               path="TestFiles\ContainerImplementations\Ninject" />
             <probingPath
               path="TestFiles\DynamicallyLoadedDlls" />
     </additionalAssemblyProbingPaths>

     <assemblies>
             <!--Assemblies should be in one of the following locations:
         1) Executable's folder
         2) In folder specified in additionalAssemblyProbingPaths element.
         3) In one of the plugin folders specified in plugins element (only for assemblies with plugin attribute) -->

             <!--
         Use "overrideDirectory" attribute, to make the assembly path explicit, rather then searching for
         an assembly in predefined folders, which also include probing paths specified in additionalAssemblyProbingPaths element.
         -->
             <assembly name="IoC.Configuration.Autofac" alias="autofac_ext" />
             <assembly name="IoC.Configuration.Ninject" alias="ninject_ext" />

             <assembly name="TestProjects.SharedServices" alias="shared_services" />
             <assembly name="IoC.Configuration.Tests" alias="tests" />

             <assembly name="TestProjects.DynamicallyLoadedAssembly1" alias="dynamic1" />
     </assemblies>

     <typeDefinitions>

     </typeDefinitions>

     <parameterSerializers>
             <serializers></serializers>
     </parameterSerializers>

     <!--The value of type attribute should be a type that implements
     IoC.Configuration.DiContainer.IDiManager-->
     <diManagers activeDiManagerName="Autofac">
             <diManager name="Ninject" type="IoC.Configuration.Ninject.NinjectDiManager"
                                assembly="ninject_ext">
                     <!--
             Use parameters element to specify constructor parameters,
             if the type specified in 'type' attribute has non-default constructor.
             -->
                     <!--<parameters>
             </parameters>-->
             </diManager>

             <diManager name="Autofac" type="IoC.Configuration.Autofac.AutofacDiManager"
                                assembly="autofac_ext">
             </diManager>
     </diManagers>

     <!--
     If settingsRequestor element is used, the type in type attribute should
     specify a type that implements IoC.Configuration.ISettingsRequestor.
     The implementation specifies a collection of required settings that should be present
     in settings element.
     Note, the type specified in type attribute is fully integrated into a dependency
     injection framework. In other words, constructor parameters will be injected using
     bindings specified in dependencyInjection element.
     -->

     <settings>
             <boolean name="failCustomServiceValidation" value="false"/>
     </settings>

     <dependencyInjection>
             <modules>

             </modules>
             <services>
                     <service type="SharedServices.Interfaces.IDbConnection" >
                             <valueImplementation scope="singleton">
                                     <constructedValue type="SharedServices.Implementations.SqlServerDbConnection">
                                             <parameters>
                                                     <string name="serverName" value="MainServer"/>
                                                     <string name="databaseName" value="DB1"/>
                                                     <string name="userName" value="sa"/>
                                                     <string name="password" value="password1"/>
                                             </parameters>
                                     </constructedValue>
                             </valueImplementation>
                     </service>

             </services>
             <autoGeneratedServices>

                     <!--Interface specified in autoServiceCustom is auto-implemented by implementation of
                     IoC.Configuration.ConfigurationFile.ICustomAutoServiceCodeGenerator IoC.Configuration.Tests.AutoServiceCustom.SimpleDataRepository.RepositoryInterfaceImplementationGenerator
                     that is specified in autoServiceCodeGenerator element.-->
                     <autoServiceCustom interface="IoC.Configuration.Tests.AutoServiceCustom.SimpleDataRepository.DataRepositories.IAuthorsRepository">

                             <autoServiceCodeGenerator>
                                     <constructedValue type="IoC.Configuration.Tests.AutoServiceCustom.SimpleDataRepository.RepositoryInterfaceImplementationGenerator">
                                             <parameters>
                                                     <int32 name="someDemoConstructorParameter" value="15" />
                                             </parameters>
                                     </constructedValue>
                             </autoServiceCodeGenerator>
                     </autoServiceCustom>

                     <autoServiceCustom interface="IoC.Configuration.Tests.AutoServiceCustom.SimpleDataRepository.DataRepositories.IBooksRepository">
                             <autoServiceCodeGenerator>
                                     <constructedValue type="IoC.Configuration.Tests.AutoServiceCustom.SimpleDataRepository.RepositoryInterfaceImplementationGenerator">
                                             <parameters>
                                                     <int32 name="someDemoConstructorParameter" value="25" />
                                             </parameters>
                                     </constructedValue>
                             </autoServiceCodeGenerator>
                     </autoServiceCustom>

                     <autoServiceCustom interface="IoC.Configuration.Tests.AutoServiceCustom.SimpleDataRepository.DataRepositories.IAuthorBooksRepository">
                             <autoServiceCodeGenerator>
                                     <constructedValue type="IoC.Configuration.Tests.AutoServiceCustom.SimpleDataRepository.RepositoryInterfaceImplementationGenerator">
                                             <parameters>
                                                     <int32 name="someDemoConstructorParameter" value="35" />
                                             </parameters>
                                     </constructedValue>
                             </autoServiceCodeGenerator>
                     </autoServiceCustom>

                     <!--Custom auto service to test failures-->
                     <autoServiceCustom interface="IoC.Configuration.Tests.AutoServiceCustom.ClassesForFailureTests.DogAbstr">
                             <autoServiceCodeGenerator>
                                     <constructedValue type="IoC.Configuration.Tests.AutoServiceCustom.ClassesForFailureTests.CustomAutoServiceCodeGeneratorForFailureTests" >
                                             <parameters>
                                                     <boolean name="simulateValidateFails" value="false"/>
                                                     <boolean name="simulateValidateOnIoCContainerLoadedFails" value="false"/>
                                                     <boolean name="simulateGenerateCSharpFailure" value="false"/>
                                                     <boolean name="simulateAssemblyBuildFailure" value="false"/>
                                             </parameters>
                                     </constructedValue>
                             </autoServiceCodeGenerator>
                     </autoServiceCustom>
             </autoGeneratedServices>

     </dependencyInjection>

     <startupActions>

     </startupActions>

     <pluginsSetup>
     </pluginsSetup>
 </iocConfiguration>