File: TestMethodLookup.cs

package info (click to toggle)
mono-debugger 0.60%2Bdfsg-4
  • links: PTS, VCS
  • area: main
  • in suites: lenny
  • size: 9,556 kB
  • ctags: 22,787
  • sloc: ansic: 99,407; cs: 42,429; sh: 9,192; makefile: 376
file content (251 lines) | stat: -rw-r--r-- 9,704 bytes parent folder | download
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
using System;
using System.Text;
using NUnit.Framework;

using Mono.Debugger;
using Mono.Debugger.Languages;
using Mono.Debugger.Frontend;

namespace Mono.Debugger.Tests
{
	[TestFixture]
	public class TestMethodLookup : TestSuite
	{
		public TestMethodLookup ()
			: base ("TestMethodLookup")
		{ }

		const int LineMain = 250;
		const int LineWriteLine = 253;

		int BreakpointWriteLine;
		StringBuilder Failures = new StringBuilder ();
		int CountFailures;

		protected void AssertListAndBreak (string method)
		{
			try {
			AssertExecute ("list " + method);
			int bpt = AssertBreakpoint (method);
			AssertExecute ("delete " + bpt);
			} catch (AssertionException ex) {
				++CountFailures;
				Failures.Append (ex.Message + "\n");
			}
		}

		protected void AssertListAndBreakAmbiguous (string method)
		{
			string message = "Ambiguous method `" + method + "'; need to use full name";
			AssertExecuteException ("list " + method, message);
			AssertExecuteException ("break " + method, message);
		}

		protected void AssertListAndBreakAmbiguous (string method, string name)
		{
			string message = "Ambiguous method `" + name + "'; need to use full name";
			AssertExecuteException ("list " + method, message);
			AssertExecuteException ("break " + method, message);
		}

