summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Xaml.UnitTests
diff options
context:
space:
mode:
authorStephane Delcroix <stephane@delcroix.org>2016-12-01 22:10:11 +0100
committerGitHub <noreply@github.com>2016-12-01 22:10:11 +0100
commit70d29b9e924b3185f4b1de188ba799b26a14b108 (patch)
tree0c3713990264a2f588935ebd1d041b725f262f27 /Xamarin.Forms.Xaml.UnitTests
parent26d5b2b803d77f46bc1dacd716f86bfd23da7eb8 (diff)
downloadxamarin-forms-70d29b9e924b3185f4b1de188ba799b26a14b108.tar.gz
xamarin-forms-70d29b9e924b3185f4b1de188ba799b26a14b108.tar.bz2
xamarin-forms-70d29b9e924b3185f4b1de188ba799b26a14b108.zip
[XamlC] support non-generic IMarkup on ABPs (#562)
* [XamlC] support custom markups on ABPs * [XamlC] test for 47950
Diffstat (limited to 'Xamarin.Forms.Xaml.UnitTests')
-rw-r--r--Xamarin.Forms.Xaml.UnitTests/Issues/Bz47950.xaml12
-rw-r--r--Xamarin.Forms.Xaml.UnitTests/Issues/Bz47950.xaml.cs40
-rw-r--r--Xamarin.Forms.Xaml.UnitTests/Issues/Unreported004.xaml.cs2
-rw-r--r--Xamarin.Forms.Xaml.UnitTests/Issues/Unreported005.xaml12
-rw-r--r--Xamarin.Forms.Xaml.UnitTests/Issues/Unreported005.xaml.cs78
-rw-r--r--Xamarin.Forms.Xaml.UnitTests/Xamarin.Forms.Xaml.UnitTests.csproj12
6 files changed, 155 insertions, 1 deletions
diff --git a/Xamarin.Forms.Xaml.UnitTests/Issues/Bz47950.xaml b/Xamarin.Forms.Xaml.UnitTests/Issues/Bz47950.xaml
new file mode 100644
index 00000000..22120971
--- /dev/null
+++ b/Xamarin.Forms.Xaml.UnitTests/Issues/Bz47950.xaml
@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
+ xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
+ xmlns:local="clr-namespace:Xamarin.Forms.Xaml.UnitTests"
+ x:Class="Xamarin.Forms.Xaml.UnitTests.Bz47950">
+ <ContentPage.Resources>
+ <ResourceDictionary>
+ <Color x:Key="MyColor">#c2d1d3</Color>
+ </ResourceDictionary>
+ </ContentPage.Resources>
+ <Label x:Name="label" local:Bz47950Behavior.ColorTest="{StaticResource MyColor}" />
+</ContentPage> \ No newline at end of file
diff --git a/Xamarin.Forms.Xaml.UnitTests/Issues/Bz47950.xaml.cs b/Xamarin.Forms.Xaml.UnitTests/Issues/Bz47950.xaml.cs
new file mode 100644
index 00000000..738e1cee
--- /dev/null
+++ b/Xamarin.Forms.Xaml.UnitTests/Issues/Bz47950.xaml.cs
@@ -0,0 +1,40 @@
+using System;
+using System.Collections.Generic;
+using NUnit.Framework;
+using Xamarin.Forms;
+
+namespace Xamarin.Forms.Xaml.UnitTests
+{
+ public class Bz47950Behavior : Behavior<View>
+ {
+ public static readonly BindableProperty ColorTestProperty =
+ BindableProperty.CreateAttached("ColorTest", typeof(Color), typeof(View), default(Color));
+
+ public static Color GetColorTest(BindableObject bindable) => (Color)bindable.GetValue(ColorTestProperty);
+ public static void SetColorTest(BindableObject bindable, Color value) => bindable.SetValue(ColorTestProperty, value);
+ }
+
+ public partial class Bz47950 : ContentPage
+ {
+ public Bz47950()
+ {
+ InitializeComponent();
+ }
+
+ public Bz47950(bool useCompiledXaml)
+ {
+ //this stub will be replaced at compile time
+ }
+
+ [TestFixture]
+ class Tests
+ {
+ [TestCase(true)]
+ [TestCase(false)]
+ public void BehaviorAndStaticResource(bool useCompiledXaml)
+ {
+ var page = new Bz47950(useCompiledXaml);
+ }
+ }
+ }
+}
diff --git a/Xamarin.Forms.Xaml.UnitTests/Issues/Unreported004.xaml.cs b/Xamarin.Forms.Xaml.UnitTests/Issues/Unreported004.xaml.cs
index ff2dac08..d4bbeff2 100644
--- a/Xamarin.Forms.Xaml.UnitTests/Issues/Unreported004.xaml.cs
+++ b/Xamarin.Forms.Xaml.UnitTests/Issues/Unreported004.xaml.cs
@@ -43,7 +43,7 @@ namespace Xamarin.Forms.Xaml.UnitTests
[TestCase(true), TestCase(false)]
public void MultipleGetMethodsAllowed(bool useCompiledXaml)
{
- var page = new Unreported004();
+ var page = new Unreported004(useCompiledXaml);
Assert.NotNull(page.label);
Assert.AreEqual("foo", GetSomeProperty(page.label));
}
diff --git a/Xamarin.Forms.Xaml.UnitTests/Issues/Unreported005.xaml b/Xamarin.Forms.Xaml.UnitTests/Issues/Unreported005.xaml
new file mode 100644
index 00000000..925dbc10
--- /dev/null
+++ b/Xamarin.Forms.Xaml.UnitTests/Issues/Unreported005.xaml
@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
+ xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
+ xmlns:local="clr-namespace:Xamarin.Forms.Xaml.UnitTests"
+ x:Class="Xamarin.Forms.Xaml.UnitTests.Unreported005">
+ <RelativeLayout>
+ <Label x:Name="before" />
+ <Button x:Name="after"
+ RelativeLayout.XConstraint="{local:Unreported005RelativeToViewHorizontal ElementName=before, Constant=105}" />
+
+ </RelativeLayout>
+</ContentPage>
diff --git a/Xamarin.Forms.Xaml.UnitTests/Issues/Unreported005.xaml.cs b/Xamarin.Forms.Xaml.UnitTests/Issues/Unreported005.xaml.cs
new file mode 100644
index 00000000..d00f1f41
--- /dev/null
+++ b/Xamarin.Forms.Xaml.UnitTests/Issues/Unreported005.xaml.cs
@@ -0,0 +1,78 @@
+using System;
+using NUnit.Framework;
+
+namespace Xamarin.Forms.Xaml.UnitTests
+{
+ public abstract class Unreported005RelativeToView : IMarkupExtension
+ {
+ protected Unreported005RelativeToView()
+ {
+ Factor = 1;
+ }
+
+ public string ElementName { get; set; }
+
+ public double Factor { get; set; }
+
+ public double Constant { get; set; }
+
+ public object ProvideValue(IServiceProvider serviceProvider)
+ {
+ var element = new ReferenceExtension { Name = ElementName }.ProvideValue(serviceProvider) as View;
+ if (element != null) {
+ var result = Constraint.RelativeToView(element, (layout, view) => DeterminePosition(view) + Constant);
+ return result;
+ }
+ return null;
+ }
+
+ protected virtual double DeterminePosition(VisualElement view)
+ {
+ var result = DetermineStart(view) + DetermineExtent(view) * Factor;
+ return result;
+ }
+
+ protected abstract double DetermineExtent(VisualElement view);
+
+ protected abstract double DetermineStart(VisualElement view);
+ }
+
+ public class Unreported005RelativeToViewHorizontal : Unreported005RelativeToView
+ {
+ protected override double DetermineExtent(VisualElement view)
+ {
+ return view.Width;
+ }
+
+ protected override double DetermineStart(VisualElement view)
+ {
+ return view.X;
+ }
+ }
+
+ //[XamlCompilation(XamlCompilationOptions.Skip)]
+ public partial class Unreported005 : ContentPage
+ {
+ public Unreported005()
+ {
+ InitializeComponent();
+ }
+
+ public Unreported005(bool useCompiledXaml)
+ {
+ //this stub will be replaced at compile time
+ }
+
+ [TestFixture]
+ class Tests
+ {
+ [TestCase(true), TestCase(false)]
+ public void CustomMarkupExtensionWorks(bool useCompiledXaml)
+ {
+ var page = new Unreported005(useCompiledXaml);
+ Assert.That(RelativeLayout.GetXConstraint(page.after), Is.TypeOf<Constraint>());
+ Assert.NotNull(RelativeLayout.GetXConstraint(page.after));
+ }
+ }
+ }
+} \ No newline at end of file
diff --git a/Xamarin.Forms.Xaml.UnitTests/Xamarin.Forms.Xaml.UnitTests.csproj b/Xamarin.Forms.Xaml.UnitTests/Xamarin.Forms.Xaml.UnitTests.csproj
index 50b7d9bf..d4b65438 100644
--- a/Xamarin.Forms.Xaml.UnitTests/Xamarin.Forms.Xaml.UnitTests.csproj
+++ b/Xamarin.Forms.Xaml.UnitTests/Xamarin.Forms.Xaml.UnitTests.csproj
@@ -373,6 +373,12 @@
<Compile Include="BindingsCompiler.xaml.cs">
<DependentUpon>BindingsCompiler.xaml</DependentUpon>
</Compile>
+ <Compile Include="Issues\Unreported005.xaml.cs">
+ <DependentUpon>Unreported005.xaml</DependentUpon>
+ </Compile>
+ <Compile Include="Issues\Bz47950.xaml.cs">
+ <DependentUpon>Bz47950.xaml</DependentUpon>
+ </Compile>
</ItemGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
<Import Project="..\.nuspec\Xamarin.Forms.Debug.targets" />
@@ -667,6 +673,12 @@
<EmbeddedResource Include="BindingsCompiler.xaml">
<Generator>MSBuild:UpdateDesignTimeXaml</Generator>
</EmbeddedResource>
+ <EmbeddedResource Include="Issues\Unreported005.xaml">
+ <Generator>MSBuild:UpdateDesignTimeXaml</Generator>
+ </EmbeddedResource>
+ <EmbeddedResource Include="Issues\Bz47950.xaml">
+ <Generator>MSBuild:UpdateDesignTimeXaml</Generator>
+ </EmbeddedResource>
</ItemGroup>
<ItemGroup>
<Service Include="{82A7F48D-3B50-4B1E-B82E-3ADA8210C358}" />