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
|
//
// Tests for System.Web.UI.WebControls.DataBoundControl.cs
//
// Author:
// Chris Toshok (toshok@ximian.com)
//
//
// Copyright (C) 2005 Novell, Inc (http://www.novell.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.
//
#if NET_2_0
using NUnit.Framework;
using System;
using System.IO;
using System.Globalization;
using System.Web;
using System.Web.UI;
using System.Web.UI.Adapters;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.Adapters;
using System.Text;
using System.Collections;
using System.Data;
using MonoTests.SystemWeb.Framework;
namespace MonoTests.System.Web.UI.WebControls
{
[TestFixture]
public class DataBoundControlTest {
class Poker : DataBoundControl {
protected override void PerformSelect ()
{
//Console.WriteLine ("PerformSelect\n{0}", Environment.StackTrace);
Assert.IsTrue (RequiresDataBinding);
base.PerformSelect ();
Assert.IsFalse (RequiresDataBinding);
}
protected internal override void PerformDataBinding (IEnumerable data)
{
Assert.IsFalse (RequiresDataBinding);
base.PerformDataBinding (data);
}
public void DoValidateDataSource (object dataSource)
{
ValidateDataSource (dataSource);
}
public bool GetInitialized ()
{
return Initialized;
}
public bool GetRequiresDataBinding ()
{
return RequiresDataBinding;
}
public void SetRequiresDataBinding (bool value)
{
RequiresDataBinding = value;
}
public override void DataBind ()
{
Assert.IsTrue (RequiresDataBinding);
base.DataBind ();
Assert.IsFalse (RequiresDataBinding);
}
public void DoEnsureDataBound ()
{
Assert.IsTrue (RequiresDataBinding);
EnsureDataBound ();
Assert.IsFalse (RequiresDataBinding);
}
}
class MyDataBoundControl : DataBoundControl
{
public int CreateDataSourceSelectArgumentsCalled;
public DataSourceSelectArguments CreatedDataSourceSelectArguments;
private StringBuilder dataBindTrace = new StringBuilder ();
public string DataBindTrace {
get { return dataBindTrace.ToString (); }
}
public override void DataBind () {
dataBindTrace = new StringBuilder ();
dataBindTrace.Append ("[Start DataBind]");
base.DataBind ();
dataBindTrace.Append ("[End DataBind]");
}
protected override void PerformSelect () {
dataBindTrace.Append ("[Start PerformSelect]");
base.PerformSelect ();
dataBindTrace.Append ("[End PerformSelect]");
}
protected internal override void PerformDataBinding (IEnumerable data) {
dataBindTrace.Append ("[Start PerformDataBinding]");
base.PerformDataBinding (data);
dataBindTrace.Append ("[End PerformDataBinding]");
}
protected override void OnDataBinding (EventArgs e) {
dataBindTrace.Append ("[Start OnDataBinding]");
base.OnDataBinding (e);
dataBindTrace.Append ("[End OnDataBinding]");
}
protected override void OnDataBound (EventArgs e) {
dataBindTrace.Append ("[Start OnDataBound]");
base.OnDataBound (e);
dataBindTrace.Append ("[End OnDataBound]");
}
protected override DataSourceView GetData () {
dataBindTrace.Append ("[Start GetData]");
DataSourceView d = base.GetData ();
dataBindTrace.Append ("[End GetData]");
return d;
}
public DataSourceView DoGetData () {
return GetData ();
}
public IDataSource DoGetDataSource () {
return GetDataSource ();
}
public void DoEnsureDataBound () {
EnsureDataBound();
}
protected override DataSourceSelectArguments CreateDataSourceSelectArguments () {
CreateDataSourceSelectArgumentsCalled++;
CreatedDataSourceSelectArguments = base.CreateDataSourceSelectArguments ();
return CreatedDataSourceSelectArguments;
}
public DataSourceSelectArguments GetSelectArguments () {
return SelectArguments;
}
internal ControlAdapter controlAdapter;
protected override global::System.Web.UI.Adapters.ControlAdapter ResolveAdapter ()
{
return controlAdapter;
}
}
[TestFixtureTearDown]
public void Unload ()
{
WebTest.Unload ();
}
[Test]
public void DataBoundControl_GetData () {
Page p = new Page ();
MyDataBoundControl dc = new MyDataBoundControl ();
p.Controls.Add (dc);
DataSourceView data = dc.DoGetData ();
Assert.IsNotNull (data, "GetData");
IDataSource dataSource = dc.DoGetDataSource ();
Assert.IsNotNull (dataSource, "GetDataSource");
}
[Test]
public void DataBoundControl_DataBindFlow () {
Page p = new Page ();
MyDataBoundControl dc = new MyDataBoundControl ();
p.Controls.Add (dc);
dc.DataBind ();
string expected = "[Start DataBind][Start PerformSelect][Start OnDataBinding][End OnDataBinding][Start GetData][End GetData][Start PerformDataBinding][End PerformDataBinding][Start OnDataBound][End OnDataBound][End PerformSelect][End DataBind]";
Assert.AreEqual (expected, dc.DataBindTrace, "DataBindFlow");
}
[Test]
[Category ("NunitWeb")]
#if TARGET_JVM
[Ignore ("TD #6665")]
#endif
public void DataBoundControl_DataBindFlow2 () {
new WebTest (PageInvoker.CreateOnLoad (DataBoundControl_DataBindFlow2_Load)).Run ();
}
public static void DataBoundControl_DataBindFlow2_Load(Page p){
MyDataBoundControl dc = new MyDataBoundControl ();
p.Controls.Add (dc);
dc.DataSourceID = "ObjectDataSource1";
ObjectDataSource ods = new ObjectDataSource (typeof(Control).FullName, "ToString");
ods.ID = "ObjectDataSource1";
p.Controls.Add (ods);
dc.DataBind ();
string expected = "[Start DataBind][Start PerformSelect][Start GetData][End GetData][Start OnDataBinding][End OnDataBinding][Start PerformDataBinding][End PerformDataBinding][Start OnDataBound][End OnDataBound][End PerformSelect][End DataBind]";
Assert.AreEqual (expected, dc.DataBindTrace, "DataBindFlow");
}
[Test]
public void DataBoundControl_DataBindFlow3 () {
Page p = new Page ();
MyDataBoundControl dc = new MyDataBoundControl ();
p.Controls.Add (dc);
DataSourceSelectArguments arg1 = dc.GetSelectArguments ();
Assert.AreEqual (1, dc.CreateDataSourceSelectArgumentsCalled, "CreateDataSourceSelectArgumentsCalled#1");
dc.DataBind ();
DataSourceSelectArguments argCreated2 = dc.CreatedDataSourceSelectArguments;
DataSourceSelectArguments arg2 = dc.GetSelectArguments ();
Assert.AreEqual (2, dc.CreateDataSourceSelectArgumentsCalled, "CreateDataSourceSelectArgumentsCalled#2");
dc.DataBind ();
DataSourceSelectArguments argCreated3 = dc.CreatedDataSourceSelectArguments;
Assert.AreEqual (3, dc.CreateDataSourceSelectArgumentsCalled, "CreateDataSourceSelectArgumentsCalled#3");
Assert.IsTrue (object.ReferenceEquals (argCreated2, arg2), "CreateDataSourceSelectArgumentsCalled#4");
}
[Test]
public void Defaults ()
{
Poker p = new Poker ();
Assert.AreEqual ("", p.DataMember, "A1");
Assert.AreEqual ("", p.DataSourceID, "A2");
}
[Test]
public void ValidateDataSource () {
Poker p = new Poker ();
// Allows null
p.DoValidateDataSource (null);
}
// MSDN: The ConfirmInitState method sets the initialized state of the data-bound
// control. The method is called by the DataBoundControl class in its OnLoad method.
[Test]
[Category ("NunitWeb")]
public void Initialized ()
{
WebTest t = new WebTest ();
PageDelegates pd = new PageDelegates ();
pd.Load = Initialized_Load;
pd.PreRenderComplete = Initialized_PreRender;
t.Invoker = new PageInvoker (pd);
t.Run ();
}
public static void Initialized_Load (Page p)
{
Poker c = new Poker ();
p.Form.Controls.Clear ();
p.Form.Controls.Add (c);
Assert.IsFalse (c.GetInitialized (), "Initialized_Load");
Assert.IsFalse (c.GetRequiresDataBinding (), "RequiresDataBinding_Load");
}
public static void Initialized_PreRender (Page p)
{
Poker c = (Poker) p.Form.Controls [0];
Assert.IsTrue (c.GetInitialized (), "Initialized_PreRender");
Assert.IsTrue (c.GetRequiresDataBinding (), "RequiresDataBinding_PreRender");
}
[Test]
[Category ("NunitWeb")]
public void Initialized2 () {
WebTest t = new WebTest ();
PageDelegates pd = new PageDelegates ();
pd.Init = Initialized2_Init;
pd.Load = Initialized2_Load;
pd.PreRenderComplete = Initialized2_PreRender;
t.Invoker = new PageInvoker (pd);
t.Run ();
}
public static void Initialized2_Init (Page p) {
Poker c = new Poker ();
p.Form.Controls.Clear ();
p.Form.Controls.Add (c);
Assert.IsFalse (c.GetInitialized (), "Initialized_Init");
Assert.IsFalse (c.GetRequiresDataBinding (), "RequiresDataBinding_Init");
}
public static void Initialized2_Load (Page p) {
Poker c = (Poker) p.Form.Controls [0];
Assert.IsTrue (c.GetInitialized (), "Initialized_Load");
Assert.IsTrue (c.GetRequiresDataBinding (), "RequiresDataBinding_Load");
c.SetRequiresDataBinding (false);
}
public static void Initialized2_PreRender (Page p) {
Poker c = (Poker) p.Form.Controls [0];
Assert.IsTrue (c.GetInitialized (), "Initialized_PreRender");
Assert.IsFalse (c.GetRequiresDataBinding (), "RequiresDataBinding_PreRender");
}
[Test]
public void DataBind ()
{
Page p = new Page ();
ObjectDataSource ods = new ObjectDataSource (typeof (Control).FullName, "ToString");
ods.ID = "ObjectDataSource1";
p.Controls.Add (ods);
Poker c = new Poker ();
c.DataSourceID = "ObjectDataSource1";
c.SetRequiresDataBinding (true);
p.Controls.Add (c);
c.DataBind ();
}
[Test]
public void EnsureDataBound ()
{
Page p = new Page ();
ObjectDataSource ods = new ObjectDataSource (typeof (Control).FullName, "ToString");
ods.ID = "ObjectDataSource1";
p.Controls.Add (ods);
Poker c = new Poker ();
c.DataSourceID = "ObjectDataSource1";
c.SetRequiresDataBinding (true);
p.Controls.Add (c);
c.DoEnsureDataBound ();
}
class MyControlAdapter : ControlAdapter
{
}
class MyDataBoundControlAdapter : DataBoundControlAdapter
{
internal bool perform_data_binding_called;
protected internal override void PerformDataBinding (IEnumerable data)
{
perform_data_binding_called = true;
}
}
[Test]
[Category ("NotDotNet")] // Adapter binding does work on .NET but not by calling ResolveAdapter
public void PerformDataBinding_UsesAdapter ()
{
MyDataBoundControl c = new MyDataBoundControl ();
MyDataBoundControlAdapter a = new MyDataBoundControlAdapter();;
c.controlAdapter = a;
c.DataBind ();
Assert.IsTrue (a.perform_data_binding_called, "PerformDataBinding_UsesAdapter");
}
[Test]
public void PerformDataBinding_WorksWithControlAdapter ()
{
MyDataBoundControl c = new MyDataBoundControl ();
ControlAdapter a = new MyControlAdapter();;
c.controlAdapter = a;
c.DataBind ();
}
}
}
#endif
|