summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Controls.Issues/Xamarin.Forms.Controls.Issues.Shared/Issue206.cs
blob: cb3831a009a5482326632e903d740880941cdc8b (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
using System.ComponentModel;
using System.Diagnostics;
using System.Linq;
using Xamarin.Forms.CustomAttributes;
using Xamarin.Forms.Internals;

#if UITEST
using NUnit.Framework;
using Xamarin.UITest;
#endif

namespace Xamarin.Forms.Controls.Issues
{
	[Preserve (AllMembers = true)]
	[Issue (IssueTracker.Github, 206, "ViewCell with Label's text does not resize when value is changed", PlatformAffected.iOS)]
	public class Issue206 : TestContentPage
	{
		protected override void Init ()
		{
			_listScreen = new Issue206ListScreen ();
			Title = "Click 9";
			Content = _listScreen.View;
		}

		Issue206ListScreen _listScreen;

#if UITEST
		[Test]
		[NUnit.Framework.Category ("ManualReview")]
		[UiTest (typeof(ViewCell))]
		public void Issue206TestsTextInTextCellResizes ()
		{
			RunningApp.WaitForElement (q => q.Marked ("Click 9"));
			RunningApp.WaitForElement (q => q.Marked ("0"));
			RunningApp.WaitForElement (q => q.Marked ("1"));
			RunningApp.WaitForElement (q => q.Marked ("2"));

			RunningApp.Screenshot ("All elements exist");

			var scrollRect = RunningApp.Query (q => q.Raw ("* index:0"))[0].Rect;
			Xamarin.Forms.Core.UITests.Gestures.ScrollForElement (RunningApp, "* marked:'9'", new Xamarin.Forms.Core.UITests.Drag (scrollRect, Xamarin.Forms.Core.UITests.Drag.Direction.BottomToTop, Xamarin.Forms.Core.UITests.Drag.DragLength.Long));
			RunningApp.Screenshot ("I see 9");

			RunningApp.Tap (q => q.Marked ("9"));
			RunningApp.WaitForNoElement (q => q.Marked ("9"));

			RunningApp.Screenshot ("The text should not be cropped");
		}
#endif

	}

	[Preserve (AllMembers = true)]
	public class Issue206ListScreen
	{
		public ListView View { get; private set; }

		internal class A : INotifyPropertyChanged
		{
			string _text;
			public string Text {
				get {
					return _text;
				}
				set {
					_text = value;
					if(PropertyChanged != null)
						PropertyChanged(this, new PropertyChangedEventArgs("Text"));
				}
			}

			#region INotifyPropertyChanged implementation

			public event PropertyChangedEventHandler PropertyChanged;

			#endregion
		}

		[Preserve (AllMembers = true)]
		internal class ViewCellTest : ViewCell
		{
			static int s_inc = 0;

			public ViewCellTest ()
			{
				var stackLayout = new StackLayout {
					Orientation = StackOrientation.Horizontal
				};

				var label = new Label ();
				label.SetBinding (Label.TextProperty, "Text");

				var box = new BoxView {WidthRequest = 100, HeightRequest = 10, Color = Color.Red};

				stackLayout.Children.Add (label);
				stackLayout.Children.Add (box);

				View = stackLayout;
			}

			protected override void OnAppearing ()
			{
				base.OnAppearing ();
				Debug.WriteLine ("Appearing: " + ((A)BindingContext).Text + " : " + s_inc);
				s_inc++;
			}

			protected override void OnDisappearing ()
			{
				base.OnDisappearing ();
				Debug.WriteLine ("Disappearing: " + ((A)BindingContext).Text + " : " + s_inc);
				s_inc++;
			}
		}

		public Issue206ListScreen ()
		{

			View = new ListView ();

			View.RowHeight = 30;

			var n = 50;
			var items = Enumerable.Range (0, n).Select (i => new A {Text = i.ToString ()}).ToList ();
			View.ItemsSource = items;

			View.ItemTemplate = new DataTemplate (typeof (ViewCellTest));

			View.ItemSelected += (sender, e) => {
				var cell = (e.SelectedItem as A);
				if (cell == null)
					return;
				var x = int.Parse (cell.Text);
				if (x == 5) {
					n += 10;
					View.ItemsSource = Enumerable.Range (0, n).Select (i => new A { Text = i.ToString () }).ToList ();
				} else {
					cell.Text = (x + 1).ToString ();
				}
			};
				
		}
	}
}