[Xaml] do not check PropertyName on Obsolete BPs (#1571)

fixes #1566
This commit is contained in:
Stephane Delcroix 2018-01-12 21:51:45 +01:00 коммит произвёл GitHub
Родитель 886abf0853
Коммит 35ae3847e3
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
4 изменённых файлов: 63 добавлений и 1 удалений

Просмотреть файл

@ -103,7 +103,8 @@ namespace Xamarin.Forms
if (bpinfo == null)
throw new XamlParseException($"Can't resolve {name} on {type.Name}", lineinfo);
var bp = bpinfo.GetValue(null) as BindableProperty;
if (bp.PropertyName != propertyName)
var isObsolete = bpinfo.GetCustomAttribute<ObsoleteAttribute>() != null;
if (bp.PropertyName != propertyName && !isObsolete)
throw new XamlParseException($"The PropertyName of {type.Name}.{name} is not {propertyName}", lineinfo);
return bp;
}

Просмотреть файл

@ -0,0 +1,13 @@
<?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.Gh1566">
<Frame x:Name="frame">
<Frame.Style>
<Style TargetType="Frame">
<Setter Property="Frame.OutlineColor" Value="Red" />
</Style>
</Frame.Style>
</Frame>
</ContentPage>

Просмотреть файл

@ -0,0 +1,42 @@
using System;
using NUnit.Framework;
using Xamarin.Forms.Core.UnitTests;
namespace Xamarin.Forms.Xaml.UnitTests
{
public partial class Gh1566
{
public Gh1566()
{
InitializeComponent();
}
public Gh1566(bool useCompiledXaml)
{
//this stub will be replaced at compile time
}
[TestFixture]
class Tests
{
[SetUp]
public void Setup()
{
Device.PlatformServices = new MockPlatformServices();
}
[TearDown]
public void TearDown()
{
Device.PlatformServices = null;
}
[TestCase(true), TestCase(false)]
public void ObsoletePropsDoNotThrow(bool useCompiledXaml)
{
var layout = new Gh1566(useCompiledXaml);
Assert.That(layout.frame.BorderColor, Is.EqualTo(Color.Red));
}
}
}
}

Просмотреть файл

@ -570,6 +570,9 @@
<Compile Include="Issues\Gh1554.xaml.cs">
<DependentUpon>Gh1554.xaml</DependentUpon>
</Compile>
<Compile Include="Issues\Gh1566.xaml.cs">
<DependentUpon>Gh1566.xaml</DependentUpon>
</Compile>
</ItemGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
<Import Project="..\.nuspec\Xamarin.Forms.Debug.targets" />
@ -1016,6 +1019,9 @@
<EmbeddedResource Include="Issues\Gh1554.xaml">
<Generator>MSBuild:UpdateDesignTimeXaml</Generator>
</EmbeddedResource>
<EmbeddedResource Include="Issues\Gh1566.xaml">
<Generator>MSBuild:UpdateDesignTimeXaml</Generator>
</EmbeddedResource>
</ItemGroup>
<ItemGroup>
<Service Include="{82A7F48D-3B50-4B1E-B82E-3ADA8210C358}" />