summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Controls.Issues/Xamarin.Forms.Controls.Issues.Shared/Bugzilla29247.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Xamarin.Forms.Controls.Issues/Xamarin.Forms.Controls.Issues.Shared/Bugzilla29247.cs')
-rw-r--r--Xamarin.Forms.Controls.Issues/Xamarin.Forms.Controls.Issues.Shared/Bugzilla29247.cs67
1 files changed, 67 insertions, 0 deletions
diff --git a/Xamarin.Forms.Controls.Issues/Xamarin.Forms.Controls.Issues.Shared/Bugzilla29247.cs b/Xamarin.Forms.Controls.Issues/Xamarin.Forms.Controls.Issues.Shared/Bugzilla29247.cs
new file mode 100644
index 00000000..74828e71
--- /dev/null
+++ b/Xamarin.Forms.Controls.Issues/Xamarin.Forms.Controls.Issues.Shared/Bugzilla29247.cs
@@ -0,0 +1,67 @@
+using System;
+
+using Xamarin.Forms.CustomAttributes;
+
+#if UITEST
+using Xamarin.UITest;
+using NUnit.Framework;
+#endif
+
+namespace Xamarin.Forms.Controls
+{
+ [Preserve (AllMembers = true)]
+ [Issue (IssueTracker.Bugzilla, 29247, "iOS Device.OpenUri breaks with encoded params", PlatformAffected.iOS )]
+ public class Bugzilla29247 : TestContentPage
+ {
+ protected override void Init ()
+ {
+ Content = new StackLayout {
+ VerticalOptions = LayoutOptions.Center,
+ Children = {
+ new Label {
+ XAlign = TextAlignment.Center,
+ Text = "Welcome to Xamarin Forms!"
+ },
+ new Button {
+ Text = "Without Params (Works)",
+ AutomationId = "btnOpenUri1",
+ Command = new Command (() => Device.OpenUri (new Uri ("http://www.bing.com")))
+ },
+ new Button {
+ Text = "With encoded Params (Breaks)",
+ AutomationId = "btnOpenUri2",
+ Command = new Command (() => Device.OpenUri (new Uri ("http://www.bing.com/search?q=xamarin%20bombs%20on%20this")))
+ },
+ new Button {
+ Text = "With decoded Params (Breaks)",
+ AutomationId = "btnOpenUri3",
+ Command = new Command (() => Device.OpenUri (new Uri ("http://www.bing.com/search?q=xamarin bombs on this")))
+ }
+ }
+ };
+ }
+
+ #if UITEST
+ [Test]
+ [Ignore("Fails on ios 7.1")]
+ public void Bugzilla29247Test ()
+ {
+ RunningApp.Tap (q => q.Marked ("btnOpenUri1"));
+ }
+
+ [Test]
+ [Ignore("Fails on ios 7.1")]
+ public void Bugzilla29247EncodedParamsTest ()
+ {
+ RunningApp.Tap (q => q.Marked ("btnOpenUri2"));
+ }
+
+ [Test]
+ [Ignore("Fails on ios 7.1")]
+ public void Bugzilla29247DecodeParamsTest ()
+ {
+ RunningApp.Tap (q => q.Marked ("btnOpenUri3"));
+ }
+ #endif
+ }
+}