Welcome to mirror list, hosted at ThFree Co, Russian Federation.

AdvancedEvaluationTests.cs « Shared « Mono.Debugging.Tests « UnitTests - github.com/mono/debugger-libs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7c171a34aff2f88ca1e7646ff1c8f56012a535d2 (plain)
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
//
// AdvancedEvaluationTests.cs
//
// Author:
//       David Karlaš <david.karlas@xamarin.com>
//
// Copyright (c) 2015 Xamarin Inc. (http://xamarin.com)
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in
// all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
// THE SOFTWARE.
using System;
using System.Linq;
using NUnit.Framework;

namespace Mono.Debugging.Tests
{
	[TestFixture]
	public abstract class AdvancedEvaluationTests : DebugTests
	{
		protected AdvancedEvaluationTests (string de, bool allowTargetInvokes) : base (de)
		{
			AllowTargetInvokes = allowTargetInvokes;
		}

		[TestFixtureSetUp]
		public override void SetUp ()
		{
			base.SetUp ();
			Start ("AdvancedEvaluation");
		}

		[Test]
		public void NamedTupleIndexMissmatch ()
		{
			IgnoreCorDebugger ();
			InitializeTest ();
			AddBreakpoint ("9196deef-9d41-41d6-bcef-9e3ef58f9635");
			StartTest ("NamedTupleIndexMissmatchTest");
			CheckPosition ("9196deef-9d41-41d6-bcef-9e3ef58f9635");
			var val = Eval ("item.xmlNs");
			Assert.AreEqual ("\"test\"", val.Value);
			Assert.AreEqual ("string", val.TypeName);
		}

		[Test]
		public void Bug24998 ()
		{
			InitializeTest ();
			AddBreakpoint ("cc622137-a162-4b91-a85c-88241e68c3ea");
			StartTest ("Bug24998Test");
			CheckPosition ("cc622137-a162-4b91-a85c-88241e68c3ea");
			var val = Eval ("someField");
			Assert.AreEqual ("\"das\"", val.Value);
			Assert.AreEqual ("string", val.TypeName);

			val = Eval ("someVariable");
			Assert.AreEqual ("System.Collections.ArrayList", val.TypeName);
			var children = val.GetAllChildrenSync ();
			Assert.AreEqual (2, children.Length);
			Assert.AreEqual ("[0]", children [0].ChildSelector);
			Assert.AreEqual ("1", children [0].Value);
			Assert.AreEqual ("int", children [0].TypeName);

			val = Eval ("action");
			Assert.AreEqual ("System.Action", val.TypeName);
		}

		[Test]
		public void Bug33193 ()
		{
			InitializeTest ();
			AddBreakpoint ("f1665382-7ddc-4c65-9c20-39d4a0ae9cf1");
			StartTest ("Bug33193Test");
			CheckPosition ("f1665382-7ddc-4c65-9c20-39d4a0ae9cf1");
			Continue ("f1665382-7ddc-4c65-9c20-39d4a0ae9cf1");
			var val = Eval ("item1");
			Assert.AreEqual ("\"b\"", val.Value);
			Assert.AreEqual ("string", val.TypeName);
		}

		[Test]
		public void LocalFunctionVariablesTest ()
		{
			InitializeTest ();
			AddBreakpoint ("07a0e6ef-e1d2-4f11-ab67-78e6ae5ea3bb");
			StartTest ("LocalFunctionVariablesTest");
			CheckPosition ("07a0e6ef-e1d2-4f11-ab67-78e6ae5ea3bb");

			var val = Eval ("a");
			Assert.AreEqual ("int", val.TypeName);
			Assert.AreEqual ("23", val.Value);

			var frame = Session.ActiveThread.Backtrace.GetFrame (0);
			var locals = frame.GetAllLocalsSync ();
			Assert.AreEqual (4, locals.Length);

			val = locals.Single (l => l.Name == "a");
			Assert.AreEqual ("int", val.TypeName);
			Assert.AreEqual ("23", val.Value);

			val = locals.Single (l => l.Name == "b");
			Assert.AreEqual ("int", val.TypeName);
			Assert.AreEqual ("24", val.Value);

			val = locals.Single (l => l.Name == "c");
			Assert.AreEqual ("string", val.TypeName);
			Assert.AreEqual ("\"hi\"", val.Value);

			val = locals.Single (l => l.Name == "d");
			Assert.AreEqual ("int", val.TypeName);
			Assert.AreEqual ("25", val.Value);
		}

		[Test]
		public void LocalFunctionNoCaptureVariablesTest ()
		{
			InitializeTest ();
			AddBreakpoint ("056bb4b5-1c7a-4e21-bd93-abd7389809d0");
			StartTest ("LocalFunctionNoCaptureVariablesTest");
			CheckPosition ("056bb4b5-1c7a-4e21-bd93-abd7389809d0");

			var val = Eval ("a");
			Assert.AreEqual ("int", val.TypeName);
			Assert.AreEqual ("17", val.Value);

			var frame = Session.ActiveThread.Backtrace.GetFrame (0);
			var locals = frame.GetAllLocalsSync ();
			Assert.AreEqual (3, locals.Length);

			val = locals.Single (l => l.Name == "a");
			Assert.AreEqual ("int", val.TypeName);
			Assert.AreEqual ("17", val.Value);

			val = locals.Single (l => l.Name == "b");
			Assert.AreEqual ("int", val.TypeName);
			Assert.AreEqual ("23", val.Value);

			val = locals.Single (l => l.Name == "c");
			Assert.AreEqual ("int", val.TypeName);
			Assert.AreEqual ("31", val.Value);
		}

