Radarr/NzbDrone.Api.Test/ClientSchemaTests/SchemaBuilderFixture.cs

48 lines
1.4 KiB
C#
Raw Normal View History

2013-05-01 06:43:14 +00:00
using FluentAssertions;
using NUnit.Framework;
using NzbDrone.Api.ClientSchema;
2013-05-03 05:24:52 +00:00
using NzbDrone.Core.Annotations;
2013-05-01 06:43:14 +00:00
using NzbDrone.Test.Common;
namespace NzbDrone.Api.Test.ClientSchemaTests
{
[TestFixture]
public class SchemaBuilderFixture : TestBase
{
[Test]
public void should_return_field_for_every_property()
{
var schema = SchemaBuilder.GenerateSchema(new TestModel());
schema.Should().HaveCount(2);
}
[Test]
public void schema_should_have_proper_fields()
{
var model = new TestModel
{
FirstName = "Bob",
LastName = "Poop"
};
var schema = SchemaBuilder.GenerateSchema(model);
2013-09-13 23:17:58 +00:00
schema.Should().Contain(c => c.Order == 1 && c.Name == "LastName" && c.Label == "Last Name" && c.HelpText == "Your Last Name" && (string) c.Value == "Poop");
schema.Should().Contain(c => c.Order == 0 && c.Name == "FirstName" && c.Label == "First Name" && c.HelpText == "Your First Name" && (string) c.Value == "Bob");
2013-05-01 06:43:14 +00:00
}
}
public class TestModel
{
[FieldDefinition(0, Label = "First Name", HelpText = "Your First Name")]
public string FirstName { get; set; }
[FieldDefinition(1, Label = "Last Name", HelpText = "Your Last Name")]
public string LastName { get; set; }
2013-05-03 05:24:52 +00:00
public string Other { get; set; }
2013-05-01 06:43:14 +00:00
}
}