-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlog_test
430 lines (426 loc) · 79.7 KB
/
log_test
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
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
[INFO] Scanning for projects...
[INFO]
[INFO] ------------------------------------------------------------------------
[INFO] Building testCrm 1.0-SNAPSHOT
[INFO] ------------------------------------------------------------------------
[INFO]
[INFO] --- maven-resources-plugin:2.6:resources (default-resources) @ testCrm ---
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] skip non existing resourceDirectory /home/radagast/docs/CRACKER/crack_proj/src/main/resources
[INFO]
[INFO] --- maven-compiler-plugin:3.0:compile (default-compile) @ testCrm ---
[INFO] Changes detected - recompiling the module!
[INFO] Compiling 12 source files to /home/radagast/docs/CRACKER/crack_proj/target/classes
[INFO]
[INFO] --- maven-resources-plugin:2.6:testResources (default-testResources) @ testCrm ---
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] skip non existing resourceDirectory /home/radagast/docs/CRACKER/crack_proj/src/test/resources
[INFO]
[INFO] --- maven-compiler-plugin:3.0:testCompile (default-testCompile) @ testCrm ---
[INFO] Changes detected - recompiling the module!
[INFO] Compiling 4 source files to /home/radagast/docs/CRACKER/crack_proj/target/test-classes
[INFO]
[INFO] --- maven-surefire-plugin:2.12.4:test (default-test) @ testCrm ---
[INFO] Surefire report directory: /home/radagast/docs/CRACKER/crack_proj/target/surefire-reports
-------------------------------------------------------
T E S T S
-------------------------------------------------------
Running crm.tariffs.tbasic.JdbcCommonTest
14:18:44.037 [main] DEBUG o.s.t.c.j.SpringJUnit4ClassRunner - SpringJUnit4ClassRunner constructor called with [class crm.tariffs.tbasic.JdbcCommonTest].
14:18:44.129 [main] DEBUG o.s.test.context.BootstrapUtils - Instantiating TestContextBootstrapper from class [org.springframework.test.context.support.DefaultTestContextBootstrapper]
14:18:44.207 [main] DEBUG o.s.t.c.s.DefaultTestContextBootstrapper - Found explicit ContextLoader class [org.springframework.test.context.support.AnnotationConfigContextLoader] for context configuration attributes [ContextConfigurationAttributes@1794d431 declaringClass = 'crm.tariffs.tbasic.JdbcCommonTest', classes = '{class crm.tariffs.postgres.PostgresqlConfig}', locations = '{}', inheritLocations = true, initializers = '{}', inheritInitializers = true, name = [null], contextLoaderClass = 'org.springframework.test.context.support.AnnotationConfigContextLoader']
14:18:44.244 [main] DEBUG o.s.t.c.support.ActiveProfilesUtils - Could not find an 'annotation declaring class' for annotation type [org.springframework.test.context.ActiveProfiles] and class [crm.tariffs.tbasic.JdbcCommonTest]
14:18:44.265 [main] DEBUG o.s.t.c.s.DefaultTestContextBootstrapper - @TestExecutionListeners is not present for class [crm.tariffs.tbasic.JdbcCommonTest]: using defaults.
14:18:44.294 [main] INFO o.s.t.c.s.DefaultTestContextBootstrapper - Loaded default TestExecutionListener class names from location [META-INF/spring.factories]: [org.springframework.test.context.web.ServletTestExecutionListener, org.springframework.test.context.support.DependencyInjectionTestExecutionListener, org.springframework.test.context.support.DirtiesContextTestExecutionListener, org.springframework.test.context.transaction.TransactionalTestExecutionListener, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener]
14:18:44.333 [main] INFO o.s.t.c.s.DefaultTestContextBootstrapper - Could not instantiate TestExecutionListener [org.springframework.test.context.web.ServletTestExecutionListener]. Specify custom listener classes or make the default listener classes (and their required dependencies) available. Offending class: [javax/servlet/ServletContext]
14:18:44.342 [main] INFO o.s.t.c.s.DefaultTestContextBootstrapper - Using TestExecutionListeners: [org.springframework.test.context.support.DependencyInjectionTestExecutionListener@4f970963, org.springframework.test.context.support.DirtiesContextTestExecutionListener@61f8bee4, org.springframework.test.context.transaction.TransactionalTestExecutionListener@7b49cea0, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener@887af79]
14:18:44.352 [main] DEBUG o.s.t.annotation.ProfileValueUtils - Retrieved @ProfileValueSourceConfiguration [null] for test class [crm.tariffs.tbasic.JdbcCommonTest]
14:18:44.355 [main] DEBUG o.s.t.annotation.ProfileValueUtils - Retrieved ProfileValueSource type [class org.springframework.test.annotation.SystemProfileValueSource] for class [crm.tariffs.tbasic.JdbcCommonTest]
14:18:44.359 [main] DEBUG o.s.t.annotation.ProfileValueUtils - Retrieved @ProfileValueSourceConfiguration [null] for test class [crm.tariffs.tbasic.JdbcCommonTest]
14:18:44.360 [main] DEBUG o.s.t.annotation.ProfileValueUtils - Retrieved ProfileValueSource type [class org.springframework.test.annotation.SystemProfileValueSource] for class [crm.tariffs.tbasic.JdbcCommonTest]
14:18:44.371 [main] DEBUG o.s.t.annotation.ProfileValueUtils - Retrieved @ProfileValueSourceConfiguration [null] for test class [crm.tariffs.tbasic.JdbcCommonTest]
14:18:44.371 [main] DEBUG o.s.t.annotation.ProfileValueUtils - Retrieved ProfileValueSource type [class org.springframework.test.annotation.SystemProfileValueSource] for class [crm.tariffs.tbasic.JdbcCommonTest]
14:18:44.379 [main] DEBUG o.s.t.c.s.DependencyInjectionTestExecutionListener - Performing dependency injection for test context [[DefaultTestContext@49fc609f testClass = JdbcCommonTest, testInstance = crm.tariffs.tbasic.JdbcCommonTest@cd2dae5, testMethod = [null], testException = [null], mergedContextConfiguration = [MergedContextConfiguration@3a883ce7 testClass = JdbcCommonTest, locations = '{}', classes = '{class crm.tariffs.postgres.PostgresqlConfig}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextLoader = 'org.springframework.test.context.support.AnnotationConfigContextLoader', parent = [null]]]].
14:18:44.381 [main] DEBUG o.s.t.c.s.AbstractGenericContextLoader - Loading ApplicationContext for merged context configuration [[MergedContextConfiguration@3a883ce7 testClass = JdbcCommonTest, locations = '{}', classes = '{class crm.tariffs.postgres.PostgresqlConfig}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextLoader = 'org.springframework.test.context.support.AnnotationConfigContextLoader', parent = [null]]].
14:18:44.670 [main] DEBUG o.s.core.env.StandardEnvironment - Adding [systemProperties] PropertySource with lowest search precedence
14:18:44.678 [main] DEBUG o.s.core.env.StandardEnvironment - Adding [systemEnvironment] PropertySource with lowest search precedence
14:18:44.679 [main] DEBUG o.s.core.env.StandardEnvironment - Initialized StandardEnvironment with PropertySources [systemProperties,systemEnvironment]
14:18:44.681 [main] DEBUG o.s.t.c.s.AnnotationConfigContextLoader - Registering annotated classes: {class crm.tariffs.postgres.PostgresqlConfig}
14:18:44.817 [main] INFO o.s.c.s.GenericApplicationContext - Refreshing org.springframework.context.support.GenericApplicationContext@1d29cf23: startup date [Sun Aug 14 14:18:44 MSK 2016]; root of context hierarchy
14:18:44.819 [main] DEBUG o.s.c.s.GenericApplicationContext - Bean factory for org.springframework.context.support.GenericApplicationContext@1d29cf23: org.springframework.beans.factory.support.DefaultListableBeanFactory@646be2c3: defining beans [org.springframework.context.annotation.internalConfigurationAnnotationProcessor,org.springframework.context.annotation.internalAutowiredAnnotationProcessor,org.springframework.context.annotation.internalRequiredAnnotationProcessor,org.springframework.context.annotation.internalCommonAnnotationProcessor,postgresqlConfig]; root of factory hierarchy
14:18:44.864 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalConfigurationAnnotationProcessor'
14:18:44.864 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating instance of bean 'org.springframework.context.annotation.internalConfigurationAnnotationProcessor'
14:18:44.920 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Eagerly caching bean 'org.springframework.context.annotation.internalConfigurationAnnotationProcessor' to allow for resolving potential circular references
14:18:44.927 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Finished creating instance of bean 'org.springframework.context.annotation.internalConfigurationAnnotationProcessor'
14:18:45.138 [main] DEBUG o.s.c.a.ConfigurationClassBeanDefinitionReader - Registered bean definition for imported @Configuration class org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration
14:18:45.143 [main] DEBUG o.s.c.a.ConfigurationClassBeanDefinitionReader - Registering bean definition for @Bean method org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration.org.springframework.transaction.config.internalTransactionAdvisor()
14:18:45.145 [main] DEBUG o.s.c.a.ConfigurationClassBeanDefinitionReader - Registering bean definition for @Bean method org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration.transactionAttributeSource()
14:18:45.147 [main] DEBUG o.s.c.a.ConfigurationClassBeanDefinitionReader - Registering bean definition for @Bean method org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration.transactionInterceptor()
14:18:45.150 [main] DEBUG o.s.c.a.ConfigurationClassBeanDefinitionReader - Registering bean definition for @Bean method crm.tariffs.postgres.PostgresqlConfig.transactionManager()
14:18:45.152 [main] DEBUG o.s.c.a.ConfigurationClassBeanDefinitionReader - Registering bean definition for @Bean method crm.tariffs.postgres.PostgresqlConfig.usrDao()
14:18:45.155 [main] DEBUG o.s.c.a.ConfigurationClassBeanDefinitionReader - Registering bean definition for @Bean method crm.tariffs.postgres.PostgresqlConfig.dataSource()
14:18:45.157 [main] DEBUG o.s.c.a.ConfigurationClassBeanDefinitionReader - Registering bean definition for @Bean method crm.tariffs.postgres.PostgresqlConfig.sqlCoommon()
14:18:45.458 [main] DEBUG o.s.c.a.ConfigurationClassEnhancer - Successfully enhanced crm.tariffs.postgres.PostgresqlConfig; enhanced class name is: crm.tariffs.postgres.PostgresqlConfig$$EnhancerBySpringCGLIB$$c5fe3418
14:18:45.461 [main] DEBUG o.s.c.a.ConfigurationClassPostProcessor - Replacing bean definition 'postgresqlConfig' existing class name 'crm.tariffs.postgres.PostgresqlConfig' with enhanced class name 'crm.tariffs.postgres.PostgresqlConfig$$EnhancerBySpringCGLIB$$c5fe3418'
14:18:45.494 [main] DEBUG o.s.c.a.ConfigurationClassEnhancer - Successfully enhanced org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration; enhanced class name is: org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration$$EnhancerBySpringCGLIB$$b1930b7
14:18:45.496 [main] DEBUG o.s.c.a.ConfigurationClassPostProcessor - Replacing bean definition 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration' existing class name 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration' with enhanced class name 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration$$EnhancerBySpringCGLIB$$b1930b7'
14:18:45.516 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalAutowiredAnnotationProcessor'
14:18:45.517 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating instance of bean 'org.springframework.context.annotation.internalAutowiredAnnotationProcessor'
14:18:45.520 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Eagerly caching bean 'org.springframework.context.annotation.internalAutowiredAnnotationProcessor' to allow for resolving potential circular references
14:18:45.522 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Finished creating instance of bean 'org.springframework.context.annotation.internalAutowiredAnnotationProcessor'
14:18:45.524 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalRequiredAnnotationProcessor'
14:18:45.525 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating instance of bean 'org.springframework.context.annotation.internalRequiredAnnotationProcessor'
14:18:45.528 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Eagerly caching bean 'org.springframework.context.annotation.internalRequiredAnnotationProcessor' to allow for resolving potential circular references
14:18:45.530 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Finished creating instance of bean 'org.springframework.context.annotation.internalRequiredAnnotationProcessor'
14:18:45.531 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalCommonAnnotationProcessor'
14:18:45.533 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating instance of bean 'org.springframework.context.annotation.internalCommonAnnotationProcessor'
14:18:45.551 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Eagerly caching bean 'org.springframework.context.annotation.internalCommonAnnotationProcessor' to allow for resolving potential circular references
14:18:45.553 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Finished creating instance of bean 'org.springframework.context.annotation.internalCommonAnnotationProcessor'
14:18:45.554 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.context.annotation.ConfigurationClassPostProcessor.importAwareProcessor'
14:18:45.556 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating instance of bean 'org.springframework.context.annotation.ConfigurationClassPostProcessor.importAwareProcessor'
14:18:45.558 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Eagerly caching bean 'org.springframework.context.annotation.ConfigurationClassPostProcessor.importAwareProcessor' to allow for resolving potential circular references
14:18:45.561 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Finished creating instance of bean 'org.springframework.context.annotation.ConfigurationClassPostProcessor.importAwareProcessor'
14:18:45.563 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.context.annotation.ConfigurationClassPostProcessor.enhancedConfigurationProcessor'
14:18:45.565 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating instance of bean 'org.springframework.context.annotation.ConfigurationClassPostProcessor.enhancedConfigurationProcessor'
14:18:45.566 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Eagerly caching bean 'org.springframework.context.annotation.ConfigurationClassPostProcessor.enhancedConfigurationProcessor' to allow for resolving potential circular references
14:18:45.568 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Finished creating instance of bean 'org.springframework.context.annotation.ConfigurationClassPostProcessor.enhancedConfigurationProcessor'
14:18:45.570 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.aop.config.internalAutoProxyCreator'
14:18:45.572 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating instance of bean 'org.springframework.aop.config.internalAutoProxyCreator'
14:18:45.610 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Eagerly caching bean 'org.springframework.aop.config.internalAutoProxyCreator' to allow for resolving potential circular references
14:18:45.758 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Finished creating instance of bean 'org.springframework.aop.config.internalAutoProxyCreator'
14:18:45.767 [main] DEBUG o.s.c.s.GenericApplicationContext - Unable to locate MessageSource with name 'messageSource': using default [org.springframework.context.support.DelegatingMessageSource@765d7657]
14:18:45.775 [main] DEBUG o.s.c.s.GenericApplicationContext - Unable to locate ApplicationEventMulticaster with name 'applicationEventMulticaster': using default [org.springframework.context.event.SimpleApplicationEventMulticaster@36fc695d]
14:18:45.795 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Pre-instantiating singletons in org.springframework.beans.factory.support.DefaultListableBeanFactory@646be2c3: defining beans [org.springframework.context.annotation.internalConfigurationAnnotationProcessor,org.springframework.context.annotation.internalAutowiredAnnotationProcessor,org.springframework.context.annotation.internalRequiredAnnotationProcessor,org.springframework.context.annotation.internalCommonAnnotationProcessor,postgresqlConfig,org.springframework.context.annotation.ConfigurationClassPostProcessor.importAwareProcessor,org.springframework.context.annotation.ConfigurationClassPostProcessor.enhancedConfigurationProcessor,org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration,org.springframework.transaction.config.internalTransactionAdvisor,transactionAttributeSource,transactionInterceptor,transactionManager,usrDao,dataSource,sqlCoommon,org.springframework.aop.config.internalAutoProxyCreator]; root of factory hierarchy
14:18:45.796 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'org.springframework.context.annotation.internalConfigurationAnnotationProcessor'
14:18:45.796 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'org.springframework.context.annotation.internalAutowiredAnnotationProcessor'
14:18:45.797 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'org.springframework.context.annotation.internalRequiredAnnotationProcessor'
14:18:45.797 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'org.springframework.context.annotation.internalCommonAnnotationProcessor'
14:18:45.797 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'postgresqlConfig'
14:18:45.798 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating instance of bean 'postgresqlConfig'
14:18:45.802 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Eagerly caching bean 'postgresqlConfig' to allow for resolving potential circular references
14:18:45.818 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.transaction.config.internalTransactionAdvisor'
14:18:45.818 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating instance of bean 'org.springframework.transaction.config.internalTransactionAdvisor'
14:18:45.824 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration'
14:18:45.825 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating instance of bean 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration'
14:18:45.849 [main] DEBUG o.s.b.f.annotation.InjectionMetadata - Registered injected element on class [org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration$$EnhancerBySpringCGLIB$$b1930b7]: AutowiredMethodElement for void org.springframework.transaction.annotation.AbstractTransactionManagementConfiguration.setConfigurers(java.util.Collection)
14:18:45.850 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Eagerly caching bean 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration' to allow for resolving potential circular references
14:18:45.863 [main] DEBUG o.s.b.f.annotation.InjectionMetadata - Processing injected method of bean 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration': AutowiredMethodElement for void org.springframework.transaction.annotation.AbstractTransactionManagementConfiguration.setConfigurers(java.util.Collection)
14:18:45.884 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'org.springframework.context.annotation.ConfigurationClassPostProcessor.importRegistry'
14:18:45.889 [main] DEBUG o.s.a.f.a.BeanFactoryAdvisorRetrievalHelper - Skipping currently created advisor 'org.springframework.transaction.config.internalTransactionAdvisor'
14:18:45.899 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Finished creating instance of bean 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration'
14:18:45.966 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'transactionAttributeSource'
14:18:45.967 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating instance of bean 'transactionAttributeSource'
14:18:45.967 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration'
14:18:45.971 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Eagerly caching bean 'transactionAttributeSource' to allow for resolving potential circular references
14:18:45.979 [main] DEBUG o.s.a.f.a.BeanFactoryAdvisorRetrievalHelper - Skipping currently created advisor 'org.springframework.transaction.config.internalTransactionAdvisor'
14:18:45.980 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Finished creating instance of bean 'transactionAttributeSource'
14:18:45.982 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'transactionInterceptor'
14:18:45.982 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating instance of bean 'transactionInterceptor'
14:18:45.982 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration'
14:18:45.992 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'transactionAttributeSource'
14:18:46.030 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Eagerly caching bean 'transactionInterceptor' to allow for resolving potential circular references
14:18:46.073 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Invoking afterPropertiesSet() on bean with name 'transactionInterceptor'
14:18:46.074 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Finished creating instance of bean 'transactionInterceptor'
14:18:46.082 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Eagerly caching bean 'org.springframework.transaction.config.internalTransactionAdvisor' to allow for resolving potential circular references
14:18:46.114 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Finished creating instance of bean 'org.springframework.transaction.config.internalTransactionAdvisor'
14:18:46.130 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Finished creating instance of bean 'postgresqlConfig'
14:18:46.131 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'org.springframework.context.annotation.ConfigurationClassPostProcessor.importAwareProcessor'
14:18:46.131 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'org.springframework.context.annotation.ConfigurationClassPostProcessor.enhancedConfigurationProcessor'
14:18:46.132 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration'
14:18:46.132 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'org.springframework.transaction.config.internalTransactionAdvisor'
14:18:46.132 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'transactionAttributeSource'
14:18:46.132 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'transactionInterceptor'
14:18:46.133 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'transactionManager'
14:18:46.133 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating instance of bean 'transactionManager'
14:18:46.133 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'postgresqlConfig'
14:18:46.213 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'dataSource'
14:18:46.213 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating instance of bean 'dataSource'
14:18:46.214 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'postgresqlConfig'
14:18:46.302 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Eagerly caching bean 'dataSource' to allow for resolving potential circular references
14:18:46.390 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'org.springframework.transaction.config.internalTransactionAdvisor'
14:18:46.400 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Finished creating instance of bean 'dataSource'
14:18:46.415 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Eagerly caching bean 'transactionManager' to allow for resolving potential circular references
14:18:46.427 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Invoking afterPropertiesSet() on bean with name 'transactionManager'
14:18:46.428 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'org.springframework.transaction.config.internalTransactionAdvisor'
14:18:46.432 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Finished creating instance of bean 'transactionManager'
14:18:46.433 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'usrDao'
14:18:46.433 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating instance of bean 'usrDao'
14:18:46.434 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'postgresqlConfig'
14:18:46.479 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Eagerly caching bean 'usrDao' to allow for resolving potential circular references
14:18:46.494 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Invoking afterPropertiesSet() on bean with name 'usrDao'
14:18:46.499 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'dataSource'
14:18:46.525 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'sqlCoommon'
14:18:46.525 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating instance of bean 'sqlCoommon'
14:18:46.527 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'postgresqlConfig'
14:18:46.533 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Eagerly caching bean 'sqlCoommon' to allow for resolving potential circular references
14:18:46.540 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'org.springframework.transaction.config.internalTransactionAdvisor'
14:18:46.543 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Finished creating instance of bean 'sqlCoommon'
14:18:46.544 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'org.springframework.transaction.config.internalTransactionAdvisor'
14:18:46.557 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Finished creating instance of bean 'usrDao'
14:18:46.558 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'dataSource'
14:18:46.559 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'sqlCoommon'
14:18:46.559 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'org.springframework.aop.config.internalAutoProxyCreator'
14:18:46.565 [main] DEBUG o.s.c.s.GenericApplicationContext - Unable to locate LifecycleProcessor with name 'lifecycleProcessor': using default [org.springframework.context.support.DefaultLifecycleProcessor@ba54932]
14:18:46.566 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'lifecycleProcessor'
14:18:46.573 [main] DEBUG o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.liveBeansView.mbeanDomain' in [systemProperties]
14:18:46.574 [main] DEBUG o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.liveBeansView.mbeanDomain' in [systemEnvironment]
14:18:46.575 [main] DEBUG o.s.c.e.PropertySourcesPropertyResolver - Could not find key 'spring.liveBeansView.mbeanDomain' in any property source. Returning [null]
14:18:46.579 [main] DEBUG o.s.t.c.DefaultCacheAwareContextLoaderDelegate - Storing ApplicationContext in cache under key [[MergedContextConfiguration@3a883ce7 testClass = JdbcCommonTest, locations = '{}', classes = '{class crm.tariffs.postgres.PostgresqlConfig}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextLoader = 'org.springframework.test.context.support.AnnotationConfigContextLoader', parent = [null]]].
14:18:46.604 [main] DEBUG o.s.b.f.annotation.InjectionMetadata - Processing injected method of bean 'crm.tariffs.tbasic.JdbcCommonTest': ResourceElement for private crm.tariffs.dao.UsrDao crm.tariffs.tbasic.JdbcCommonTest.usrd
14:18:46.619 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'usrDao'
14:18:46.620 [main] DEBUG o.s.b.f.annotation.InjectionMetadata - Processing injected method of bean 'crm.tariffs.tbasic.JdbcCommonTest': ResourceElement for private javax.sql.DataSource crm.tariffs.tbasic.JdbcCommonTest.dataSource
14:18:46.625 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'dataSource'
14:18:46.627 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'org.springframework.transaction.config.internalTransactionAdvisor'
14:18:46.650 [main] DEBUG o.s.t.a.AnnotationTransactionAttributeSource - Adding transactional method 'JdbcCommonTest.dId' with attribute: PROPAGATION_REQUIRED,ISOLATION_DEFAULT; ''
14:18:46.666 [main] DEBUG o.s.a.f.a.InfrastructureAdvisorAutoProxyCreator - Creating implicit proxy for bean 'crm.tariffs.tbasic.JdbcCommonTest' with 0 common interceptors and 1 specific interceptors
14:18:46.697 [main] DEBUG o.s.aop.framework.CglibAopProxy - Creating CGLIB proxy: target source is SingletonTargetSource for target object [crm.tariffs.tbasic.JdbcCommonTest@cd2dae5]
14:18:46.729 [main] DEBUG o.s.aop.framework.CglibAopProxy - Unable to apply any optimisations to advised method: public void crm.tariffs.tbasic.JdbcCommonTest.dId() throws java.lang.Exception
14:18:46.732 [main] DEBUG o.s.t.a.AnnotationTransactionAttributeSource - Adding transactional method 'JdbcCommonTest.shouldSaveOneRecord' with attribute: PROPAGATION_REQUIRED,ISOLATION_DEFAULT; ''
14:18:46.733 [main] DEBUG o.s.aop.framework.CglibAopProxy - Unable to apply any optimisations to advised method: public void crm.tariffs.tbasic.JdbcCommonTest.shouldSaveOneRecord()
14:18:46.737 [main] DEBUG o.s.t.a.AnnotationTransactionAttributeSource - Adding transactional method 'JdbcCommonTest.shouldReturnTrueWhenEntityForGivenIdExists' with attribute: PROPAGATION_REQUIRED,ISOLATION_DEFAULT; ''
14:18:46.738 [main] DEBUG o.s.aop.framework.CglibAopProxy - Unable to apply any optimisations to advised method: public void crm.tariffs.tbasic.JdbcCommonTest.shouldReturnTrueWhenEntityForGivenIdExists()
14:18:46.741 [main] DEBUG o.s.t.a.AnnotationTransactionAttributeSource - Adding transactional method 'JdbcCommonTest.shouldReturnOneRecordById' with attribute: PROPAGATION_REQUIRED,ISOLATION_DEFAULT; ''
14:18:46.742 [main] DEBUG o.s.aop.framework.CglibAopProxy - Unable to apply any optimisations to advised method: public void crm.tariffs.tbasic.JdbcCommonTest.shouldReturnOneRecordById()
14:18:46.746 [main] DEBUG o.s.t.a.AnnotationTransactionAttributeSource - Adding transactional method 'JdbcCommonTest.setup' with attribute: PROPAGATION_REQUIRED,ISOLATION_DEFAULT; ''
14:18:46.746 [main] DEBUG o.s.aop.framework.CglibAopProxy - Unable to apply any optimisations to advised method: public void crm.tariffs.tbasic.JdbcCommonTest.setup()
14:18:46.747 [main] DEBUG o.s.aop.framework.CglibAopProxy - Found finalize() method - using NO_OVERRIDE
14:18:46.747 [main] DEBUG o.s.aop.framework.CglibAopProxy - Found 'equals' method: public boolean java.lang.Object.equals(java.lang.Object)
14:18:46.747 [main] DEBUG o.s.aop.framework.CglibAopProxy - Unable to apply any optimisations to advised method: public java.lang.String java.lang.Object.toString()
14:18:46.748 [main] DEBUG o.s.aop.framework.CglibAopProxy - Found 'hashCode' method: public native int java.lang.Object.hashCode()
14:18:46.750 [main] DEBUG o.s.aop.framework.CglibAopProxy - Unable to apply any optimisations to advised method: protected native java.lang.Object java.lang.Object.clone() throws java.lang.CloneNotSupportedException
14:18:46.751 [main] DEBUG o.s.aop.framework.CglibAopProxy - Method is declared on Advised interface: public abstract void org.springframework.aop.framework.Advised.setTargetSource(org.springframework.aop.TargetSource)
14:18:46.752 [main] DEBUG o.s.aop.framework.CglibAopProxy - Method is declared on Advised interface: public abstract org.springframework.aop.TargetSource org.springframework.aop.framework.Advised.getTargetSource()
14:18:46.753 [main] DEBUG o.s.aop.framework.CglibAopProxy - Method is declared on Advised interface: public abstract boolean org.springframework.aop.framework.Advised.isProxyTargetClass()
14:18:46.754 [main] DEBUG o.s.aop.framework.CglibAopProxy - Method is declared on Advised interface: public abstract void org.springframework.aop.framework.Advised.addAdvisor(org.springframework.aop.Advisor) throws org.springframework.aop.framework.AopConfigException
14:18:46.755 [main] DEBUG o.s.aop.framework.CglibAopProxy - Method is declared on Advised interface: public abstract void org.springframework.aop.framework.Advised.addAdvisor(int,org.springframework.aop.Advisor) throws org.springframework.aop.framework.AopConfigException
14:18:46.756 [main] DEBUG o.s.aop.framework.CglibAopProxy - Method is declared on Advised interface: public abstract void org.springframework.aop.framework.Advised.setPreFiltered(boolean)
14:18:46.758 [main] DEBUG o.s.aop.framework.CglibAopProxy - Method is declared on Advised interface: public abstract void org.springframework.aop.framework.Advised.setExposeProxy(boolean)
14:18:46.759 [main] DEBUG o.s.aop.framework.CglibAopProxy - Method is declared on Advised interface: public abstract boolean org.springframework.aop.framework.Advised.isExposeProxy()
14:18:46.760 [main] DEBUG o.s.aop.framework.CglibAopProxy - Method is declared on Advised interface: public abstract boolean org.springframework.aop.framework.Advised.isPreFiltered()
14:18:46.762 [main] DEBUG o.s.aop.framework.CglibAopProxy - Method is declared on Advised interface: public abstract void org.springframework.aop.framework.Advised.addAdvice(org.aopalliance.aop.Advice) throws org.springframework.aop.framework.AopConfigException
14:18:46.763 [main] DEBUG o.s.aop.framework.CglibAopProxy - Method is declared on Advised interface: public abstract void org.springframework.aop.framework.Advised.addAdvice(int,org.aopalliance.aop.Advice) throws org.springframework.aop.framework.AopConfigException
14:18:46.763 [main] DEBUG o.s.aop.framework.CglibAopProxy - Method is declared on Advised interface: public abstract java.lang.Class[] org.springframework.aop.framework.Advised.getProxiedInterfaces()
14:18:46.765 [main] DEBUG o.s.aop.framework.CglibAopProxy - Method is declared on Advised interface: public abstract boolean org.springframework.aop.framework.Advised.isInterfaceProxied(java.lang.Class)
14:18:46.766 [main] DEBUG o.s.aop.framework.CglibAopProxy - Method is declared on Advised interface: public abstract org.springframework.aop.Advisor[] org.springframework.aop.framework.Advised.getAdvisors()
14:18:46.766 [main] DEBUG o.s.aop.framework.CglibAopProxy - Method is declared on Advised interface: public abstract boolean org.springframework.aop.framework.Advised.removeAdvisor(org.springframework.aop.Advisor)
14:18:46.766 [main] DEBUG o.s.aop.framework.CglibAopProxy - Method is declared on Advised interface: public abstract void org.springframework.aop.framework.Advised.removeAdvisor(int) throws org.springframework.aop.framework.AopConfigException
14:18:46.766 [main] DEBUG o.s.aop.framework.CglibAopProxy - Method is declared on Advised interface: public abstract boolean org.springframework.aop.framework.Advised.replaceAdvisor(org.springframework.aop.Advisor,org.springframework.aop.Advisor) throws org.springframework.aop.framework.AopConfigException
14:18:46.767 [main] DEBUG o.s.aop.framework.CglibAopProxy - Method is declared on Advised interface: public abstract boolean org.springframework.aop.framework.Advised.removeAdvice(org.aopalliance.aop.Advice)
14:18:46.767 [main] DEBUG o.s.aop.framework.CglibAopProxy - Method is declared on Advised interface: public abstract java.lang.String org.springframework.aop.framework.Advised.toProxyConfigString()
14:18:46.767 [main] DEBUG o.s.aop.framework.CglibAopProxy - Method is declared on Advised interface: public abstract int org.springframework.aop.framework.Advised.indexOf(org.aopalliance.aop.Advice)
14:18:46.767 [main] DEBUG o.s.aop.framework.CglibAopProxy - Method is declared on Advised interface: public abstract int org.springframework.aop.framework.Advised.indexOf(org.springframework.aop.Advisor)
14:18:46.767 [main] DEBUG o.s.aop.framework.CglibAopProxy - Method is declared on Advised interface: public abstract boolean org.springframework.aop.framework.Advised.isFrozen()
14:18:46.767 [main] DEBUG o.s.aop.framework.CglibAopProxy - Method is declared on Advised interface: public abstract java.lang.Class org.springframework.aop.TargetClassAware.getTargetClass()
14:18:46.833 [main] DEBUG o.s.t.a.AnnotationTransactionAttributeSource - Adding transactional method 'JdbcCommonTest.shouldSaveOneRecord' with attribute: PROPAGATION_REQUIRED,ISOLATION_DEFAULT; ''
14:18:46.839 [main] DEBUG o.s.t.c.t.TransactionalTestExecutionListener - Explicit transaction definition [PROPAGATION_REQUIRED,ISOLATION_DEFAULT; ''] found for test context [DefaultTestContext@49fc609f testClass = JdbcCommonTest, testInstance = crm.tariffs.tbasic.JdbcCommonTest@cd2dae5, testMethod = shouldSaveOneRecord@JdbcCommonTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@3a883ce7 testClass = JdbcCommonTest, locations = '{}', classes = '{class crm.tariffs.postgres.PostgresqlConfig}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextLoader = 'org.springframework.test.context.support.AnnotationConfigContextLoader', parent = [null]]]
14:18:46.841 [main] DEBUG o.s.t.c.t.TransactionalTestExecutionListener - Retrieved @TransactionConfiguration attributes [null] for test class [class crm.tariffs.tbasic.JdbcCommonTest].
14:18:46.843 [main] DEBUG o.s.t.c.t.TransactionalTestExecutionListener - Retrieved TransactionConfigurationAttributes [TransactionConfigurationAttributes@4e096385 transactionManagerName = '', defaultRollback = true] for class [class crm.tariffs.tbasic.JdbcCommonTest].
14:18:46.844 [main] DEBUG o.s.t.c.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext from cache with key [[MergedContextConfiguration@3a883ce7 testClass = JdbcCommonTest, locations = '{}', classes = '{class crm.tariffs.postgres.PostgresqlConfig}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextLoader = 'org.springframework.test.context.support.AnnotationConfigContextLoader', parent = [null]]].
14:18:46.847 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'transactionManager'
14:18:46.851 [main] DEBUG o.s.t.c.t.TransactionalTestExecutionListener - No method-level @Rollback override: using default rollback [true] for test context [DefaultTestContext@49fc609f testClass = JdbcCommonTest, testInstance = crm.tariffs.tbasic.JdbcCommonTest@cd2dae5, testMethod = shouldSaveOneRecord@JdbcCommonTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@3a883ce7 testClass = JdbcCommonTest, locations = '{}', classes = '{class crm.tariffs.postgres.PostgresqlConfig}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextLoader = 'org.springframework.test.context.support.AnnotationConfigContextLoader', parent = [null]]].
14:18:46.865 [main] DEBUG o.s.j.d.DataSourceTransactionManager - Creating new transaction with name [crm.tariffs.tbasic.JdbcCommonTest.shouldSaveOneRecord]: PROPAGATION_REQUIRED,ISOLATION_DEFAULT; ''
14:18:47.364 [main] DEBUG o.s.j.d.DataSourceTransactionManager - Acquired Connection [Pooled connection wrapping physical connection org.postgresql.jdbc4.Jdbc4Connection@d86a6f] for JDBC transaction
14:18:47.378 [main] DEBUG o.s.j.d.DataSourceTransactionManager - Switching JDBC Connection [Pooled connection wrapping physical connection org.postgresql.jdbc4.Jdbc4Connection@d86a6f] to manual commit
14:18:47.382 [main] INFO o.s.t.c.t.TransactionContext - Began transaction (1) for test context [DefaultTestContext@49fc609f testClass = JdbcCommonTest, testInstance = crm.tariffs.tbasic.JdbcCommonTest@cd2dae5, testMethod = shouldSaveOneRecord@JdbcCommonTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@3a883ce7 testClass = JdbcCommonTest, locations = '{}', classes = '{class crm.tariffs.postgres.PostgresqlConfig}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextLoader = 'org.springframework.test.context.support.AnnotationConfigContextLoader', parent = [null]]]; transaction manager [org.springframework.jdbc.datasource.DataSourceTransactionManager@76a4ebf2]; rollback [true]
NEW!!
Columns: =
{
usr_id = 9 java.lang.Integer
usr_name = Test java.lang.String
} java.util.LinkedHashMap
COLUMNS SIZE!!! = 2
Columns in CREATE: =
{
usr_id = 9 java.lang.Integer
usr_name = Test java.lang.String
} java.util.LinkedHashMap
Create! INSERT INTO usr (usr_id, usr_name) VALUES (?, ?)
14:18:47.433 [main] DEBUG o.s.jdbc.core.JdbcTemplate - Executing prepared SQL update
14:18:47.435 [main] DEBUG o.s.jdbc.core.JdbcTemplate - Executing prepared SQL statement [INSERT INTO usr (usr_id, usr_name) VALUES (?, ?)]
14:18:47.572 [main] DEBUG o.s.jdbc.core.JdbcTemplate - SQL update affected 1 rows
14:18:47.583 [main] DEBUG o.s.jdbc.core.JdbcTemplate - Executing SQL query [SELECT * FROM usr]
14:18:47.708 [main] DEBUG o.s.j.d.DataSourceTransactionManager - Initiating transaction rollback
14:18:47.708 [main] DEBUG o.s.j.d.DataSourceTransactionManager - Rolling back JDBC transaction on Connection [Pooled connection wrapping physical connection org.postgresql.jdbc4.Jdbc4Connection@d86a6f]
14:18:47.721 [main] DEBUG o.s.j.d.DataSourceTransactionManager - Releasing JDBC Connection [Pooled connection wrapping physical connection org.postgresql.jdbc4.Jdbc4Connection@d86a6f] after transaction
14:18:47.721 [main] DEBUG o.s.jdbc.datasource.DataSourceUtils - Returning JDBC Connection to DataSource
14:18:47.725 [main] INFO o.s.t.c.t.TransactionContext - Rolled back transaction for test context [DefaultTestContext@49fc609f testClass = JdbcCommonTest, testInstance = crm.tariffs.tbasic.JdbcCommonTest@cd2dae5, testMethod = shouldSaveOneRecord@JdbcCommonTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@3a883ce7 testClass = JdbcCommonTest, locations = '{}', classes = '{class crm.tariffs.postgres.PostgresqlConfig}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextLoader = 'org.springframework.test.context.support.AnnotationConfigContextLoader', parent = [null]]].
14:18:47.729 [main] DEBUG o.s.t.c.s.DirtiesContextTestExecutionListener - After test method: context [DefaultTestContext@49fc609f testClass = JdbcCommonTest, testInstance = crm.tariffs.tbasic.JdbcCommonTest@cd2dae5, testMethod = shouldSaveOneRecord@JdbcCommonTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@3a883ce7 testClass = JdbcCommonTest, locations = '{}', classes = '{class crm.tariffs.postgres.PostgresqlConfig}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextLoader = 'org.springframework.test.context.support.AnnotationConfigContextLoader', parent = [null]]], class dirties context [false], class mode [null], method dirties context [false].
14:18:47.766 [main] DEBUG o.s.t.annotation.ProfileValueUtils - Retrieved @ProfileValueSourceConfiguration [null] for test class [crm.tariffs.tbasic.JdbcCommonTest]
14:18:47.767 [main] DEBUG o.s.t.annotation.ProfileValueUtils - Retrieved ProfileValueSource type [class org.springframework.test.annotation.SystemProfileValueSource] for class [crm.tariffs.tbasic.JdbcCommonTest]
14:18:47.769 [main] DEBUG o.s.t.c.s.DependencyInjectionTestExecutionListener - Performing dependency injection for test context [[DefaultTestContext@49fc609f testClass = JdbcCommonTest, testInstance = crm.tariffs.tbasic.JdbcCommonTest@2b30a42c, testMethod = [null], testException = [null], mergedContextConfiguration = [MergedContextConfiguration@3a883ce7 testClass = JdbcCommonTest, locations = '{}', classes = '{class crm.tariffs.postgres.PostgresqlConfig}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextLoader = 'org.springframework.test.context.support.AnnotationConfigContextLoader', parent = [null]]]].
14:18:47.771 [main] DEBUG o.s.t.c.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext from cache with key [[MergedContextConfiguration@3a883ce7 testClass = JdbcCommonTest, locations = '{}', classes = '{class crm.tariffs.postgres.PostgresqlConfig}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextLoader = 'org.springframework.test.context.support.AnnotationConfigContextLoader', parent = [null]]].
14:18:47.772 [main] DEBUG o.s.b.f.annotation.InjectionMetadata - Processing injected method of bean 'crm.tariffs.tbasic.JdbcCommonTest': ResourceElement for private crm.tariffs.dao.UsrDao crm.tariffs.tbasic.JdbcCommonTest.usrd
14:18:47.775 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'usrDao'
14:18:47.777 [main] DEBUG o.s.b.f.annotation.InjectionMetadata - Processing injected method of bean 'crm.tariffs.tbasic.JdbcCommonTest': ResourceElement for private javax.sql.DataSource crm.tariffs.tbasic.JdbcCommonTest.dataSource
14:18:47.777 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'dataSource'
14:18:47.779 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'org.springframework.transaction.config.internalTransactionAdvisor'
14:18:47.781 [main] DEBUG o.s.a.f.a.InfrastructureAdvisorAutoProxyCreator - Creating implicit proxy for bean 'crm.tariffs.tbasic.JdbcCommonTest' with 0 common interceptors and 1 specific interceptors
14:18:47.782 [main] DEBUG o.s.aop.framework.CglibAopProxy - Creating CGLIB proxy: target source is SingletonTargetSource for target object [crm.tariffs.tbasic.JdbcCommonTest@2b30a42c]
14:18:47.793 [main] DEBUG o.s.t.a.AnnotationTransactionAttributeSource - Adding transactional method 'JdbcCommonTest.shouldReturnTrueWhenEntityForGivenIdExists' with attribute: PROPAGATION_REQUIRED,ISOLATION_DEFAULT; ''
14:18:47.794 [main] DEBUG o.s.t.c.t.TransactionalTestExecutionListener - Explicit transaction definition [PROPAGATION_REQUIRED,ISOLATION_DEFAULT; ''] found for test context [DefaultTestContext@49fc609f testClass = JdbcCommonTest, testInstance = crm.tariffs.tbasic.JdbcCommonTest@2b30a42c, testMethod = shouldReturnTrueWhenEntityForGivenIdExists@JdbcCommonTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@3a883ce7 testClass = JdbcCommonTest, locations = '{}', classes = '{class crm.tariffs.postgres.PostgresqlConfig}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextLoader = 'org.springframework.test.context.support.AnnotationConfigContextLoader', parent = [null]]]
14:18:47.802 [main] DEBUG o.s.t.c.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext from cache with key [[MergedContextConfiguration@3a883ce7 testClass = JdbcCommonTest, locations = '{}', classes = '{class crm.tariffs.postgres.PostgresqlConfig}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextLoader = 'org.springframework.test.context.support.AnnotationConfigContextLoader', parent = [null]]].
14:18:47.803 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'transactionManager'
14:18:47.804 [main] DEBUG o.s.t.c.t.TransactionalTestExecutionListener - No method-level @Rollback override: using default rollback [true] for test context [DefaultTestContext@49fc609f testClass = JdbcCommonTest, testInstance = crm.tariffs.tbasic.JdbcCommonTest@2b30a42c, testMethod = shouldReturnTrueWhenEntityForGivenIdExists@JdbcCommonTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@3a883ce7 testClass = JdbcCommonTest, locations = '{}', classes = '{class crm.tariffs.postgres.PostgresqlConfig}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextLoader = 'org.springframework.test.context.support.AnnotationConfigContextLoader', parent = [null]]].
14:18:47.805 [main] DEBUG o.s.j.d.DataSourceTransactionManager - Creating new transaction with name [crm.tariffs.tbasic.JdbcCommonTest.shouldReturnTrueWhenEntityForGivenIdExists]: PROPAGATION_REQUIRED,ISOLATION_DEFAULT; ''
14:18:47.806 [main] DEBUG o.s.j.d.DataSourceTransactionManager - Acquired Connection [Pooled connection wrapping physical connection org.postgresql.jdbc4.Jdbc4Connection@d86a6f] for JDBC transaction
14:18:47.806 [main] DEBUG o.s.j.d.DataSourceTransactionManager - Switching JDBC Connection [Pooled connection wrapping physical connection org.postgresql.jdbc4.Jdbc4Connection@d86a6f] to manual commit
14:18:47.808 [main] INFO o.s.t.c.t.TransactionContext - Began transaction (1) for test context [DefaultTestContext@49fc609f testClass = JdbcCommonTest, testInstance = crm.tariffs.tbasic.JdbcCommonTest@2b30a42c, testMethod = shouldReturnTrueWhenEntityForGivenIdExists@JdbcCommonTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@3a883ce7 testClass = JdbcCommonTest, locations = '{}', classes = '{class crm.tariffs.postgres.PostgresqlConfig}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextLoader = 'org.springframework.test.context.support.AnnotationConfigContextLoader', parent = [null]]]; transaction manager [org.springframework.jdbc.datasource.DataSourceTransactionManager@76a4ebf2]; rollback [true]
14:18:47.822 [main] DEBUG o.s.jdbc.core.JdbcTemplate - Executing prepared SQL query
14:18:47.824 [main] DEBUG o.s.jdbc.core.JdbcTemplate - Executing prepared SQL statement [SELECT COUNT(*) FROM usr WHERE usr_id = ?]
14:18:47.875 [main] DEBUG o.s.jdbc.core.JdbcTemplate - Executing prepared SQL query
14:18:47.876 [main] DEBUG o.s.jdbc.core.JdbcTemplate - Executing prepared SQL statement [SELECT * FROM usr WHERE usr_id = ?]
USER!! = Захарова
14:18:47.880 [main] DEBUG o.s.j.d.DataSourceTransactionManager - Initiating transaction rollback
14:18:47.881 [main] DEBUG o.s.j.d.DataSourceTransactionManager - Rolling back JDBC transaction on Connection [Pooled connection wrapping physical connection org.postgresql.jdbc4.Jdbc4Connection@d86a6f]
14:18:47.883 [main] DEBUG o.s.j.d.DataSourceTransactionManager - Releasing JDBC Connection [Pooled connection wrapping physical connection org.postgresql.jdbc4.Jdbc4Connection@d86a6f] after transaction
14:18:47.884 [main] DEBUG o.s.jdbc.datasource.DataSourceUtils - Returning JDBC Connection to DataSource
14:18:47.885 [main] INFO o.s.t.c.t.TransactionContext - Rolled back transaction for test context [DefaultTestContext@49fc609f testClass = JdbcCommonTest, testInstance = crm.tariffs.tbasic.JdbcCommonTest@2b30a42c, testMethod = shouldReturnTrueWhenEntityForGivenIdExists@JdbcCommonTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@3a883ce7 testClass = JdbcCommonTest, locations = '{}', classes = '{class crm.tariffs.postgres.PostgresqlConfig}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextLoader = 'org.springframework.test.context.support.AnnotationConfigContextLoader', parent = [null]]].
14:18:47.888 [main] DEBUG o.s.t.c.s.DirtiesContextTestExecutionListener - After test method: context [DefaultTestContext@49fc609f testClass = JdbcCommonTest, testInstance = crm.tariffs.tbasic.JdbcCommonTest@2b30a42c, testMethod = shouldReturnTrueWhenEntityForGivenIdExists@JdbcCommonTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@3a883ce7 testClass = JdbcCommonTest, locations = '{}', classes = '{class crm.tariffs.postgres.PostgresqlConfig}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextLoader = 'org.springframework.test.context.support.AnnotationConfigContextLoader', parent = [null]]], class dirties context [false], class mode [null], method dirties context [false].
14:18:47.892 [main] DEBUG o.s.t.annotation.ProfileValueUtils - Retrieved @ProfileValueSourceConfiguration [null] for test class [crm.tariffs.tbasic.JdbcCommonTest]
14:18:47.894 [main] DEBUG o.s.t.annotation.ProfileValueUtils - Retrieved ProfileValueSource type [class org.springframework.test.annotation.SystemProfileValueSource] for class [crm.tariffs.tbasic.JdbcCommonTest]
14:18:47.896 [main] DEBUG o.s.t.c.s.DependencyInjectionTestExecutionListener - Performing dependency injection for test context [[DefaultTestContext@49fc609f testClass = JdbcCommonTest, testInstance = crm.tariffs.tbasic.JdbcCommonTest@6e535154, testMethod = [null], testException = [null], mergedContextConfiguration = [MergedContextConfiguration@3a883ce7 testClass = JdbcCommonTest, locations = '{}', classes = '{class crm.tariffs.postgres.PostgresqlConfig}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextLoader = 'org.springframework.test.context.support.AnnotationConfigContextLoader', parent = [null]]]].
14:18:47.897 [main] DEBUG o.s.t.c.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext from cache with key [[MergedContextConfiguration@3a883ce7 testClass = JdbcCommonTest, locations = '{}', classes = '{class crm.tariffs.postgres.PostgresqlConfig}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextLoader = 'org.springframework.test.context.support.AnnotationConfigContextLoader', parent = [null]]].
14:18:47.899 [main] DEBUG o.s.b.f.annotation.InjectionMetadata - Processing injected method of bean 'crm.tariffs.tbasic.JdbcCommonTest': ResourceElement for private crm.tariffs.dao.UsrDao crm.tariffs.tbasic.JdbcCommonTest.usrd
14:18:47.900 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'usrDao'
14:18:47.902 [main] DEBUG o.s.b.f.annotation.InjectionMetadata - Processing injected method of bean 'crm.tariffs.tbasic.JdbcCommonTest': ResourceElement for private javax.sql.DataSource crm.tariffs.tbasic.JdbcCommonTest.dataSource
14:18:47.903 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'dataSource'
14:18:47.904 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'org.springframework.transaction.config.internalTransactionAdvisor'
14:18:47.905 [main] DEBUG o.s.a.f.a.InfrastructureAdvisorAutoProxyCreator - Creating implicit proxy for bean 'crm.tariffs.tbasic.JdbcCommonTest' with 0 common interceptors and 1 specific interceptors
14:18:47.907 [main] DEBUG o.s.aop.framework.CglibAopProxy - Creating CGLIB proxy: target source is SingletonTargetSource for target object [crm.tariffs.tbasic.JdbcCommonTest@6e535154]
14:18:47.920 [main] DEBUG o.s.t.a.AnnotationTransactionAttributeSource - Adding transactional method 'JdbcCommonTest.shouldReturnOneRecordById' with attribute: PROPAGATION_REQUIRED,ISOLATION_DEFAULT; ''
14:18:47.925 [main] DEBUG o.s.t.c.t.TransactionalTestExecutionListener - Explicit transaction definition [PROPAGATION_REQUIRED,ISOLATION_DEFAULT; ''] found for test context [DefaultTestContext@49fc609f testClass = JdbcCommonTest, testInstance = crm.tariffs.tbasic.JdbcCommonTest@6e535154, testMethod = shouldReturnOneRecordById@JdbcCommonTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@3a883ce7 testClass = JdbcCommonTest, locations = '{}', classes = '{class crm.tariffs.postgres.PostgresqlConfig}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextLoader = 'org.springframework.test.context.support.AnnotationConfigContextLoader', parent = [null]]]
14:18:47.926 [main] DEBUG o.s.t.c.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext from cache with key [[MergedContextConfiguration@3a883ce7 testClass = JdbcCommonTest, locations = '{}', classes = '{class crm.tariffs.postgres.PostgresqlConfig}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextLoader = 'org.springframework.test.context.support.AnnotationConfigContextLoader', parent = [null]]].
14:18:47.927 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'transactionManager'
14:18:47.928 [main] DEBUG o.s.t.c.t.TransactionalTestExecutionListener - No method-level @Rollback override: using default rollback [true] for test context [DefaultTestContext@49fc609f testClass = JdbcCommonTest, testInstance = crm.tariffs.tbasic.JdbcCommonTest@6e535154, testMethod = shouldReturnOneRecordById@JdbcCommonTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@3a883ce7 testClass = JdbcCommonTest, locations = '{}', classes = '{class crm.tariffs.postgres.PostgresqlConfig}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextLoader = 'org.springframework.test.context.support.AnnotationConfigContextLoader', parent = [null]]].
14:18:47.929 [main] DEBUG o.s.j.d.DataSourceTransactionManager - Creating new transaction with name [crm.tariffs.tbasic.JdbcCommonTest.shouldReturnOneRecordById]: PROPAGATION_REQUIRED,ISOLATION_DEFAULT; ''
14:18:47.930 [main] DEBUG o.s.j.d.DataSourceTransactionManager - Acquired Connection [Pooled connection wrapping physical connection org.postgresql.jdbc4.Jdbc4Connection@d86a6f] for JDBC transaction
14:18:47.931 [main] DEBUG o.s.j.d.DataSourceTransactionManager - Switching JDBC Connection [Pooled connection wrapping physical connection org.postgresql.jdbc4.Jdbc4Connection@d86a6f] to manual commit
14:18:47.934 [main] INFO o.s.t.c.t.TransactionContext - Began transaction (1) for test context [DefaultTestContext@49fc609f testClass = JdbcCommonTest, testInstance = crm.tariffs.tbasic.JdbcCommonTest@6e535154, testMethod = shouldReturnOneRecordById@JdbcCommonTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@3a883ce7 testClass = JdbcCommonTest, locations = '{}', classes = '{class crm.tariffs.postgres.PostgresqlConfig}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextLoader = 'org.springframework.test.context.support.AnnotationConfigContextLoader', parent = [null]]]; transaction manager [org.springframework.jdbc.datasource.DataSourceTransactionManager@76a4ebf2]; rollback [true]
14:18:47.936 [main] DEBUG o.s.jdbc.core.JdbcTemplate - Executing prepared SQL update
14:18:47.937 [main] DEBUG o.s.jdbc.core.JdbcTemplate - Executing prepared SQL statement [INSERT INTO USR VALUES (?, ?)]
14:18:47.940 [main] DEBUG o.s.jdbc.core.JdbcTemplate - SQL update affected 1 rows
14:18:47.941 [main] DEBUG o.s.jdbc.core.JdbcTemplate - Executing prepared SQL query
14:18:47.942 [main] DEBUG o.s.jdbc.core.JdbcTemplate - Executing prepared SQL statement [SELECT * FROM usr WHERE usr_id = ?]
USER!! = WDEWF
14:18:47.947 [main] DEBUG o.s.j.d.DataSourceTransactionManager - Initiating transaction rollback
14:18:47.947 [main] DEBUG o.s.j.d.DataSourceTransactionManager - Rolling back JDBC transaction on Connection [Pooled connection wrapping physical connection org.postgresql.jdbc4.Jdbc4Connection@d86a6f]
14:18:47.950 [main] DEBUG o.s.j.d.DataSourceTransactionManager - Releasing JDBC Connection [Pooled connection wrapping physical connection org.postgresql.jdbc4.Jdbc4Connection@d86a6f] after transaction
14:18:47.950 [main] DEBUG o.s.jdbc.datasource.DataSourceUtils - Returning JDBC Connection to DataSource
14:18:47.952 [main] INFO o.s.t.c.t.TransactionContext - Rolled back transaction for test context [DefaultTestContext@49fc609f testClass = JdbcCommonTest, testInstance = crm.tariffs.tbasic.JdbcCommonTest@6e535154, testMethod = shouldReturnOneRecordById@JdbcCommonTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@3a883ce7 testClass = JdbcCommonTest, locations = '{}', classes = '{class crm.tariffs.postgres.PostgresqlConfig}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextLoader = 'org.springframework.test.context.support.AnnotationConfigContextLoader', parent = [null]]].
14:18:47.954 [main] DEBUG o.s.t.c.s.DirtiesContextTestExecutionListener - After test method: context [DefaultTestContext@49fc609f testClass = JdbcCommonTest, testInstance = crm.tariffs.tbasic.JdbcCommonTest@6e535154, testMethod = shouldReturnOneRecordById@JdbcCommonTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@3a883ce7 testClass = JdbcCommonTest, locations = '{}', classes = '{class crm.tariffs.postgres.PostgresqlConfig}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextLoader = 'org.springframework.test.context.support.AnnotationConfigContextLoader', parent = [null]]], class dirties context [false], class mode [null], method dirties context [false].
14:18:47.967 [main] DEBUG o.s.t.annotation.ProfileValueUtils - Retrieved @ProfileValueSourceConfiguration [null] for test class [crm.tariffs.tbasic.JdbcCommonTest]
14:18:47.968 [main] DEBUG o.s.t.annotation.ProfileValueUtils - Retrieved ProfileValueSource type [class org.springframework.test.annotation.SystemProfileValueSource] for class [crm.tariffs.tbasic.JdbcCommonTest]
14:18:47.970 [main] DEBUG o.s.t.c.s.DependencyInjectionTestExecutionListener - Performing dependency injection for test context [[DefaultTestContext@49fc609f testClass = JdbcCommonTest, testInstance = crm.tariffs.tbasic.JdbcCommonTest@5b38c1ec, testMethod = [null], testException = [null], mergedContextConfiguration = [MergedContextConfiguration@3a883ce7 testClass = JdbcCommonTest, locations = '{}', classes = '{class crm.tariffs.postgres.PostgresqlConfig}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextLoader = 'org.springframework.test.context.support.AnnotationConfigContextLoader', parent = [null]]]].
14:18:47.972 [main] DEBUG o.s.t.c.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext from cache with key [[MergedContextConfiguration@3a883ce7 testClass = JdbcCommonTest, locations = '{}', classes = '{class crm.tariffs.postgres.PostgresqlConfig}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextLoader = 'org.springframework.test.context.support.AnnotationConfigContextLoader', parent = [null]]].
14:18:47.974 [main] DEBUG o.s.b.f.annotation.InjectionMetadata - Processing injected method of bean 'crm.tariffs.tbasic.JdbcCommonTest': ResourceElement for private crm.tariffs.dao.UsrDao crm.tariffs.tbasic.JdbcCommonTest.usrd
14:18:47.975 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'usrDao'
14:18:47.979 [main] DEBUG o.s.b.f.annotation.InjectionMetadata - Processing injected method of bean 'crm.tariffs.tbasic.JdbcCommonTest': ResourceElement for private javax.sql.DataSource crm.tariffs.tbasic.JdbcCommonTest.dataSource
14:18:47.988 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'dataSource'
14:18:47.990 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'org.springframework.transaction.config.internalTransactionAdvisor'
14:18:47.995 [main] DEBUG o.s.a.f.a.InfrastructureAdvisorAutoProxyCreator - Creating implicit proxy for bean 'crm.tariffs.tbasic.JdbcCommonTest' with 0 common interceptors and 1 specific interceptors
14:18:47.996 [main] DEBUG o.s.aop.framework.CglibAopProxy - Creating CGLIB proxy: target source is SingletonTargetSource for target object [crm.tariffs.tbasic.JdbcCommonTest@5b38c1ec]
14:18:48.020 [main] DEBUG o.s.t.a.AnnotationTransactionAttributeSource - Adding transactional method 'JdbcCommonTest.dId' with attribute: PROPAGATION_REQUIRED,ISOLATION_DEFAULT; ''
14:18:48.020 [main] DEBUG o.s.t.c.t.TransactionalTestExecutionListener - Explicit transaction definition [PROPAGATION_REQUIRED,ISOLATION_DEFAULT; ''] found for test context [DefaultTestContext@49fc609f testClass = JdbcCommonTest, testInstance = crm.tariffs.tbasic.JdbcCommonTest@5b38c1ec, testMethod = dId@JdbcCommonTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@3a883ce7 testClass = JdbcCommonTest, locations = '{}', classes = '{class crm.tariffs.postgres.PostgresqlConfig}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextLoader = 'org.springframework.test.context.support.AnnotationConfigContextLoader', parent = [null]]]
14:18:48.021 [main] DEBUG o.s.t.c.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext from cache with key [[MergedContextConfiguration@3a883ce7 testClass = JdbcCommonTest, locations = '{}', classes = '{class crm.tariffs.postgres.PostgresqlConfig}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextLoader = 'org.springframework.test.context.support.AnnotationConfigContextLoader', parent = [null]]].
14:18:48.022 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'transactionManager'
14:18:48.022 [main] DEBUG o.s.t.c.t.TransactionalTestExecutionListener - No method-level @Rollback override: using default rollback [true] for test context [DefaultTestContext@49fc609f testClass = JdbcCommonTest, testInstance = crm.tariffs.tbasic.JdbcCommonTest@5b38c1ec, testMethod = dId@JdbcCommonTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@3a883ce7 testClass = JdbcCommonTest, locations = '{}', classes = '{class crm.tariffs.postgres.PostgresqlConfig}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextLoader = 'org.springframework.test.context.support.AnnotationConfigContextLoader', parent = [null]]].
14:18:48.023 [main] DEBUG o.s.j.d.DataSourceTransactionManager - Creating new transaction with name [crm.tariffs.tbasic.JdbcCommonTest.dId]: PROPAGATION_REQUIRED,ISOLATION_DEFAULT; ''
14:18:48.023 [main] DEBUG o.s.j.d.DataSourceTransactionManager - Acquired Connection [Pooled connection wrapping physical connection org.postgresql.jdbc4.Jdbc4Connection@d86a6f] for JDBC transaction
14:18:48.024 [main] DEBUG o.s.j.d.DataSourceTransactionManager - Switching JDBC Connection [Pooled connection wrapping physical connection org.postgresql.jdbc4.Jdbc4Connection@d86a6f] to manual commit
14:18:48.038 [main] INFO o.s.t.c.t.TransactionContext - Began transaction (1) for test context [DefaultTestContext@49fc609f testClass = JdbcCommonTest, testInstance = crm.tariffs.tbasic.JdbcCommonTest@5b38c1ec, testMethod = dId@JdbcCommonTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@3a883ce7 testClass = JdbcCommonTest, locations = '{}', classes = '{class crm.tariffs.postgres.PostgresqlConfig}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextLoader = 'org.springframework.test.context.support.AnnotationConfigContextLoader', parent = [null]]]; transaction manager [org.springframework.jdbc.datasource.DataSourceTransactionManager@76a4ebf2]; rollback [true]
TEST: delete by id
14:18:48.040 [main] DEBUG o.s.j.d.DataSourceTransactionManager - Initiating transaction rollback
14:18:48.040 [main] DEBUG o.s.j.d.DataSourceTransactionManager - Rolling back JDBC transaction on Connection [Pooled connection wrapping physical connection org.postgresql.jdbc4.Jdbc4Connection@d86a6f]
14:18:48.040 [main] DEBUG o.s.j.d.DataSourceTransactionManager - Releasing JDBC Connection [Pooled connection wrapping physical connection org.postgresql.jdbc4.Jdbc4Connection@d86a6f] after transaction
14:18:48.040 [main] DEBUG o.s.jdbc.datasource.DataSourceUtils - Returning JDBC Connection to DataSource
14:18:48.041 [main] INFO o.s.t.c.t.TransactionContext - Rolled back transaction for test context [DefaultTestContext@49fc609f testClass = JdbcCommonTest, testInstance = crm.tariffs.tbasic.JdbcCommonTest@5b38c1ec, testMethod = dId@JdbcCommonTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@3a883ce7 testClass = JdbcCommonTest, locations = '{}', classes = '{class crm.tariffs.postgres.PostgresqlConfig}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextLoader = 'org.springframework.test.context.support.AnnotationConfigContextLoader', parent = [null]]].
14:18:48.042 [main] DEBUG o.s.t.c.s.DirtiesContextTestExecutionListener - After test method: context [DefaultTestContext@49fc609f testClass = JdbcCommonTest, testInstance = crm.tariffs.tbasic.JdbcCommonTest@5b38c1ec, testMethod = dId@JdbcCommonTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@3a883ce7 testClass = JdbcCommonTest, locations = '{}', classes = '{class crm.tariffs.postgres.PostgresqlConfig}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextLoader = 'org.springframework.test.context.support.AnnotationConfigContextLoader', parent = [null]]], class dirties context [false], class mode [null], method dirties context [false].
14:18:48.044 [main] DEBUG o.s.t.c.s.DirtiesContextTestExecutionListener - After test class: context [DefaultTestContext@49fc609f testClass = JdbcCommonTest, testInstance = [null], testMethod = [null], testException = [null], mergedContextConfiguration = [MergedContextConfiguration@3a883ce7 testClass = JdbcCommonTest, locations = '{}', classes = '{class crm.tariffs.postgres.PostgresqlConfig}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextLoader = 'org.springframework.test.context.support.AnnotationConfigContextLoader', parent = [null]]], dirtiesContext [false].
Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 4.848 sec
14:18:48.091 [Thread-0] INFO o.s.c.s.GenericApplicationContext - Closing org.springframework.context.support.GenericApplicationContext@1d29cf23: startup date [Sun Aug 14 14:18:44 MSK 2016]; root of context hierarchy
14:18:48.103 [Thread-0] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'lifecycleProcessor'
14:18:48.107 [Thread-0] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Destroying singletons in org.springframework.beans.factory.support.DefaultListableBeanFactory@646be2c3: defining beans [org.springframework.context.annotation.internalConfigurationAnnotationProcessor,org.springframework.context.annotation.internalAutowiredAnnotationProcessor,org.springframework.context.annotation.internalRequiredAnnotationProcessor,org.springframework.context.annotation.internalCommonAnnotationProcessor,postgresqlConfig,org.springframework.context.annotation.ConfigurationClassPostProcessor.importAwareProcessor,org.springframework.context.annotation.ConfigurationClassPostProcessor.enhancedConfigurationProcessor,org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration,org.springframework.transaction.config.internalTransactionAdvisor,transactionAttributeSource,transactionInterceptor,transactionManager,usrDao,dataSource,sqlCoommon,org.springframework.aop.config.internalAutoProxyCreator]; root of factory hierarchy
14:18:48.109 [Thread-0] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Retrieved dependent beans for bean 'usrDao': [crm.tariffs.tbasic.JdbcCommonTest]
14:18:48.111 [Thread-0] DEBUG o.s.b.f.s.DisposableBeanAdapter - Invoking destroy method 'close' on bean with name 'dataSource'
14:18:48.141 [Thread-0] DEBUG o.s.b.f.s.DisposableBeanAdapter - Invoking destroy() on bean with name 'postgresqlConfig'
14:18:48.143 [Thread-0] DEBUG o.s.b.f.s.DisposableBeanAdapter - Invoking destroy() on bean with name 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration'
Results :
Tests run: 4, Failures: 0, Errors: 0, Skipped: 0
[INFO]
[INFO] --- maven-jar-plugin:2.4:jar (default-jar) @ testCrm ---
[INFO] Building jar: /home/radagast/docs/CRACKER/crack_proj/target/testCrm-1.0-SNAPSHOT.jar
[INFO]
[INFO] >>> maven-source-plugin:2.2.1:jar (attach-sources) > generate-sources @ testCrm >>>
[INFO]
[INFO] <<< maven-source-plugin:2.2.1:jar (attach-sources) < generate-sources @ testCrm <<<
[INFO]
[INFO] --- maven-source-plugin:2.2.1:jar (attach-sources) @ testCrm ---
[INFO]
[INFO] --- maven-javadoc-plugin:2.9.1:jar (attach-javadocs) @ testCrm ---
[INFO]
Loading source files for package crm.tariffs.sql...
Loading source files for package crm.tariffs.obj...
Loading source files for package crm.tariffs.basic...
Loading source files for package crm.tariffs.dao...
Constructing Javadoc information...
Standard Doclet version 1.8.0_102
Building tree for all the packages and classes...
Generating /home/radagast/docs/CRACKER/crack_proj/target/apidocs/crm/tariffs/sql/SqlCommon.html...
Generating /home/radagast/docs/CRACKER/crack_proj/target/apidocs/crm/tariffs/obj/Offer.html...
Generating /home/radagast/docs/CRACKER/crack_proj/target/apidocs/crm/tariffs/obj/Params.html...
Generating /home/radagast/docs/CRACKER/crack_proj/target/apidocs/crm/tariffs/obj/UserOffer.html...
Generating /home/radagast/docs/CRACKER/crack_proj/target/apidocs/crm/tariffs/obj/Usr.html...
Generating /home/radagast/docs/CRACKER/crack_proj/target/apidocs/crm/tariffs/basic/GetTable.html...
Generating /home/radagast/docs/CRACKER/crack_proj/target/apidocs/crm/tariffs/basic/JdbcCommon.html...
Generating /home/radagast/docs/CRACKER/crack_proj/target/apidocs/crm/tariffs/basic/MapUpdate.html...
Generating /home/radagast/docs/CRACKER/crack_proj/target/apidocs/crm/tariffs/dao/DaoFactory.html...
Generating /home/radagast/docs/CRACKER/crack_proj/target/apidocs/crm/tariffs/dao/OfferDao.html...
Generating /home/radagast/docs/CRACKER/crack_proj/target/apidocs/crm/tariffs/dao/UserOfferDao.html...
Generating /home/radagast/docs/CRACKER/crack_proj/target/apidocs/overview-frame.html...
Generating /home/radagast/docs/CRACKER/crack_proj/target/apidocs/crm/tariffs/basic/package-frame.html...
Generating /home/radagast/docs/CRACKER/crack_proj/target/apidocs/crm/tariffs/basic/package-summary.html...
Generating /home/radagast/docs/CRACKER/crack_proj/target/apidocs/crm/tariffs/basic/package-tree.html...
Generating /home/radagast/docs/CRACKER/crack_proj/target/apidocs/crm/tariffs/dao/package-frame.html...
Generating /home/radagast/docs/CRACKER/crack_proj/target/apidocs/crm/tariffs/dao/package-summary.html...
Generating /home/radagast/docs/CRACKER/crack_proj/target/apidocs/crm/tariffs/dao/package-tree.html...
Generating /home/radagast/docs/CRACKER/crack_proj/target/apidocs/crm/tariffs/obj/package-frame.html...
Generating /home/radagast/docs/CRACKER/crack_proj/target/apidocs/crm/tariffs/obj/package-summary.html...
Generating /home/radagast/docs/CRACKER/crack_proj/target/apidocs/crm/tariffs/obj/package-tree.html...
Generating /home/radagast/docs/CRACKER/crack_proj/target/apidocs/crm/tariffs/sql/package-frame.html...
Generating /home/radagast/docs/CRACKER/crack_proj/target/apidocs/crm/tariffs/sql/package-summary.html...
Generating /home/radagast/docs/CRACKER/crack_proj/target/apidocs/crm/tariffs/sql/package-tree.html...
Generating /home/radagast/docs/CRACKER/crack_proj/target/apidocs/constant-values.html...
Generating /home/radagast/docs/CRACKER/crack_proj/target/apidocs/serialized-form.html...
Generating /home/radagast/docs/CRACKER/crack_proj/target/apidocs/crm/tariffs/sql/class-use/SqlCommon.html...
Generating /home/radagast/docs/CRACKER/crack_proj/target/apidocs/crm/tariffs/obj/class-use/Params.html...
Generating /home/radagast/docs/CRACKER/crack_proj/target/apidocs/crm/tariffs/obj/class-use/Offer.html...
Generating /home/radagast/docs/CRACKER/crack_proj/target/apidocs/crm/tariffs/obj/class-use/UserOffer.html...
Generating /home/radagast/docs/CRACKER/crack_proj/target/apidocs/crm/tariffs/obj/class-use/Usr.html...
Generating /home/radagast/docs/CRACKER/crack_proj/target/apidocs/crm/tariffs/basic/class-use/MapUpdate.html...
Generating /home/radagast/docs/CRACKER/crack_proj/target/apidocs/crm/tariffs/basic/class-use/GetTable.html...
Generating /home/radagast/docs/CRACKER/crack_proj/target/apidocs/crm/tariffs/basic/class-use/JdbcCommon.html...
Generating /home/radagast/docs/CRACKER/crack_proj/target/apidocs/crm/tariffs/dao/class-use/UserOfferDao.html...
Generating /home/radagast/docs/CRACKER/crack_proj/target/apidocs/crm/tariffs/dao/class-use/OfferDao.html...
Generating /home/radagast/docs/CRACKER/crack_proj/target/apidocs/crm/tariffs/dao/class-use/DaoFactory.html...
Generating /home/radagast/docs/CRACKER/crack_proj/target/apidocs/crm/tariffs/basic/package-use.html...
Generating /home/radagast/docs/CRACKER/crack_proj/target/apidocs/crm/tariffs/dao/package-use.html...
Generating /home/radagast/docs/CRACKER/crack_proj/target/apidocs/crm/tariffs/obj/package-use.html...
Generating /home/radagast/docs/CRACKER/crack_proj/target/apidocs/crm/tariffs/sql/package-use.html...
Building index for all the packages and classes...
Generating /home/radagast/docs/CRACKER/crack_proj/target/apidocs/overview-tree.html...
Generating /home/radagast/docs/CRACKER/crack_proj/target/apidocs/index-all.html...
Generating /home/radagast/docs/CRACKER/crack_proj/target/apidocs/deprecated-list.html...
Building index for all classes...
Generating /home/radagast/docs/CRACKER/crack_proj/target/apidocs/allclasses-frame.html...
Generating /home/radagast/docs/CRACKER/crack_proj/target/apidocs/allclasses-noframe.html...
Generating /home/radagast/docs/CRACKER/crack_proj/target/apidocs/index.html...
Generating /home/radagast/docs/CRACKER/crack_proj/target/apidocs/overview-summary.html...
Generating /home/radagast/docs/CRACKER/crack_proj/target/apidocs/help-doc.html...
[INFO] Building jar: /home/radagast/docs/CRACKER/crack_proj/target/testCrm-1.0-SNAPSHOT-javadoc.jar
[INFO] ------------------------------------------------------------------------
[INFO] BUILD SUCCESS
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 27.590 s
[INFO] Finished at: 2016-08-14T14:18:58+03:00
[INFO] Final Memory: 20M/49M
[INFO] ------------------------------------------------------------------------