		[Test]
		[Category("ManagedTypes")]
		public void Main ()
		{
			Process process = Start ();
			Assert.IsTrue (process.IsManaged);
			Assert.IsTrue (process.MainThread.IsStopped);
			Thread thread = process.MainThread;

			AssertStopped (thread, "X.Main()", LineMain);

			BreakpointWriteLine = AssertBreakpoint (LineWriteLine);

			AssertExecute ("continue");
			AssertHitBreakpoint (thread, BreakpointWriteLine, "X.Main()", LineWriteLine);

			AssertListAndBreak ("Hello");
			AssertListAndBreak ("X.Hello");
			AssertListAndBreak ("Hello()");
			AssertListAndBreak ("X.Hello()");

			AssertListAndBreak ("Simple");
			AssertListAndBreak ("Simple(Foo.Bar.Test)");

			AssertListAndBreak ("StaticHello");
			AssertListAndBreak ("StaticHello()");

			AssertListAndBreak ("Overloaded()");
			AssertListAndBreak ("Overloaded(int)");
			AssertListAndBreak ("Overloaded(Root)");
			AssertListAndBreak ("Overloaded(Foo.Bar.Test)");

			AssertListAndBreak ("StaticOverloaded()");
			AssertListAndBreak ("StaticOverloaded(int)");
			AssertListAndBreak ("StaticOverloaded(Root)");
			AssertListAndBreak ("StaticOverloaded(Foo.Bar.Test)");

			AssertListAndBreak ("Root.Hello");
			AssertListAndBreak ("Root.Hello()");

			AssertListAndBreak ("Root.Simple");
			AssertListAndBreak ("Root.Simple(Foo.Bar.Test)");

			AssertListAndBreak ("Root.StaticHello");
			AssertListAndBreak ("Root.StaticHello()");

			AssertListAndBreakAmbiguous ("Root.Overloaded");
			AssertListAndBreakAmbiguous ("Root.StaticOverloaded");

			AssertListAndBreak ("Root.Overloaded()");
			AssertListAndBreak ("Root.Overloaded(int)");
			AssertListAndBreak ("Root.Overloaded(Root)");
			AssertListAndBreak ("Root.Overloaded(Foo.Bar.Test)");

			AssertListAndBreak ("Root.StaticOverloaded()");
			AssertListAndBreak ("Root.StaticOverloaded(int)");
			AssertListAndBreak ("Root.StaticOverloaded(Root)");
			AssertListAndBreak ("Root.StaticOverloaded(Foo.Bar.Test)");

			AssertListAndBreak ("Foo.Bar.Test.Hello");
			AssertListAndBreak ("Foo.Bar.Test.Hello()");

			AssertListAndBreak ("Foo.Bar.Test.Simple");
			AssertListAndBreak ("Foo.Bar.Test.Simple(Foo.Bar.Test)");

			AssertListAndBreak ("Foo.Bar.Test.StaticHello");
			AssertListAndBreak ("Foo.Bar.Test.StaticHello()");

			AssertListAndBreakAmbiguous ("Foo.Bar.Test.Overloaded");
			AssertListAndBreakAmbiguous ("Foo.Bar.Test.StaticOverloaded");

			AssertListAndBreak ("Foo.Bar.Test.Overloaded()");
			AssertListAndBreak ("Foo.Bar.Test.Overloaded(int)");
			AssertListAndBreak ("Foo.Bar.Test.Overloaded(Root)");
			AssertListAndBreak ("Foo.Bar.Test.Overloaded(Foo.Bar.Test)");

			AssertListAndBreak ("Foo.Bar.Test.StaticOverloaded()");
			AssertListAndBreak ("Foo.Bar.Test.StaticOverloaded(int)");
			AssertListAndBreak ("Foo.Bar.Test.StaticOverloaded(Root)");
			AssertListAndBreak ("Foo.Bar.Test.StaticOverloaded(Foo.Bar.Test)");

			AssertPrint (thread, "StaticHello()", "(bool) true");
			AssertPrint (thread, "StaticOverloaded()", "(bool) true");
			AssertPrint (thread, "StaticOverloaded(3)", "(bool) true");
			AssertPrint (thread, "StaticOverloaded(root)", "(bool) true");
			AssertPrint (thread, "StaticOverloaded(test)", "(bool) true");

			AssertPrintException (thread, "Hello()",
					      "Cannot invoke instance method `X.Hello()' with a " +
					      "type reference.");
			AssertPrintException (thread, "Simple(test)",
					      "Cannot invoke instance method " +
					      "`X.Simple(Foo.Bar.Test)' with a type reference.");
			AssertPrintException (thread, "Overloaded()",
					      "Cannot invoke instance method " +
					      "`X.Overloaded()' with a type reference.");
			AssertPrintException (thread, "Overloaded(3)",
					      "Cannot invoke instance method " +
					      "`X.Overloaded(int)' with a type reference.");
			AssertPrintException (thread, "Overloaded(root)",
					      "Cannot invoke instance method " +
					      "`X.Overloaded(Root)' with a type reference.");
			AssertPrintException (thread, "Overloaded(test)",
					      "Cannot invoke instance method " +
					      "`X.Overloaded(Foo.Bar.Test)' with a type reference.");

			AssertPrint (thread, "root.Hello()", "(bool) true");
			AssertPrint (thread, "root.Simple(test)", "(bool) true");
			AssertPrint (thread, "root.Overloaded()", "(bool) true");
			AssertPrint (thread, "root.Overloaded(3)", "(bool) true");
			AssertPrint (thread, "root.Overloaded(root)", "(bool) true");
			AssertPrint (thread, "root.Overloaded(test)", "(bool) true");
			AssertPrint (thread, "Root.Overloaded(\"Hello\")", "(bool) true");

			AssertPrintException (thread, "Root.Hello()",
					      "Cannot invoke instance method `Root.Hello()' with a " +
					      "type reference.");
			AssertPrintException (thread, "Root.Simple(test)",
					      "Cannot invoke instance method " +
					      "`Root.Simple(Foo.Bar.Test)' with a type reference.");
			AssertPrintException (thread, "Root.Overloaded()",
					      "Cannot invoke instance method " +
					      "`Root.Overloaded()' with a type reference.");
			AssertPrintException (thread, "Root.Overloaded(3)",
					      "Cannot invoke instance method " +
					      "`Root.Overloaded(int)' with a type reference.");
			AssertPrintException (thread, "Root.Overloaded(root)",
					      "Cannot invoke instance method " +
					      "`Root.Overloaded(Root)' with a type reference.");
			AssertPrintException (thread, "Root.Overloaded(test)",
					      "Cannot invoke instance method " +
					      "`Root.Overloaded(Foo.Bar.Test)' with a type reference.");

			AssertPrint (thread, "Root.StaticHello()", "(bool) true");
			AssertPrint (thread, "Root.StaticOverloaded()", "(bool) true");
			AssertPrint (thread, "Root.StaticOverloaded(3)", "(bool) true");
			AssertPrint (thread, "Root.StaticOverloaded(root)", "(bool) true");
			AssertPrint (thread, "Root.StaticOverloaded(test)", "(bool) true");

			AssertPrint (thread, "test.Hello()", "(bool) true");
			AssertPrint (thread, "test.Simple(test)", "(bool) true");
			AssertPrint (thread, "test.Overloaded()", "(bool) true");
			AssertPrint (thread, "test.Overloaded(3)", "(bool) true");
			AssertPrint (thread, "test.Overloaded(root)", "(bool) true");
			AssertPrint (thread, "test.Overloaded(test)", "(bool) true");
			AssertPrint (thread, "Foo.Bar.Test.Overloaded(\"Hello\")",
				     "(bool) true");

			AssertPrint (thread, "Foo.Bar.Test.StaticHello()",
				     "(bool) true");
			AssertPrint (thread, "Foo.Bar.Test.StaticOverloaded()",
				     "(bool) true");
			AssertPrint (thread, "Foo.Bar.Test.StaticOverloaded(3)",
				     "(bool) true");
			AssertPrint (thread, "Foo.Bar.Test.StaticOverloaded(root)",
				     "(bool) true");
			AssertPrint (thread, "Foo.Bar.Test.StaticOverloaded(test)",
				     "(bool) true");

			AssertPrint (thread, "new Root ()", "(Root) { }");
			AssertPrint (thread, "new Root (3)", "(Root) { }");
			AssertPrint (thread, "new Root (root)", "(Root) { }");
			AssertPrint (thread, "new Root (test)", "(Root) { }");
			AssertPrint (thread, "new Foo.Bar.Test ()", "(Foo.Bar.Test) { }");
			AssertPrint (thread, "new Foo.Bar.Test (3)", "(Foo.Bar.Test) { }");
			AssertPrint (thread, "new Foo.Bar.Test (root)", "(Foo.Bar.Test) { }");
			AssertPrint (thread, "new Foo.Bar.Test (test)", "(Foo.Bar.Test) { }");

			AssertListAndBreak ("-get Property");
			AssertListAndBreak ("-get StaticProperty");
			AssertListAndBreak ("-get Root.Property");
			AssertListAndBreak ("-get Root.StaticProperty");
			AssertListAndBreak ("-get Foo.Bar.Test.Property");
			AssertListAndBreak ("-get Foo.Bar.Test.StaticProperty");

			AssertListAndBreak ("-ctor X");
			AssertListAndBreak ("-ctor X ()");

			AssertListAndBreak ("-ctor Root ()");
			AssertListAndBreak ("-ctor Root (int)");
			AssertListAndBreak ("-ctor Root (Root)");
			AssertListAndBreak ("-ctor Root (Foo.Bar.Test)");

			AssertListAndBreak ("-ctor Foo.Bar.Test ()");
			AssertListAndBreak ("-ctor Foo.Bar.Test (int)");
			AssertListAndBreak ("-ctor Foo.Bar.Test (Root)");
			AssertListAndBreak ("-ctor Foo.Bar.Test (Foo.Bar.Test)");

			AssertListAndBreakAmbiguous ("-ctor Root", "Root..ctor");
			AssertListAndBreakAmbiguous ("-ctor Foo.Bar.Test", "Foo.Bar.Test..ctor");

			AssertExecute ("continue");
			AssertTargetOutput ("Root");
			AssertTargetOutput ("Foo.Bar.Test");
			AssertTargetExited (thread.Process);

			if (CountFailures > 0)
				Assert.Fail ("{0} failures:\n{1}", CountFailures, Failures.ToString ());
		}
	}
}