-
Notifications
You must be signed in to change notification settings - Fork 45
Commit f9c9534
authored
Call
* Introduce deep `UtModel` mapper
* Add `flush` after every `entityManager` usage
* Move setting up Spring specific RD responses to `SpringUtExecutionInstrumentation`
* Remove unused `getBean` rd call
* Dynamically remove failing `UtStatementModel`s
* Comment out unsafe class loading of `javax.servlet.http.Cookie` (until #2542 is fixed)
* Avoid `mockMvc.perform((RequestBuilder) null)` tests
* Address comments from #2550
* Clarify that we discard `mockMvc.perform((RequestBuilder) null)` testentityManager.flush()
on every entityManager
usage and dynamically remove failing UtStatementCallModel
s (#2550)1 parent 1931f26 commit f9c9534
File tree
27 files changed
+592
-315
lines changed- utbot-framework-api/src/main/kotlin/org/utbot/framework/plugin/api
- mapper
- util
- utbot-framework/src/main/kotlin/org/utbot/framework
- codegen
- domain/models
- tree
- context/spring
- utbot-instrumentation/src
- main/kotlin/org/utbot/instrumentation
- instrumentation
- execution
- constructors
- context
- phases
- spring
- process
- rd
- generated
- test/kotlin/org/utbot/instrumentation/instrumentation/execution/constructors
- utbot-rd/src/main/rdgen/org/utbot/rd/models
27 files changed
+592
-315
lines changedLines changed: 10 additions & 4 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
55 | 55 |
| |
56 | 56 |
| |
57 | 57 |
| |
58 | + | ||
59 | + | ||
60 | + | ||
58 | 61 |
| |
59 | 62 |
| |
60 | 63 |
| |
| |||
767 | 770 |
| |
768 | 771 |
| |
769 | 772 |
| |
770 | - | ||
773 | + | ||
771 | 774 |
| |
772 | 775 |
| |
773 | 776 |
| |
774 | 777 |
| |
775 | 778 |
| |
776 | 779 |
| |
777 | 780 |
| |
778 | - | ||
781 | + | ||
779 | 782 |
| |
780 | 783 |
| |
781 | 784 |
| |
| |||
789 | 792 |
| |
790 | 793 |
| |
791 | 794 |
| |
792 | - | ||
795 | + | ||
793 | 796 |
| |
794 | 797 |
| |
795 | 798 |
| |
| |||
820 | 823 |
| |
821 | 824 |
| |
822 | 825 |
| |
823 | - | ||
826 | + | ||
827 | + | ||
828 | + | ||
829 | + | ||
824 | 830 |
| |
825 | 831 |
| |
826 | 832 |
| |
|
Lines changed: 123 additions & 0 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
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 | + |
Lines changed: 18 additions & 0 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
1 | + | ||
2 | + | ||
3 | + | ||
4 | + | ||
5 | + | ||
6 | + | ||
7 | + | ||
8 | + | ||
9 | + | ||
10 | + | ||
11 | + | ||
12 | + | ||
13 | + | ||
14 | + | ||
15 | + | ||
16 | + | ||
17 | + | ||
18 | + |
Lines changed: 7 additions & 0 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
1 | + | ||
2 | + | ||
3 | + | ||
4 | + | ||
5 | + | ||
6 | + | ||
7 | + |
Lines changed: 15 additions & 0 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
1 | + | ||
2 | + | ||
3 | + | ||
4 | + | ||
5 | + | ||
6 | + | ||
7 | + | ||
8 | + | ||
9 | + | ||
10 | + | ||
11 | + | ||
12 | + | ||
13 | + | ||
14 | + | ||
15 | + |
Lines changed: 64 additions & 0 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
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 | + |
Lines changed: 45 additions & 31 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
69 | 69 |
| |
70 | 70 |
| |
71 | 71 |
| |
72 | + | ||
73 | + | ||
74 | + | ||
75 | + | ||
76 | + | ||
77 | + | ||
78 | + | ||
79 | + | ||
80 | + | ||
81 | + | ||
82 | + | ||
72 | 83 |
| |
73 | 84 |
| |
74 | 85 |
| |
| |||
182 | 193 |
| |
183 | 194 |
| |
184 | 195 |
| |
185 | - | ||
186 | - | ||
187 | - | ||
188 | - | ||
189 | - | ||
190 | - | ||
196 | + | ||
197 | + | ||
198 | + | ||
199 | + | ||
200 | + | ||
201 | + | ||
202 | + | ||
191 | 203 |
| |
192 | 204 |
| |
193 | 205 |
| |
| |||
376 | 388 |
| |
377 | 389 |
| |
378 | 390 |
| |
379 | - | ||
380 | - | ||
381 | - | ||
391 | + | ||
392 | + | ||
393 | + | ||
394 | + | ||
382 | 395 |
| |
383 | 396 |
| |
384 | 397 |
| |
| |||
455 | 468 |
| |
456 | 469 |
| |
457 | 470 |
| |
458 | - | ||
459 | - | ||
460 | - | ||
461 | - | ||
462 | - | ||
463 | - | ||
464 | - | ||
465 | - | ||
466 | - | ||
467 | - | ||
468 | - | ||
469 | - | ||
470 | - | ||
471 | - | ||
472 | - | ||
473 | - | ||
474 | - | ||
475 | - | ||
476 | - | ||
477 | - | ||
478 | - | ||
479 | - | ||
471 | + | ||
472 | + | ||
473 | + | ||
474 | + | ||
475 | + | ||
476 | + | ||
477 | + | ||
478 | + | ||
479 | + | ||
480 | + | ||
481 | + | ||
482 | + | ||
483 | + | ||
484 | + | ||
485 | + | ||
486 | + | ||
487 | + | ||
488 | + | ||
489 | + | ||
490 | + | ||
491 | + | ||
492 | + | ||
493 | + | ||
480 | 494 |
| |
481 | 495 |
| |
482 | 496 |
| |
|
Lines changed: 1 addition & 1 deletion
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
135 | 135 |
| |
136 | 136 |
| |
137 | 137 |
| |
138 | - | ||
138 | + | ||
139 | 139 |
| |
140 | 140 |
|
0 commit comments