Loading
Table of Contents
Select Filters

          No results
          No results
          Here are some search tips

          Check the spelling of your keywords.
          Use more general search terms.
          Select fewer filters to broaden your search.

          Search all of Salesforce Help
          Create an Example Test Procedure

          Create an Example Test Procedure

          After you mock a response in the Integration Procedure to be tested, create the Test Procedure that tests a calculation it performs.

          The Test Procedure has these components:

          • A Set Values component, named IPInput

          • An Integration Procedure Action component, named TestIP

          • An Assert Action, named AssertTotal

          • A Response Action, named TestResponse

          A Response Action isn't required, but it's useful for testing the Test Procedure. After you have verified that the Test Procedure works, you can deactivate or delete it.

          The Structure panel looks like this:

          image

          To create the Test Procedure:

          1. From the Omnistudio Integration Procedures tab, click New.
          2. Provide an Integration Procedure Name, a Type, and a SubType, and click Save.
          3. Scroll to the bottom of the Procedure Configuration and check Is Test Procedure.
          4. Drag a Set Values component into the Structure panel and give it the following settings:

            Property

            Value

            Element Name

            IPInput

            Element Value Map: Price

            250

            Element Value Map: State

            NY

            Response JSON Node

            IPInput

          5. Drag an Integration Procedure Action component into the Structure panel and give it the following settings:

            Property

            Value

            Element Name

            TestIP

            Integration Procedure

            Name you gave the Integration Procedure to be tested, described in Define Execution Logic.

            Send JSON Path

            IPInput

          6. Drag an Assert Action component into the Structure panel and give it the following settings:

            Property

            Value

            Element Name

            AssertTotal

            Assert Conditional Formula

            TestIP:Output:Total == 265

            Assert Failure Message

            Calculation is incorrect.

          7. Drag a Response Action component into the Structure panel and give it the following settings:

            Property

            Value

            Element Name

            TestResponse

            Return Full Data JSON

            (checked)

            After you have verified that the Test Procedure works, you can deactivate this component.

          8. Go to the Preview tab and click Execute. The output should look like this:
            {
              "response": {
                "testResult": "success"
              },
              "TestResponseStatus": true,
              "AssertTotal": {
                "assertFailureMessage": "Calculation is incorrect.",
                "variableData": {
                  "TestIP:Output:Total": 265
                },
                "assertConditionalFormula": "TestIP:Output:Total == 265",
                "assertResult": true
              },
              "AssertTotalStatus": true,
              "TestIP": {
                "testResult": "success",
                "Output": {
                  "Price": 250,
                  "State": "NY",
                  "Tax": 15,
                  "TaxRate": 6,
                  "Total": 265
                }
              },
              "TestIPStatus": true,
              "IPInput": {
                "Price": 250,
                "State": "NY"
              },
              "IPInputStatus": true,
              "options": {
                "useQueueableApexRemoting": false,
                "queueableChainable": false,
                "ignoreCache": true,
                "resetCache": false,
                "chainable": false
              }
            }
          9. (Optional) In the IPInput component, change the Price, or change the State to WA, OR, NV, or CA. Then return to the Preview tab and click Execute again. Note how the output changes.
          10. Prepare for running the Test Procedure.
            1. In the TestResponse component, click Active to remove the check.
            2. In the Procedure Configuration, click Activate Version. IDX Workbench only runs active Test Procedures.
           
          Loading
          Salesforce Help | Article