public void QuantityElement() { var assertion = new ProfileAssertion("Patient.name[0]", resolve); assertion.SetInstanceType(FHIRDefinedType.Quantity); assertion.SetDeclaredType(FHIRDefinedType.Age); Assert.True(assertion.Validate().Success); Assert.Single(assertion.MinimalProfiles, assertion.DeclaredType); assertion.SetInstanceType(FHIRDefinedType.Identifier); var report = assertion.Validate(); Assert.False(report.Success); Assert.Contains("is incompatible with that of the instance", report.ToString()); }
public void ProfiledElement() { var assertion = new ProfileAssertion("Patient.identifier[0]", resolve); assertion.SetDeclaredType("http://validationtest.org/fhir/StructureDefinition/IdentifierWithBSN"); Assert.True(assertion.Validate().Success); assertion.SetInstanceType(FHIRDefinedType.Identifier); Assert.True(assertion.Validate().Success); Assert.Single(assertion.MinimalProfiles, assertion.DeclaredType); assertion.SetInstanceType(FHIRDefinedType.HumanName); var report = assertion.Validate(); Assert.False(report.Success); Assert.Contains("is incompatible with that of the instance", report.ToString()); }
public void ContainedResource() { var assertion = new ProfileAssertion("Bundle.entry.resource[0]", resolve); assertion.SetDeclaredType(FHIRDefinedType.Resource); Assert.True(assertion.Validate().Success); assertion.SetInstanceType(FHIRDefinedType.Patient); Assert.True(assertion.Validate().Success); assertion.SetDeclaredType(FHIRDefinedType.DomainResource); Assert.True(assertion.Validate().Success); Assert.Single(assertion.MinimalProfiles, assertion.InstanceType); assertion.SetInstanceType(FHIRDefinedType.Binary); var report = assertion.Validate(); Assert.False(report.Success); Assert.Contains("is incompatible with that of the instance", report.ToString()); }
public void ResourceWithStatedProfiles() { var assertion = new ProfileAssertion("Observation", resolve); assertion.SetDeclaredType(FHIRDefinedType.Observation); Assert.True(assertion.Validate().Success); assertion.AddStatedProfile(ModelInfo.CanonicalUriForFhirCoreType(FHIRDefinedType.Observation)); assertion.AddStatedProfile("http://validationtest.org/fhir/StructureDefinition/WeightHeightObservation"); assertion.AddStatedProfile("http://hl7.org/fhir/StructureDefinition/devicemetricobservation"); var report = assertion.Validate(); Assert.True(report.Success); Assert.Equal(2, assertion.MinimalProfiles.Count()); Assert.Equal(assertion.MinimalProfiles, assertion.StatedProfiles.Skip(1)); assertion.SetDeclaredType(FHIRDefinedType.Procedure); report = assertion.Validate(); Assert.False(report.Success); Assert.Contains("is incompatible with the declared type", report.ToString()); }