private static DSPMetadata CreateMetadataForXFeatureEntity(bool isMLE = false) { DSPMetadata metadata = new DSPMetadata("CollectionCrossFeatureTests", "AstoriaUnitTests.Tests"); var entityType = metadata.AddEntityType("XFeatureTestsEntity", typeof(DSPResourceWithCollectionProperty), null, false); if (isMLE) { entityType.IsMediaLinkEntry = true; } metadata.AddKeyProperty(entityType, "ID", typeof(int)); metadata.AddPrimitiveProperty(entityType, "Description", typeof(string)); metadata.AddCollectionProperty(entityType, "Strings", typeof(string)); var complexType = metadata.AddComplexType("UnitTestModule+CollectionTest+XFeatureTestsComplexType", typeof(DSPResourceWithCollectionProperty), null, false); metadata.AddPrimitiveProperty(complexType, "Text", typeof(string)); metadata.AddCollectionProperty(entityType, "Structs", complexType); var resourceSet = metadata.AddResourceSet("Entities", entityType); metadata.AddResourceReferenceProperty(entityType, "NextTestEntity", resourceSet, entityType); metadata.SetReadOnly(); return metadata; }
private DSPMetadata PreferHeader_CreateMetadata() { DSPMetadata metadata = new DSPMetadata("Test", "TestNS"); var entityType = metadata.AddEntityType("Item", typeof(DSPSelfmodifyingResource), null, false); metadata.AddKeyProperty(entityType, "ID", typeof(int)); metadata.AddPrimitiveProperty(entityType, "ETagProperty", typeof(int?), true); metadata.AddPrimitiveProperty(entityType, "TriggerModification", typeof(string)); var entitySet = metadata.AddResourceSet("Items", entityType); metadata.AddResourceReferenceProperty(entityType, "Self", entitySet, entityType); var collectionEntity = metadata.AddEntityType("Collection", null, null, false); metadata.AddKeyProperty(collectionEntity, "ID", typeof(int)); metadata.AddPrimitiveProperty(collectionEntity, "Rating", typeof(int?)); metadata.AddPrimitiveProperty(collectionEntity, "Description", typeof(string)); metadata.AddCollectionProperty(collectionEntity, "CollectionProperty", typeof(int?)); metadata.AddResourceSet("Collection", collectionEntity); var streamEntity = metadata.AddEntityType("Stream", typeof(DSPSelfmodifyingResource), null, false); metadata.AddKeyProperty(streamEntity, "ID", typeof(int)); metadata.AddPrimitiveProperty(streamEntity, "ETagProperty", typeof(int?), true); metadata.AddPrimitiveProperty(streamEntity, "TriggerModification", typeof(string)); streamEntity.IsMediaLinkEntry = true; metadata.AddResourceSet("Streams", streamEntity); var namedStreamEntity = metadata.AddEntityType("NamedStream", typeof(DSPSelfmodifyingResource), null, false); metadata.AddKeyProperty(namedStreamEntity, "ID", typeof(int)); namedStreamEntity.AddProperty(new provider.ResourceProperty("NamedStream1", provider.ResourcePropertyKind.Stream, provider.ResourceType.GetPrimitiveResourceType(typeof(System.IO.Stream)))); metadata.AddResourceSet("NamedStreams", namedStreamEntity); return metadata; }
private static DSPServiceDefinition ModelWithDerivedNavigationProperties() { // Navigation Collection Property: Client - Entity, Server - NonEntity DSPMetadata metadata = new DSPMetadata("ModelWithDerivedNavProperties", "AstoriaUnitTests.Tests.DerivedProperty"); var peopleType = metadata.AddEntityType("Person", null, null, false); metadata.AddKeyProperty(peopleType, "ID", typeof(int)); metadata.AddPrimitiveProperty(peopleType, "Name", typeof(string)); var bestFriendProperty = metadata.AddResourceReferenceProperty(peopleType, "BestFriend", peopleType); var friendsProperty = metadata.AddResourceSetReferenceProperty(peopleType, "Friends", peopleType); var aquaintancesProperty = metadata.AddResourceSetReferenceProperty(peopleType, "Aquaintances", peopleType); var peopleSet = metadata.AddResourceSet("People", peopleType); var officeType = metadata.AddComplexType("Office", null, null, false); metadata.AddPrimitiveProperty(officeType, "Building", typeof(string)); metadata.AddPrimitiveProperty(officeType, "OfficeNumber", typeof(int)); var vacationType = metadata.AddComplexType("Vacation", null, null, false); metadata.AddPrimitiveProperty(vacationType, "Description", typeof(string)); metadata.AddPrimitiveProperty(vacationType, "StartDate", typeof(DateTimeOffset)); metadata.AddPrimitiveProperty(vacationType, "EndDate", typeof(DateTimeOffset)); var employeeType = metadata.AddEntityType("Employee", null, peopleType, false); metadata.AddCollectionProperty(employeeType, "Vacations", vacationType); metadata.AddComplexProperty(employeeType, "Office", officeType); metadata.AddCollectionProperty(employeeType, "Skills", ResourceType.GetPrimitiveResourceType(typeof(string))); metadata.AddNamedStreamProperty(employeeType, "Photo"); var managerType = metadata.AddEntityType("PeopleManager", null, employeeType, false); var drProperty = metadata.AddResourceSetReferenceProperty(managerType, "DirectReports", employeeType); var managerProperty = metadata.AddResourceReferenceProperty(employeeType, "Manager", managerType); var colleaguesProperty = metadata.AddResourceSetReferenceProperty(employeeType, "Colleagues", employeeType); metadata.AddResourceAssociationSet(new ResourceAssociationSet( "Manager_DirectReports", new ResourceAssociationSetEnd(peopleSet, employeeType, managerProperty), new ResourceAssociationSetEnd(peopleSet, managerType, drProperty))); metadata.AddResourceAssociationSet(new ResourceAssociationSet( "BestFriend", new ResourceAssociationSetEnd(peopleSet, peopleType, bestFriendProperty), new ResourceAssociationSetEnd(peopleSet, peopleType, null))); metadata.AddResourceAssociationSet(new ResourceAssociationSet( "Friends", new ResourceAssociationSetEnd(peopleSet, peopleType, friendsProperty), new ResourceAssociationSetEnd(peopleSet, peopleType, null))); metadata.AddResourceAssociationSet(new ResourceAssociationSet( "Colleagues", new ResourceAssociationSetEnd(peopleSet, employeeType, colleaguesProperty), new ResourceAssociationSetEnd(peopleSet, employeeType, null))); metadata.AddResourceAssociationSet(new ResourceAssociationSet( "Aquaintances", new ResourceAssociationSetEnd(peopleSet, peopleType, aquaintancesProperty), new ResourceAssociationSetEnd(peopleSet, peopleType, null))); metadata.SetReadOnly(); DSPContext context = new DSPContext(); DSPResource people1 = new DSPResource(peopleType); people1.SetValue("ID", 1); people1.SetValue("Name", "Foo"); people1.SetValue("Friends", new List<DSPResource>()); DSPResource thanksgivingVacation = new DSPResource(vacationType); thanksgivingVacation.SetValue("Description", "Thanksgiving"); thanksgivingVacation.SetValue("StartDate", new DateTime(2011, 11, 19)); thanksgivingVacation.SetValue("EndDate", new DateTime(2011, 11, 27)); DSPResource christmasVacation = new DSPResource(vacationType); christmasVacation.SetValue("Description", "Christmas"); christmasVacation.SetValue("StartDate", new DateTime(2011, 12, 24)); christmasVacation.SetValue("EndDate", new DateTime(2012, 1, 2)); DSPResource andy = new DSPResource(managerType); andy.SetValue("ID", 2); andy.SetValue("Name", "Andy"); andy.SetValue("Vacations", new List<DSPResource>() { thanksgivingVacation, christmasVacation }); var office = new DSPResource(officeType); office.SetValue("Building", "Building 18"); office.SetValue("OfficeNumber", 100); andy.SetValue("Office", office); andy.SetValue("Skills", new List<string>() { "CSharp", "VB", "SQL" }); andy.SetValue("Friends", new List<DSPResource>() { people1 }); andy.SetValue("Aquaintences", new List<DSPResource>()); DSPResource pratik = new DSPResource(employeeType); pratik.SetValue("ID", 3); pratik.SetValue("Name", "Pratik"); pratik.SetValue("Manager", andy); pratik.SetValue("Vacations", new List<DSPResource>() { christmasVacation }); office = new DSPResource(officeType); office.SetValue("Building", "Building 18"); office.SetValue("OfficeNumber", 101); pratik.SetValue("Office", office); pratik.SetValue("Skills", new List<string>() { "CSharp", "VB", "SQL" }); pratik.SetValue("Friends", new List<DSPResource>() { people1 }); pratik.SetValue("Aquaintences", new List<DSPResource>()); DSPResource jimmy = new DSPResource(employeeType); jimmy.SetValue("ID", 4); jimmy.SetValue("Name", "Jimmy"); jimmy.SetValue("Manager", andy); jimmy.SetValue("Vacations", new List<DSPResource>() { thanksgivingVacation, christmasVacation }); office = new DSPResource(officeType); office.SetValue("Building", "Building 18"); office.SetValue("OfficeNumber", 102); jimmy.SetValue("Office", office); jimmy.SetValue("Skills", new List<string>() { "CSharp", "SQL" }); jimmy.SetValue("Friends", new List<DSPResource>() { people1 }); jimmy.SetValue("Aquaintences", new List<DSPResource>()); andy.SetValue("DirectReports", new List<DSPResource>() { pratik, jimmy }); DSPResource shyam = new DSPResource(managerType); shyam.SetValue("ID", 5); shyam.SetValue("Name", "Shyam"); shyam.SetValue("Manager", shyam); shyam.SetValue("Vacations", new List<DSPResource>() { thanksgivingVacation, christmasVacation }); office = new DSPResource(officeType); office.SetValue("Building", "Building 18"); office.SetValue("OfficeNumber", 103); shyam.SetValue("Office", office); shyam.SetValue("Skills", new List<string>()); shyam.SetValue("Friends", new List<DSPResource>() { people1 }); shyam.SetValue("Aquaintences", new List<DSPResource>()); DSPResource marcelo = new DSPResource(employeeType); marcelo.SetValue("ID", 6); marcelo.SetValue("Name", "Marcelo"); marcelo.SetValue("Manager", shyam); marcelo.SetValue("Vacations", new List<DSPResource>()); office = new DSPResource(officeType); office.SetValue("Building", "Building 18"); office.SetValue("OfficeNumber", 104); marcelo.SetValue("Office", office); marcelo.SetValue("Skills", new List<string>() { "CSharp", "VB", "SQL" }); marcelo.SetValue("Friends", new List<DSPResource>() { people1 }); marcelo.SetValue("Aquaintences", new List<DSPResource>()); andy.SetValue("Manager", shyam); shyam.SetValue("DirectReports", new List<DSPResource>() { andy, marcelo }); pratik.SetValue("BestFriend", andy); andy.SetValue("BestFriend", shyam); shyam.SetValue("BestFriend", marcelo); marcelo.SetValue("BestFriend", jimmy); jimmy.SetValue("BestFriend", people1); people1.SetValue("BestFriend", pratik); andy.SetValue("Colleagues", new List<DSPResource>() { marcelo }); pratik.SetValue("Colleagues", new List<DSPResource>() { jimmy }); jimmy.SetValue("Colleagues", new List<DSPResource>() { pratik }); marcelo.SetValue("Colleagues", new List<DSPResource>() { andy }); shyam.SetValue("Colleagues", new List<DSPResource>()); people1.SetValue("Aquaintances", new List<DSPResource>() { pratik, andy, jimmy, shyam, marcelo }); var people = context.GetResourceSetEntities("People"); people.Add(people1); people.Add(andy); people.Add(pratik); people.Add(jimmy); people.Add(shyam); people.Add(marcelo); DSPServiceDefinition service = new DSPServiceDefinition() { Metadata = metadata, CreateDataSource = (m) => context, ForceVerboseErrors = true, MediaResourceStorage = new DSPMediaResourceStorage(), SupportNamedStream = true, Writable = true, DataServiceBehavior = new OpenWebDataServiceDefinition.OpenWebDataServiceBehavior() { IncludeRelationshipLinksInResponse = true }, }; return service; }
private DSPUnitTestServiceDefinition CreateTestService(bool openType = false) { DSPMetadata metadata = new DSPMetadata("SpatialQueryTests", "AstoriaUnitTests.Tests"); var entityType = metadata.AddEntityType("SpatialEntity", null, null, false); metadata.AddKeyProperty(entityType, "ID", typeof(int)); entityType.IsOpenType = openType; if (!openType) { metadata.AddPrimitiveProperty(entityType, "Geography", typeof(Geography)); metadata.AddPrimitiveProperty(entityType, "Point", typeof(GeographyPoint)); metadata.AddPrimitiveProperty(entityType, "Point2", typeof(GeographyPoint)); metadata.AddPrimitiveProperty(entityType, "LineString", typeof(GeographyLineString)); metadata.AddPrimitiveProperty(entityType, "Polygon", typeof(GeographyPolygon)); metadata.AddPrimitiveProperty(entityType, "GeographyCollection", typeof(GeographyCollection)); metadata.AddPrimitiveProperty(entityType, "MultiPoint", typeof(GeographyMultiPoint)); metadata.AddPrimitiveProperty(entityType, "MultiLineString", typeof(GeographyMultiLineString)); metadata.AddPrimitiveProperty(entityType, "MultiPolygon", typeof(GeographyMultiPolygon)); metadata.AddPrimitiveProperty(entityType, "Geometry", typeof(Geometry)); metadata.AddPrimitiveProperty(entityType, "GeometryPoint", typeof(GeometryPoint)); metadata.AddPrimitiveProperty(entityType, "GeometryPoint2", typeof(GeometryPoint)); metadata.AddPrimitiveProperty(entityType, "GeometryLineString", typeof(GeometryLineString)); metadata.AddPrimitiveProperty(entityType, "GeometryPolygon", typeof(GeometryPolygon)); metadata.AddPrimitiveProperty(entityType, "GeometryCollection", typeof(GeometryCollection)); metadata.AddPrimitiveProperty(entityType, "GeometryMultiPoint", typeof(GeometryMultiPoint)); metadata.AddPrimitiveProperty(entityType, "GeometryMultiLineString", typeof(GeometryMultiLineString)); metadata.AddPrimitiveProperty(entityType, "GeometryMultiPolygon", typeof(GeometryMultiPolygon)); } metadata.AddCollectionProperty(entityType, "CollectionOfPoints", typeof(GeographyPoint)); metadata.AddCollectionProperty(entityType, "GeometryCollectionOfPoints", typeof(GeometryPoint)); metadata.AddPrimitiveProperty(entityType, "GeographyNull", typeof(Geography)); metadata.AddPrimitiveProperty(entityType, "GeometryNull", typeof(Geometry)); metadata.AddResourceSet("Spatials", entityType); metadata.SetReadOnly(); DSPContext context = new DSPContext(); var set = context.GetResourceSetEntities("Spatials"); for (int i = 0; i < 3; ++i) { DSPResource spatialEntity = new DSPResource(entityType); spatialEntity.SetValue("ID", i); spatialEntity.SetValue("Geography", GeographyFactory.Point(32.0 - i, -100.0).Build()); spatialEntity.SetValue("Point", GeographyFactory.Point(33.1 - i, -110.0).Build()); spatialEntity.SetValue("Point2", GeographyFactory.Point(32.1 - i, -110.0).Build()); spatialEntity.SetValue("LineString", GeographyFactory.LineString(33.1 - i, -110.0).LineTo(35.97 - i, -110).Build()); spatialEntity.SetValue("Polygon", GeographyFactory.Polygon().Ring(33.1 - i, -110.0).LineTo(35.97 - i, -110.15).LineTo(11.45 - i, 87.75).Ring(35.97 - i, -110).LineTo(36.97 - i, -110.15).LineTo(45.23 - i, 23.18).Build()); spatialEntity.SetValue("GeographyCollection", GeographyFactory.Collection().Point(-19.99 - i, -12.0).Build()); spatialEntity.SetValue("MultiPoint", GeographyFactory.MultiPoint().Point(10.2 - i, 11.2).Point(11.9 - i, 11.6).Build()); spatialEntity.SetValue("MultiLineString", GeographyFactory.MultiLineString().LineString(10.2 - i, 11.2).LineTo(11.9 - i, 11.6).LineString(16.2 - i, 17.2).LineTo(18.9 - i, 19.6).Build()); spatialEntity.SetValue("MultiPolygon", GeographyFactory.MultiPolygon().Polygon().Ring(10.2 - i, 11.2).LineTo(11.9 - i, 11.6).LineTo(11.45 - i, 87.75).Ring(16.2 - i, 17.2).LineTo(18.9 - i, 19.6).LineTo(11.45 - i, 87.75).Build()); spatialEntity.SetValue("CollectionOfPoints", new List<GeographyPoint>() { GeographyFactory.Point(10.2, 99.5), GeographyFactory.Point(11.2, 100.5) }); spatialEntity.SetValue("Geometry", GeometryFactory.Point(32.0 - i, -10.0).Build()); spatialEntity.SetValue("GeometryPoint", GeometryFactory.Point(33.1 - i, -11.0).Build()); spatialEntity.SetValue("GeometryPoint2", GeometryFactory.Point(32.1 - i, -11.0).Build()); spatialEntity.SetValue("GeometryLineString", GeometryFactory.LineString(33.1 - i, -11.5).LineTo(35.97 - i, -11).Build()); spatialEntity.SetValue("GeometryPolygon", GeometryFactory.Polygon().Ring(33.1 - i, -13.6).LineTo(35.97 - i, -11.15).LineTo(11.45 - i, 87.75).Ring(35.97 - i, -11).LineTo(36.97 - i, -11.15).LineTo(45.23 - i, 23.18).Build()); spatialEntity.SetValue("GeometryCollection", GeometryFactory.Collection().Point(-19.99 - i, -12.0).Build()); spatialEntity.SetValue("GeometryMultiPoint", GeometryFactory.MultiPoint().Point(10.2 - i, 11.2).Point(11.9 - i, 11.6).Build()); spatialEntity.SetValue("GeometryMultiLineString", GeometryFactory.MultiLineString().LineString(10.2 - i, 11.2).LineTo(11.9 - i, 11.6).LineString(16.2 - i, 17.2).LineTo(18.9 - i, 19.6).Build()); spatialEntity.SetValue("GeometryMultiPolygon", GeometryFactory.MultiPolygon().Polygon().Ring(10.2 - i, 11.2).LineTo(11.9 - i, 11.6).LineTo(11.45 - i, 87.75).Ring(16.2 - i, 17.2).LineTo(18.9 - i, 19.6).LineTo(11.45 - i, 87.75).Build()); spatialEntity.SetValue("GeometryCollectionOfPoints", new List<GeometryPoint>() { GeometryFactory.Point(10.2, 99.5), GeometryFactory.Point(11.2, 100.5) }); spatialEntity.SetValue("GeographyNull", null); spatialEntity.SetValue("GeometryNull", null); set.Add(spatialEntity); } var service = new DSPUnitTestServiceDefinition(metadata, DSPDataProviderKind.CustomProvider, context); service.DataServiceBehavior.AcceptSpatialLiteralsInQuery = true; service.Writable = true; return service; }