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 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285
|
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.
namespace System.Data.Entity.Internal
{
using System.Data.Entity.Core.Objects.DataClasses;
using System.Data.Entity.Resources;
using System.Threading;
using Xunit;
public class InternalReferenceEntryTests
{
public class CurrentValue
{
[Fact]
public void InternalReferenceEntry_gets_current_value_from_entity_if_property_exists()
{
InternalReferenceEntry_gets_current_value_from_entity_if_property_exists_implementation(isDetached: false);
}
[Fact]
public void InternalReferenceEntry_gets_current_value_from_entity_even_when_detached_if_property_exists()
{
InternalReferenceEntry_gets_current_value_from_entity_if_property_exists_implementation(isDetached: true);
}
private void InternalReferenceEntry_gets_current_value_from_entity_if_property_exists_implementation(bool isDetached)
{
var relatedEntity = new FakeEntity();
var entity = new FakeWithProps
{
Reference = relatedEntity
};
var internalEntry = new InternalReferenceEntry(
MockHelper.CreateMockInternalEntityEntry(
entity, isDetached).Object, FakeWithProps.ReferenceMetadata);
var propValue = internalEntry.CurrentValue;
Assert.Same(relatedEntity, propValue);
}
[Fact]
public void InternalReferenceEntry_sets_current_value_onto_entity_if_property_exists()
{
InternalReferenceEntry_sets_current_value_onto_entity_if_property_exists_implementation(isDetached: false);
}
[Fact]
public void InternalReferenceEntry_sets_current_value_onto_entity_even_when_detached_if_property_exists()
{
InternalReferenceEntry_sets_current_value_onto_entity_if_property_exists_implementation(isDetached: true);
}
private void InternalReferenceEntry_sets_current_value_onto_entity_if_property_exists_implementation(bool isDetached)
{
var entity = new FakeWithProps
{
Reference = new FakeEntity()
};
var internalEntry = new InternalReferenceEntry(
MockHelper.CreateMockInternalEntityEntry(entity, isDetached).Object, FakeWithProps.ReferenceMetadata);
var relatedEntity = new FakeEntity();
internalEntry.CurrentValue = relatedEntity;
Assert.Same(relatedEntity, entity.Reference);
}
[Fact]
public void InternalReferenceEntry_gets_current_value_from_RelatedEnd_if_navigation_property_has_been_removed_from_entity()
{
InternalReferenceEntry_gets_current_value_from_RelatedEnd_if_navigation_property_has_been_removed_from_entity_implementation
(new FakeEntity());
}
[Fact]
public void
InternalReferenceEntry_gets_null_from_RelatedEnd_if_navigation_property_has_been_removed_from_entity_and_no_value_is_set()
{
InternalReferenceEntry_gets_current_value_from_RelatedEnd_if_navigation_property_has_been_removed_from_entity_implementation
(null);
}
private void
InternalReferenceEntry_gets_current_value_from_RelatedEnd_if_navigation_property_has_been_removed_from_entity_implementation
(FakeEntity relatedEntity)
{
var mockRelatedEnd = Core.Objects.DataClasses.MockHelper.CreateMockEntityReference(relatedEntity);
var internalEntry =
new InternalReferenceEntry(
MockHelper.CreateMockInternalEntityEntry(new FakeEntity(), mockRelatedEnd.Object).Object,
FakeWithProps.ReferenceMetadata);
var propValue = internalEntry.CurrentValue;
Assert.Same(relatedEntity, propValue);
}
[Fact]
public void InternalReferenceEntry_sets_current_value_onto_RelatedEnd_if_navigation_property_has_been_removed_from_entity()
{
InternalReferenceEntry_sets_current_value_onto_RelatedEnd_if_navigation_property_has_been_removed_from_entity_implementation
(new FakeEntity(), new FakeEntity());
}
[Fact]
public void InternalReferenceEntry_sets_null_onto_RelatedEnd_if_navigation_property_has_been_removed_from_entity()
{
InternalReferenceEntry_sets_current_value_onto_RelatedEnd_if_navigation_property_has_been_removed_from_entity_implementation
(new FakeEntity(), null);
}
[Fact]
public void
InternalReferenceEntry_sets_current_value_onto_RelatedEnd_if_navigation_property_has_been_removed_from_entity_when_current_value_is_null
()
{
InternalReferenceEntry_sets_current_value_onto_RelatedEnd_if_navigation_property_has_been_removed_from_entity_implementation
(null, new FakeEntity());
}
[Fact]
public void
InternalReferenceEntry_sets_null_onto_RelatedEnd_if_navigation_property_has_been_removed_from_entity_when_current_value_and_new_value_are_both_null
()
{
InternalReferenceEntry_sets_current_value_onto_RelatedEnd_if_navigation_property_has_been_removed_from_entity_implementation
(null, null);
}
[Fact]
public void
InternalReferenceEntry_does_not_set_anything_onto_RelatedEnd_if_navigation_property_has_been_removed_from_entity_when_current_value_and_new_value_are_same
()
{
var relatedEntity = new FakeEntity();
InternalReferenceEntry_sets_current_value_onto_RelatedEnd_if_navigation_property_has_been_removed_from_entity_implementation
(relatedEntity, relatedEntity);
}
/// <summary>
/// Validates that the call to set a value on an <see cref="EntityReference{TEntity}" /> is made as
/// expected without mocking EntityReference (since it is sealed). This could be dones with Moq
/// but it turned out easier and clearer this way.
/// </summary>
internal class FakeInternalReferenceEntry : InternalReferenceEntry
{
public FakeInternalReferenceEntry(InternalEntityEntry internalEntityEntry, NavigationEntryMetadata navigationMetadata)
: base(internalEntityEntry, navigationMetadata)
{
}
protected override void SetNavigationPropertyOnRelatedEnd(object value)
{
SetCount++;
ValueSet = value;
}
public object ValueSet { get; set; }
public int SetCount { get; set; }
}
private void
InternalReferenceEntry_sets_current_value_onto_RelatedEnd_if_navigation_property_has_been_removed_from_entity_implementation
(FakeEntity currentRelatedEntity, FakeEntity newRelatedEntity)
{
var mockRelatedEnd = Core.Objects.DataClasses.MockHelper.CreateMockEntityReference(currentRelatedEntity);
var internalEntry =
new FakeInternalReferenceEntry(
MockHelper.CreateMockInternalEntityEntry(new FakeEntity(), mockRelatedEnd.Object).Object,
FakeWithProps.ReferenceMetadata);
internalEntry.CurrentValue = newRelatedEntity;
Assert.Equal(1, internalEntry.SetCount);
Assert.Same(newRelatedEntity, internalEntry.ValueSet);
}
[Fact]
public void InternalReferenceEntry_throws_getting_current_value_from_detached_entity_if_navigation_property_has_been_removed()
{
var mockInternalEntry = MockHelper.CreateMockInternalEntityEntry(
new FakeEntity(), isDetached: true);
var internalEntry = new InternalReferenceEntry(mockInternalEntry.Object, FakeWithProps.ReferenceMetadata);
Assert.Equal(
Strings.DbPropertyEntry_NotSupportedForDetached("CurrentValue", "Reference", "FakeEntity"),
Assert.Throws<InvalidOperationException>(() => { var _ = internalEntry.CurrentValue; }).Message);
}
[Fact]
public void InternalReferenceEntry_throws_setting_current_value_from_detached_entity_if_navigation_property_has_been_removed()
{
var mockInternalEntry = MockHelper.CreateMockInternalEntityEntry(
new FakeEntity(), isDetached: true);
var internalEntry = new InternalReferenceEntry(mockInternalEntry.Object, FakeWithProps.ReferenceMetadata);
Assert.Equal(
Strings.DbPropertyEntry_SettingEntityRefNotSupported("Reference", "FakeEntity", "Detached"),
Assert.Throws<NotSupportedException>(() => { internalEntry.CurrentValue = null; }).Message);
}
}
public class Load
{
[Fact]
public void InternalReferenceEntry_Load_throws_if_used_with_Detached_entity()
{
var mockInternalEntry = MockHelper.CreateMockInternalEntityEntry(
new FakeEntity(), isDetached: true);
var internalEntry = new InternalReferenceEntry(mockInternalEntry.Object, FakeWithProps.ReferenceMetadata);
Assert.Equal(
Strings.DbPropertyEntry_NotSupportedForDetached("Load", "Reference", "FakeEntity"),
Assert.Throws<InvalidOperationException>(() => internalEntry.Load()).Message);
}
}
#if !NET40
public class LoadAsync
{
[Fact]
public void InternalReferenceEntry_LoadAsync_throws_if_used_with_Detached_entity()
{
var mockInternalEntry = MockHelper.CreateMockInternalEntityEntry(
new FakeEntity(), isDetached: true);
var internalEntry = new InternalReferenceEntry(mockInternalEntry.Object, FakeWithProps.ReferenceMetadata);
Assert.Equal(
Strings.DbPropertyEntry_NotSupportedForDetached("LoadAsync", "Reference", "FakeEntity"),
Assert.Throws<InvalidOperationException>(
() =>
internalEntry.LoadAsync(CancellationToken.None).Wait()).Message);
}
}
#endif
public class IsLoaded
{
[Fact]
public void InternalReferenceEntry_IsLoaded_throws_if_used_with_Detached_entity()
{
var mockInternalEntry = MockHelper.CreateMockInternalEntityEntry(
new FakeEntity(), isDetached: true);
var internalEntry = new InternalReferenceEntry(mockInternalEntry.Object, FakeWithProps.ReferenceMetadata);
Assert.Equal(
Strings.DbPropertyEntry_NotSupportedForDetached("IsLoaded", "Reference", "FakeEntity"),
Assert.Throws<InvalidOperationException>(() => { var _ = internalEntry.IsLoaded; }).Message);
}
}
public class Name
{
[Fact]
public void InternalReferenceEntry_Name_works_even_when_used_with_Detached_entity()
{
var mockInternalEntry = MockHelper.CreateMockInternalEntityEntry(
new FakeEntity(), isDetached: true);
var internalEntry = new InternalReferenceEntry(mockInternalEntry.Object, FakeWithProps.ReferenceMetadata);
Assert.Equal("Reference", internalEntry.Name);
}
}
public class Query
{
[Fact]
public void InternalReferenceEntry_Query_throws_if_used_with_Detached_entity()
{
var mockInternalEntry = MockHelper.CreateMockInternalEntityEntry(
new FakeEntity(), isDetached: true);
var internalEntry = new InternalReferenceEntry(mockInternalEntry.Object, FakeWithProps.ReferenceMetadata);
Assert.Equal(
Strings.DbPropertyEntry_NotSupportedForDetached("Query", "Reference", "FakeEntity"),
Assert.Throws<InvalidOperationException>(() => internalEntry.Query()).Message);
}
}
}
}
|