<?xml version=“1.0” encoding=“UTF-8”?> <TestScript xmlns=“hl7.org/fhir”>
<id value="testscript-example-update"/> <url value="http://hl7.org/fhir/TestScript/testscript-example-update"/> <identifier> <system value="urn:ietf:rfc:3986"/> <value value="urn:oid:1.3.6.1.4.1.21367.2005.3.7.9882"/> </identifier> <version value="1.0"/> <name value="TestScript Example Update"/> <status value="draft"/> <experimental value="true"/> <publisher value="HL7"/> <contact> <name value="Support"/> <telecom> <system value="email"/> <value value="support@HL7.org"/> <use value="work"/> </telecom> </contact> <date value="2016-09-26"/> <description value="TestScript example resource with setup to delete if present and create a new instance of a Patient; and single test definition to update that Patient with various asserts."/> <jurisdiction> <coding> <system value="urn:iso:std:iso:3166"/> <code value="US"/> <display value="United States of America (the)"/> </coding> </jurisdiction> <purpose value="Patient (Conditional) Create, Update, Delete Operations"/> <copyright value="© HL7.org 2011+"/> <metadata> <capability> <required value="true"/> <description value="Patient Update and Delete Operations"/> <link value="http://hl7.org/fhir/http.html#update"/> <link value="http://hl7.org/fhir/http.html#delete"/> <link value="http://hl7.org/fhir/patient.html"/> <capabilities> <reference value="CapabilityStatement/example" /> </capabilities> </capability> </metadata> <fixture id="fixture-patient-create"> <autocreate value="false"/> <autodelete value="false"/> <resource> <reference value="./_reference/resources/patient-example.json"/> <display value="Peter Chalmers"/> </resource> </fixture> <fixture id="fixture-patient-update"> <autocreate value="false"/> <autodelete value="false"/> <resource> <reference value="./_reference/resources/patient-example-update.json"/> <display value="Donald Duck"/> </resource> </fixture> <profile id="patient-profile"> <reference value="http://hl7.org/fhir/StructureDefinition/Patient" /> </profile> <variable> <name value="createResourceId"/> <path value="Patient/id"/> <sourceId value="fixture-patient-create"/> </variable> <setup> <action> <operation> <type> <system value="http://hl7.org/fhir/testscript-operation-codes"/> <code value="delete"/> </type> <resource value="Patient"/> <label value="SetupDeletePatient"/> <description value="Execute a delete operation to insure the patient does not exist on the server."/> <accept value="xml"/> <params value="/${createResourceId}"/> </operation> </action> <action> <assert> <description value="Confirm that the returned HTTP status is 200(OK) or 204(No Content)."/> <direction value="response"/> <operator value="in"/> <responseCode value="200,204,400,404"/> </assert> </action> <action> <operation> <type> <system value="http://hl7.org/fhir/testscript-operation-codes"/> <code value="create"/> </type> <resource value="Patient"/> <label value="SetupCreatePatient"/> <description value="Create patient resource on test server using the contents of fixture-patient-create"/> <accept value="xml"/> <contentType value="xml"/> <params value="/${createResourceId}"/> <sourceId value="fixture-patient-create"/> </operation> </action> <action> <assert> <description value="Confirm that the returned HTTP status is 201(Created)."/> <direction value="response"/> <operator value="in"/> <responseCode value="200,201"/> </assert> </action> </setup> <test id="01-UpdatePatient"> <name value="Update Patient"/> <description value="Update a Patient and validate response."/> <action> <operation> <type> <system value="http://hl7.org/fhir/testscript-operation-codes"/> <code value="update"/> </type> <resource value="Patient"/> <label value="SetupUpdatePatient"/> <description value="Update patient resource on test server using the contents of fixture-patient-update"/> <accept value="xml"/> <contentType value="xml"/> <params value="/${createResourceId}"/> <sourceId value="fixture-patient-update"/> </operation> </action> <action> <assert> <description value="Confirm that the returned HTTP status is 200(OK)."/> <response value="okay"/> </assert> </action> <action> <assert> <description value="Confirm that the returned format is XML."/> <contentType value="xml"/> </assert> </action> <action> <assert> <description value="Confirm that the returned HTTP Header Last-Modified is present. Warning only as the server may not support versioning."/> <headerField value="Last-Modified"/> <operator value="notEmpty"/> <warningOnly value="true"/> </assert> </action> </test>
</TestScript>