		[Test]
		public void LocalFunctionCaptureDelegateVariablesTest ()
		{
			InitializeTest ();
			AddBreakpoint ("94100486-d7c4-4239-9d87-ad61287117d5");
			StartTest ("LocalFunctionCaptureDelegateVariablesTest");
			CheckPosition ("94100486-d7c4-4239-9d87-ad61287117d5");

			var val = Eval ("a");
			Assert.AreEqual ("int", val.TypeName);
			Assert.AreEqual ("5", val.Value);

			var frame = Session.ActiveThread.Backtrace.GetFrame (0);
			var locals = frame.GetAllLocalsSync ();
			Assert.AreEqual (2, locals.Length);

			val = locals.Single (l => l.Name == "a");
			Assert.AreEqual ("int", val.TypeName);
			Assert.AreEqual ("5", val.Value);

			val = locals.Single (l => l.Name == "i");
			Assert.AreEqual ("int", val.TypeName);
			Assert.AreEqual ("7", val.Value);
		}

		[Test]
		public void YieldMethodTest ()
		{
			InitializeTest ();
			AddBreakpoint ("0b1212f8-9035-43dc-bf01-73efd078d680");
			StartTest ("YieldMethodTest");
			CheckPosition ("0b1212f8-9035-43dc-bf01-73efd078d680");

			var val = Eval ("someVariable");
			Assert.AreEqual ("System.Collections.ArrayList", val.TypeName);
			Assert.AreEqual (1, val.GetAllChildrenSync ().Length);

			AddBreakpoint ("e96b28bb-59bf-445d-b71f-316726ba4c52");
			Continue ("e96b28bb-59bf-445d-b71f-316726ba4c52");

			val = Eval ("someField");
			Assert.AreEqual ("\"das1\"", val.Value);
			Assert.AreEqual ("string", val.TypeName);
			val = Eval ("someVariable");
			Assert.AreEqual ("System.Collections.ArrayList", val.TypeName);
			Assert.AreEqual (2, val.GetAllChildrenSync ().Length);

			AddBreakpoint ("760feb92-176a-43d7-b5c9-116c4a3c6a6c");
			Continue ("760feb92-176a-43d7-b5c9-116c4a3c6a6c");

			val = Eval ("someField");
			Assert.AreEqual ("\"das2\"", val.Value);
			Assert.AreEqual ("string", val.TypeName);
			val = Eval ("someVariable");
			Assert.AreEqual ("System.Collections.ArrayList", val.TypeName);
			Assert.AreEqual (3, val.GetAllChildrenSync ().Length);

			AddBreakpoint ("a9a9aa9d-6b8b-4724-9741-2a3e1fb435e8");
			Continue ("a9a9aa9d-6b8b-4724-9741-2a3e1fb435e8");

			val = Eval ("someField");
			Assert.AreEqual ("\"das2\"", val.Value);
			Assert.AreEqual ("string", val.TypeName);
			val = Eval ("someVariable");
			Assert.AreEqual ("System.Collections.ArrayList", val.TypeName);
			Assert.AreEqual (3, val.GetAllChildrenSync ().Length);

		}

		[Test]
		public void InvocationsCountDuringExpandingTest ()
		{
			IgnoreVsDebugger ("Behavior has changed in CoreClr debugger 1-21-0");
			InitializeTest ();
			AddBreakpoint ("8865cace-6b57-42cc-ad55-68a2c12dd3d7");
			StartTest ("InvocationsCountDuringExpandingTest");
			CheckPosition ("8865cace-6b57-42cc-ad55-68a2c12dd3d7");
			var options = Session.EvaluationOptions.Clone ();
			options.GroupPrivateMembers = false; // to access private fields (otherwise they are in a Private subgroup)
			var value = Eval ("mutableFieldClass");
			var sharedX = value.GetChildSync ("sharedX", options);
			Assert.NotNull (sharedX, "sharedX");

			var prop1 = value.GetChildSync("Prop1", options);
			Assert.NotNull (prop1, "Prop1");
			Assert.AreEqual ("MonoDevelop.Debugger.Tests.TestApp.AdvancedEvaluation.MutableField", prop1.TypeName);
			var prop1X = prop1.GetChildSync ("x", options);
			Assert.NotNull (prop1X, "Prop1.x");
			Assert.AreEqual ("0", prop1X.Value, "Prop1.x"); // before CorValRef optimization this field evaluated to 2,
			// because every value to the root object was recalculated - this was wrong behavior

			var prop2 = value.GetChildSync ("Prop2", options);
			Assert.NotNull (prop2, "Prop2");
			var prop2X = prop2.GetChildSync("x", options);
			Assert.NotNull (prop2X, "Prop2.x");
			Assert.AreEqual ("1", prop2X.Value, "Prop2.x");

			Assert.AreEqual ("2", sharedX.Value, "sharedX");
		}

		[Test]
		public void MethodWithTypeGenericArgsEval ()
		{
			InitializeTest ();
			AddBreakpoint ("ba6350e5-7149-4cc2-a4cf-8a54c635eb38");
			StartTest ("MethodWithTypeGenericArgsEval");
			CheckPosition ("ba6350e5-7149-4cc2-a4cf-8a54c635eb38");

			var baseMethodEval = Eval ("genericClass.BaseMethodWithClassTArg (wrappedA)");
			Assert.NotNull (baseMethodEval);
			Assert.AreEqual ("{Wrapper(wrappedA)}", baseMethodEval.Value);

			var thisMethodEval = Eval ("genericClass.RetMethodWithClassTArg (a)");
			Assert.NotNull (thisMethodEval);
			Assert.AreEqual ("{Just A}", thisMethodEval.Value);
		}


	}
}