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 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171
|
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.
namespace System.Data.Entity.ModelConfiguration.Edm.UnitTests
{
using System.Collections.Generic;
using System.Data.Entity.Core.Metadata.Edm;
using System.Data.Entity.ModelConfiguration.Configuration;
using System.Data.Entity.ModelConfiguration.Configuration.Types;
using System.Data.Entity.ModelConfiguration.Mappers;
using System.Linq;
using Xunit;
public sealed class NavigationPropertyMapperTests
{
[Fact]
public void Map_should_set_namespace_when_provided_via_model_configuration()
{
var modelConfiguration
= new ModelConfiguration
{
ModelNamespace = "Foo"
};
var model = new EdmModel(DataSpace.CSpace);
var entityType = new EntityType();
model.AddEntitySet("Source", entityType);
var mappingContext = new MappingContext(modelConfiguration, new ConventionsConfiguration(), model);
new NavigationPropertyMapper(new TypeMapper(mappingContext))
.Map(
new MockPropertyInfo(new MockType("Target"), "Nav"), entityType,
() => new EntityTypeConfiguration(typeof(object)));
Assert.Equal(1, model.AssociationTypes.Count());
var associationType = model.AssociationTypes.Single();
Assert.Equal("Foo", associationType.NamespaceName);
}
[Fact]
public void Map_should_set_default_association_multiplicity_to_collection_to_optional()
{
var modelConfiguration = new ModelConfiguration();
var model = new EdmModel(DataSpace.CSpace);
var entityType = new EntityType();
model.AddEntitySet("Source", entityType);
var mappingContext = new MappingContext(modelConfiguration, new ConventionsConfiguration(), model);
new NavigationPropertyMapper(new TypeMapper(mappingContext))
.Map(
new MockPropertyInfo(new MockType("Target"), "Nav"), entityType,
() => new EntityTypeConfiguration(typeof(object)));
Assert.Equal(1, model.AssociationTypes.Count());
var associationType = model.AssociationTypes.Single();
Assert.Equal(RelationshipMultiplicity.Many, associationType.SourceEnd.RelationshipMultiplicity);
Assert.Equal(RelationshipMultiplicity.ZeroOrOne, associationType.TargetEnd.RelationshipMultiplicity);
}
[Fact]
public void Map_should_create_association_sets_for_associations()
{
var modelConfiguration = new ModelConfiguration();
var model = new EdmModel(DataSpace.CSpace);
var entityType = new EntityType
{
Name = "Source"
};
model.AddEntitySet("Source", entityType);
var mappingContext = new MappingContext(modelConfiguration, new ConventionsConfiguration(), model);
new NavigationPropertyMapper(new TypeMapper(mappingContext))
.Map(
new MockPropertyInfo(new MockType("Target"), "Nav"), entityType,
() => new EntityTypeConfiguration(typeof(object)));
Assert.Equal(1, model.Containers.Single().AssociationSets.Count);
var associationSet = model.Containers.Single().AssociationSets.Single();
Assert.NotNull(associationSet);
Assert.NotNull(associationSet.ElementType);
Assert.Equal("Source_Nav", associationSet.Name);
}
[Fact]
public void Map_should_detect_collection_associations_and_set_correct_end_kinds()
{
var modelConfiguration = new ModelConfiguration();
var model = new EdmModel(DataSpace.CSpace);
var entityType = new EntityType();
model.AddEntitySet("Source", entityType);
var mappingContext = new MappingContext(modelConfiguration, new ConventionsConfiguration(), model);
new NavigationPropertyMapper(new TypeMapper(mappingContext))
.Map(
new MockPropertyInfo(typeof(List<NavigationPropertyMapperTests>), "Nav"), entityType,
() => new EntityTypeConfiguration(typeof(object)));
Assert.Equal(1, model.AssociationTypes.Count());
var associationType = model.AssociationTypes.Single();
Assert.Equal(RelationshipMultiplicity.ZeroOrOne, associationType.SourceEnd.RelationshipMultiplicity);
Assert.Equal(RelationshipMultiplicity.Many, associationType.TargetEnd.RelationshipMultiplicity);
}
[Fact]
public void Map_should_not_detect_arrays_as_collection_associations()
{
var modelConfiguration = new ModelConfiguration();
var model = new EdmModel(DataSpace.CSpace);
var entityType = new EntityType();
var mappingContext = new MappingContext(modelConfiguration, new ConventionsConfiguration(), model);
new NavigationPropertyMapper(new TypeMapper(mappingContext))
.Map(
new MockPropertyInfo(typeof(NavigationPropertyMapperTests[]), "Nav"), entityType,
() => new EntityTypeConfiguration(typeof(object)));
Assert.Equal(0, model.AssociationTypes.Count());
}
[Fact]
public void Map_should_create_navigation_property_for_association()
{
var modelConfiguration = new ModelConfiguration();
var model = new EdmModel(DataSpace.CSpace);
var entityType = new EntityType();
model.AddEntitySet("Source", entityType);
var mappingContext = new MappingContext(modelConfiguration, new ConventionsConfiguration(), model);
new NavigationPropertyMapper(new TypeMapper(mappingContext))
.Map(
new MockPropertyInfo(new MockType("Target"), "Nav"), entityType,
() => new EntityTypeConfiguration(typeof(object)));
Assert.Equal(1, entityType.DeclaredNavigationProperties.Count);
var navigationProperty = entityType.NavigationProperties.Single();
Assert.Equal("Nav", navigationProperty.Name);
Assert.NotNull(navigationProperty.Association);
Assert.NotSame(entityType, navigationProperty.ResultEnd.GetEntityType());
}
[Fact]
public void Map_should_set_clr_property_info_on_assocation_source_end()
{
var modelConfiguration = new ModelConfiguration();
var model = new EdmModel(DataSpace.CSpace);
var entityType = new EntityType();
model.AddEntitySet("Source", entityType);
var mappingContext = new MappingContext(modelConfiguration, new ConventionsConfiguration(), model);
var mockPropertyInfo = new MockPropertyInfo(new MockType("Target"), "Nav");
new NavigationPropertyMapper(new TypeMapper(mappingContext))
.Map(
mockPropertyInfo, entityType,
() => new EntityTypeConfiguration(typeof(object)));
var associationType = model.AssociationTypes.Single();
Assert.Same(mockPropertyInfo.Object, associationType.SourceEnd.GetClrPropertyInfo());
}
}
}
|