smart_app_launch_test_kit 1.0.1 → 1.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (44) hide show
  1. checksums.yaml +4 -4
  2. data/execution_scripts/README.md +16 -0
  3. data/execution_scripts/client_vs_server/access_data_and_continue_client.rb +37 -0
  4. data/execution_scripts/client_vs_server/smart_v22_backend_services_with_commands.yaml +69 -0
  5. data/execution_scripts/client_vs_server/smart_v22_backend_services_with_commands_client_expected.json +1 -0
  6. data/execution_scripts/client_vs_server/smart_v22_backend_services_with_commands_server_expected.json +478 -0
  7. data/execution_scripts/client_vs_server/smart_v22_backend_services_with_commands_server_no_tls_expected.json +479 -0
  8. data/execution_scripts/client_vs_server/smart_v22_confidential_symmetric_with_commands.yaml +122 -0
  9. data/execution_scripts/client_vs_server/smart_v22_confidential_symmetric_with_commands_client_expected.json +1 -0
  10. data/execution_scripts/client_vs_server/smart_v22_confidential_symmetric_with_commands_client_no_tls_expected.json +1 -0
  11. data/execution_scripts/client_vs_server/smart_v22_confidential_symmetric_with_commands_server_expected.json +1 -0
  12. data/execution_scripts/client_vs_server/smart_v22_confidential_symmetric_with_commands_server_no_tls_expected.json +1 -0
  13. data/execution_scripts/client_vs_server/smart_v22_public_with_commands.yaml +123 -0
  14. data/execution_scripts/client_vs_server/smart_v22_public_with_commands_client_expected.json +1 -0
  15. data/execution_scripts/client_vs_server/smart_v22_public_with_commands_client_no_tls_expected.json +1 -0
  16. data/execution_scripts/client_vs_server/smart_v22_public_with_commands_server_expected.json +1 -0
  17. data/execution_scripts/client_vs_server/smart_v22_public_with_commands_server_no_tls_expected.json +1 -0
  18. data/execution_scripts/client_vs_server/visit_and_wait_to_return_to_inferno.rb +17 -0
  19. data/execution_scripts/reference_server/base_ref_server_authorize.rb +24 -0
  20. data/execution_scripts/reference_server/base_ref_server_ehr_launch.rb +24 -0
  21. data/execution_scripts/reference_server/ref_server_authorize_85_all_scopes.rb +3 -0
  22. data/execution_scripts/reference_server/ref_server_authorize_launched_all_scopes.rb +3 -0
  23. data/execution_scripts/reference_server/ref_server_ehr_launch_85.rb +3 -0
  24. data/execution_scripts/reference_server/smart_v1_vs_reference_server_with_commands.yaml +60 -0
  25. data/execution_scripts/reference_server/smart_v1_vs_reference_server_with_commands_expected.json +1 -0
  26. data/execution_scripts/reference_server/smart_v22_vs_reference_server_with_commands.yaml +93 -0
  27. data/execution_scripts/reference_server/smart_v22_vs_reference_server_with_commands_expected.json +1 -0
  28. data/execution_scripts/reference_server/smart_v22_vs_reference_server_with_commands_same_host_expected.json +4166 -0
  29. data/execution_scripts/reference_server/smart_v2_vs_reference_server_with_commands.yaml +81 -0
  30. data/execution_scripts/reference_server/smart_v2_vs_reference_server_with_commands_expected.json +1 -0
  31. data/lib/smart_app_launch/app_launch_test.rb +4 -0
  32. data/lib/smart_app_launch/app_redirect_test.rb +2 -1
  33. data/lib/smart_app_launch/client_suite/access_alca_interaction_test.rb +5 -1
  34. data/lib/smart_app_launch/client_suite/access_alcs_interaction_test.rb +5 -1
  35. data/lib/smart_app_launch/client_suite/access_alp_interaction_test.rb +6 -2
  36. data/lib/smart_app_launch/client_suite/access_bsca_interaction_test.rb +4 -1
  37. data/lib/smart_app_launch/client_suite/authentication_verification.rb +1 -1
  38. data/lib/smart_app_launch/client_suite/client_descriptions.rb +4 -3
  39. data/lib/smart_app_launch/cors_metadata_request_test.rb +11 -4
  40. data/lib/smart_app_launch/cors_openid_fhir_user_claim_test.rb +8 -4
  41. data/lib/smart_app_launch/cors_token_exchange_test.rb +8 -4
  42. data/lib/smart_app_launch/cors_well_known_endpoint_test.rb +8 -4
  43. data/lib/smart_app_launch/version.rb +2 -2
  44. metadata +34 -6
@@ -0,0 +1,17 @@
1
+ begin
2
+ require 'selenium-webdriver'
3
+ rescue LoadError
4
+ warn 'selenium-webdriver is required to run this command script.'
5
+ warn "Add it to your Gemfile: gem 'selenium-webdriver'"
6
+ exit(1)
7
+ end
8
+
9
+ target_url = ARGV[0]
10
+
11
+ options = Selenium::WebDriver::Options.chrome(args: ['--headless=new'])
12
+ driver = Selenium::WebDriver.for(:chrome, options: options)
13
+ wait = Selenium::WebDriver::Wait.new(timeout: 10)
14
+ driver.get target_url
15
+ wait.until { driver.find_element(:xpath, '//title') }
16
+ driver.quit
17
+ exit(0)
@@ -0,0 +1,24 @@
1
+ begin
2
+ require 'selenium-webdriver'
3
+ rescue LoadError
4
+ warn 'selenium-webdriver is required to run this command script.'
5
+ warn "Add it to your Gemfile: gem 'selenium-webdriver'"
6
+ exit(1)
7
+ end
8
+
9
+ def ref_server_authorize(authorize_url, target_patient_id: nil, click_scopes: nil)
10
+ options = Selenium::WebDriver::Options.chrome(args: ['--headless=new'])
11
+ driver = Selenium::WebDriver.for(:chrome, options: options)
12
+ wait = Selenium::WebDriver::Wait.new(timeout: 10)
13
+ driver.get authorize_url
14
+ wait.until { driver.find_element(id: "button-#{target_patient_id}") }.click unless target_patient_id.nil?
15
+ submit_button = wait.until { driver.find_element(id: 'submit') }
16
+ click_scopes&.each do |scope|
17
+ scope_checkbox = driver.find_element(:xpath, "//input[@value='#{scope}']")
18
+ scope_checkbox.click
19
+ end
20
+ submit_button.click
21
+ wait.until { driver.find_element(:xpath, '//title') }
22
+ driver.quit
23
+ exit(0)
24
+ end
@@ -0,0 +1,24 @@
1
+ begin
2
+ require 'selenium-webdriver'
3
+ rescue LoadError
4
+ warn 'selenium-webdriver is required to run this command script.'
5
+ warn "Add it to your Gemfile: gem 'selenium-webdriver'"
6
+ exit(1)
7
+ end
8
+
9
+ def ref_server_ehr_launch(launch_url, reference_server_fhir_base, target_patient_id)
10
+ reference_server_url = reference_server_fhir_base.chomp('/r4')
11
+ launch_screen_url = "#{reference_server_url}/app/app-launch"
12
+
13
+ options = Selenium::WebDriver::Options.chrome(args: ['--headless=new'])
14
+ driver = Selenium::WebDriver.for(:chrome, options: options)
15
+ wait = Selenium::WebDriver::Wait.new(timeout: 10)
16
+ driver.get launch_screen_url
17
+ wait.until { driver.find_element(id: 'patientSelector').text.strip != 'Loading...' }
18
+ driver.find_element(id: 'patientSelector').find_element(:xpath, "option[text()='#{target_patient_id}']").click
19
+ driver.find_element(id: 'appURI').send_keys(launch_url)
20
+ driver.find_element(id: 'launchAppButton').click
21
+ wait.until { driver.find_element(:xpath, "//h2[text()='User Action Required']") }
22
+ driver.quit
23
+ exit(0)
24
+ end
@@ -0,0 +1,3 @@
1
+ require_relative 'base_ref_server_authorize'
2
+
3
+ ref_server_authorize(ARGV[0], target_patient_id: '85')
@@ -0,0 +1,3 @@
1
+ require_relative 'base_ref_server_authorize'
2
+
3
+ ref_server_authorize(ARGV[0])
@@ -0,0 +1,3 @@
1
+ require_relative 'base_ref_server_ehr_launch'
2
+
3
+ ref_server_ehr_launch(ARGV[0], ARGV[1], 85)
@@ -0,0 +1,60 @@
1
+ sessions:
2
+ - suite: smart
3
+ preset: smart_stu1_reference_server
4
+
5
+ comparison_config:
6
+ normalized_strings:
7
+ - replacement: <INFERNO_HOST>
8
+ patterns:
9
+ - http://localhost:4567/inferno # local inferno core ruby
10
+ - http://localhost:4567 # local ruby
11
+ - http://localhost # local docker
12
+ - https://inferno.healthit.gov/suites # prod
13
+ - https://inferno-qa.healthit.gov/suites # qa
14
+ - replacement: <REFERENCE_SERVER_URL>
15
+ patterns:
16
+ - https://inferno.healthit.gov/reference-server # prod reference server
17
+ - https://inferno-qa.healthit.gov/reference-server # qa reference server
18
+ - replacement: code_challenge=<CODE_CHALLENGE>
19
+ pattern: /code_challenge=[A-Za-z0-9+\/=_-]{43}/
20
+ - replacement: <UUID>
21
+ pattern: /[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}/i
22
+
23
+ steps:
24
+ - state_description: Session Created
25
+ status: created
26
+ start_run:
27
+ runnable: 1
28
+ action_description: Run Group 1 Standalone Launch
29
+
30
+ - state_description: Wait at test 1.2.02 OAuth server redirects client browser to app redirect URI
31
+ status: waiting
32
+ last_completed: 1.2.02
33
+ command: bundle exec ruby execution_scripts/reference_server/ref_server_authorize_85_all_scopes.rb '{wait_outputs.authorization_url}'
34
+ action_description: Authorize patient 85
35
+
36
+ - state_description: Finished Group 1 Standalone Launch
37
+ status: done
38
+ last_completed: 1
39
+ start_run:
40
+ runnable: 2
41
+ action_description: Run Group 2 EHR Launch
42
+
43
+ - state_description: Wait at test 2.2.01 EHR server redirects client browser to Inferno app launch URI
44
+ status: waiting
45
+ last_completed: 2.2.01
46
+ command: bundle exec ruby execution_scripts/reference_server/ref_server_ehr_launch_85.rb '{wait_outputs.launch_uri}' '{wait_outputs.target_iss}'
47
+ action_description: Launch Inferno as a SMART app using patient 85 as the patient context
48
+
49
+ - state_description: Wait at test 2.2.04 OAuth server redirects client browser to app redirect URI
50
+ status: waiting
51
+ last_completed: 2.2.04
52
+ command: bundle exec ruby execution_scripts/reference_server/ref_server_authorize_launched_all_scopes.rb '{wait_outputs.authorization_url}'
53
+ action_description: Authorize all requested scopes for launched patient
54
+
55
+ - state_description: Finished Group 2 EHR Launch
56
+ status: done
57
+ last_completed: 2
58
+ action: END_SCRIPT
59
+ action_description: Finished Script
60
+
@@ -0,0 +1 @@
1
+ [{"id":"6e1f5ae0-0718-4c92-bfc2-c12c154a2d56","created_at":"2026-04-02T21:11:06.656-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"standalone_smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/*.read\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"disabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"name\":\"standalone_smart_auth_info\"}","type":"auth_info"},{"name":"standalone_smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/*.read\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"disabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"name\":\"standalone_smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[{"name":"well_known_introspection_url","type":"text","value":"https://inferno.healthit.gov/reference-server/oauth/token/introspect"},{"name":"well_known_configuration","type":"text","value":"Output is too large to display, please visit\nhttp://localhost:4567/api/test_sessions/lvGwXCOQVdy/results/6e1f5ae0-0718-4c92-bfc2-c12c154a2d56/io/outputs/well_known_configuration\nfor details\n","is_large":true},{"name":"well_known_authorization_url","type":"text","value":"https://inferno.healthit.gov/reference-server/oauth/authorization"},{"name":"well_known_management_url","type":"text","value":""},{"name":"well_known_registration_url","type":"text","value":""},{"name":"well_known_revocation_url","type":"text","value":"https://inferno.healthit.gov/reference-server/oauth/token/revoke-token"},{"name":"well_known_token_url","type":"text","value":"https://inferno.healthit.gov/reference-server/oauth/token"},{"name":"standalone_smart_auth_info","type":"text","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/*.read\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"disabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"name\":\"standalone_smart_auth_info\"}"}],"requests":[{"id":"83322aa8-04d7-4a24-b21c-2ed532ff53eb","direction":"outgoing","index":243,"result_id":"6e1f5ae0-0718-4c92-bfc2-c12c154a2d56","status":200,"timestamp":"2026-04-02T21:11:06.657-04:00","url":"https://inferno.healthit.gov/reference-server/r4/.well-known/smart-configuration","verb":"get"}],"result":"pass","test_id":"smart-smart_full_standalone_launch-smart_discovery-Test01","test_run_id":"e34f5a48-6252-495a-bb0c-f90eb6ad5ff1","test_session_id":"lvGwXCOQVdy","updated_at":"2026-04-02T21:11:06.656-04:00"},{"id":"ec21a26c-f3b2-4be3-a20e-06614688179b","created_at":"2026-04-02T21:11:06.662-04:00","inputs":[{"name":"well_known_configuration","value":"Input is too large to display, please visit\nhttp://localhost:4567/api/test_sessions/lvGwXCOQVdy/results/ec21a26c-f3b2-4be3-a20e-06614688179b/io/inputs/well_known_configuration\nfor details\n","type":"text","is_large":true}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"smart-smart_full_standalone_launch-smart_discovery-Test02","test_run_id":"e34f5a48-6252-495a-bb0c-f90eb6ad5ff1","test_session_id":"lvGwXCOQVdy","updated_at":"2026-04-02T21:11:06.662-04:00"},{"id":"40aa8ce0-004d-4a32-b00a-a0538b97d1f8","created_at":"2026-04-02T21:11:06.820-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"}],"optional":false,"outputs":[{"name":"capability_authorization_url","type":"text","value":"https://inferno.healthit.gov/reference-server/oauth/authorization"},{"name":"capability_introspection_url","type":"text","value":"https://inferno.healthit.gov/reference-server/oauth/token/introspect"},{"name":"capability_management_url","type":"text","value":""},{"name":"capability_registration_url","type":"text","value":""},{"name":"capability_revocation_url","type":"text","value":"https://inferno.healthit.gov/reference-server/oauth/token/revoke-token"},{"name":"capability_token_url","type":"text","value":"https://inferno.healthit.gov/reference-server/oauth/token"}],"requests":[{"id":"76d03b1d-79fc-4c2a-ad49-db382c235133","direction":"outgoing","index":244,"result_id":"40aa8ce0-004d-4a32-b00a-a0538b97d1f8","status":200,"timestamp":"2026-04-02T21:11:06.821-04:00","url":"https://inferno.healthit.gov/reference-server/r4/metadata","verb":"get"}],"result":"pass","test_id":"smart-smart_full_standalone_launch-smart_discovery-Test03","test_run_id":"e34f5a48-6252-495a-bb0c-f90eb6ad5ff1","test_session_id":"lvGwXCOQVdy","updated_at":"2026-04-02T21:11:06.820-04:00"},{"id":"418dc305-d361-44c5-b76c-306a3fc8ea0e","created_at":"2026-04-02T21:11:06.830-04:00","inputs":[{"name":"well_known_authorization_url","value":"https://inferno.healthit.gov/reference-server/oauth/authorization","type":"text"},{"name":"well_known_introspection_url","value":"https://inferno.healthit.gov/reference-server/oauth/token/introspect","type":"text"},{"name":"well_known_management_url","value":null,"type":"text"},{"name":"well_known_registration_url","value":null,"type":"text"},{"name":"well_known_revocation_url","value":"https://inferno.healthit.gov/reference-server/oauth/token/revoke-token","type":"text"},{"name":"well_known_token_url","value":"https://inferno.healthit.gov/reference-server/oauth/token","type":"text"},{"name":"capability_authorization_url","value":"https://inferno.healthit.gov/reference-server/oauth/authorization","type":"text"},{"name":"capability_introspection_url","value":"https://inferno.healthit.gov/reference-server/oauth/token/introspect","type":"text"},{"name":"capability_management_url","value":null,"type":"text"},{"name":"capability_registration_url","value":null,"type":"text"},{"name":"capability_revocation_url","value":"https://inferno.healthit.gov/reference-server/oauth/token/revoke-token","type":"text"},{"name":"capability_token_url","value":"https://inferno.healthit.gov/reference-server/oauth/token","type":"text"}],"optional":false,"outputs":[{"name":"smart_authorization_url","type":"text","value":"https://inferno.healthit.gov/reference-server/oauth/authorization"},{"name":"smart_token_url","type":"text","value":"https://inferno.healthit.gov/reference-server/oauth/token"},{"name":"smart_introspection_url","type":"text","value":"https://inferno.healthit.gov/reference-server/oauth/token/introspect"},{"name":"smart_management_url","type":"text","value":""},{"name":"smart_registration_url","type":"text","value":""},{"name":"smart_revocation_url","type":"text","value":"https://inferno.healthit.gov/reference-server/oauth/token/revoke-token"}],"requests":[],"result":"pass","test_id":"smart-smart_full_standalone_launch-smart_discovery-Test04","test_run_id":"e34f5a48-6252-495a-bb0c-f90eb6ad5ff1","test_session_id":"lvGwXCOQVdy","updated_at":"2026-04-02T21:11:06.830-04:00"},{"id":"ef69f827-4a1b-4536-87de-cb233f3a2ab6","created_at":"2026-04-02T21:11:07.299-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"standalone_smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/*.read\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"disabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"name\":\"standalone_smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"https://inferno.healthit.gov/reference-server/oauth/authorization correctly denied SSL 2.0 connection as required.","type":"info"},{"message":"https://inferno.healthit.gov/reference-server/oauth/authorization correctly denied SSL 3.0 connection as required.","type":"info"},{"message":"https://inferno.healthit.gov/reference-server/oauth/authorization correctly denied TLS 1.0 connection as required.","type":"info"},{"message":"https://inferno.healthit.gov/reference-server/oauth/authorization correctly denied TLS 1.1 connection as required.","type":"info"},{"message":"https://inferno.healthit.gov/reference-server/oauth/authorization accepted TLS 1.2 connection.","type":"info"},{"message":"https://inferno.healthit.gov/reference-server/oauth/authorization accepted TLS 1.3 connection.","type":"info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"smart-smart_full_standalone_launch-smart_standalone_launch-standalone_auth_tls","test_run_id":"e34f5a48-6252-495a-bb0c-f90eb6ad5ff1","test_session_id":"lvGwXCOQVdy","updated_at":"2026-04-02T21:11:07.299-04:00"},{"id":"eab96553-19f2-486d-84d8-be42df0f5d8b","created_at":"2026-04-02T21:11:07.314-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"standalone_smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/*.read\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"disabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"name\":\"standalone_smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"Inferno redirecting browser to https://inferno.healthit.gov/reference-server/oauth/authorization?response_type=code\u0026client_id=SAMPLE_PUBLIC_CLIENT_ID\u0026redirect_uri=http%3A%2F%2Flocalhost%3A4567%2Fcustom%2Fsmart%2Fredirect\u0026scope=launch%2Fpatient+openid+fhirUser+offline_access+patient%2F*.read\u0026state=69cd1f35-1f62-4ca1-b9a0-d48d898b35a0\u0026aud=https%3A%2F%2Finferno.healthit.gov%2Freference-server%2Fr4.","type":"info"}],"optional":false,"outputs":[{"name":"standalone_state","type":"text","value":"69cd1f35-1f62-4ca1-b9a0-d48d898b35a0"},{"name":"authorization_url","type":"text","value":"https://inferno.healthit.gov/reference-server/oauth/authorization?response_type=code\u0026client_id=SAMPLE_PUBLIC_CLIENT_ID\u0026redirect_uri=http%3A%2F%2Flocalhost%3A4567%2Fcustom%2Fsmart%2Fredirect\u0026scope=launch%2Fpatient+openid+fhirUser+offline_access+patient%2F*.read\u0026state=69cd1f35-1f62-4ca1-b9a0-d48d898b35a0\u0026aud=https%3A%2F%2Finferno.healthit.gov%2Freference-server%2Fr4"}],"requests":[],"result":"pass","test_id":"smart-smart_full_standalone_launch-smart_standalone_launch-smart_app_redirect","test_run_id":"e34f5a48-6252-495a-bb0c-f90eb6ad5ff1","test_session_id":"lvGwXCOQVdy","updated_at":"2026-04-02T21:11:11.779-04:00"},{"id":"ffddb56a-c199-4924-94d7-372f4785826f","created_at":"2026-04-02T21:11:11.793-04:00","inputs":[{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint used by SMART applications","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"standalone_smart_auth_info","label":null,"description":null,"value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/*.read\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"disabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"name\":\"standalone_smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"smart-smart_full_standalone_launch-smart_discovery","test_run_id":"e34f5a48-6252-495a-bb0c-f90eb6ad5ff1","test_session_id":"lvGwXCOQVdy","updated_at":"2026-04-02T21:11:11.793-04:00"},{"id":"224e5191-41e0-4b70-9aae-60a62d3ba259","created_at":"2026-04-02T21:11:11.797-04:00","inputs":[],"optional":false,"outputs":[{"name":"standalone_code","type":"text","value":"eyJjb2RlIjoiU0FNUExFX0NPREUiLCJzY29wZXMiOiJsYXVuY2gvcGF0aWVudCBvcGVuaWQgZmhpclVzZXIgb2ZmbGluZV9hY2Nlc3MgcGF0aWVudC8qLnJlYWQgIiwicGF0aWVudElkIjoiODUiLCJjb2RlQ2hhbGxlbmdlTWV0aG9kIjoicGxhaW4ifQ=="}],"requests":[{"id":"1d959b38-19b5-4f8d-96b2-3d5b994b0cb1","direction":"incoming","index":245,"result_id":"eab96553-19f2-486d-84d8-be42df0f5d8b","status":null,"timestamp":"2026-04-02T21:11:11.779-04:00","url":"http://localhost:4567/custom/smart/redirect?code=eyJjb2RlIjoiU0FNUExFX0NPREUiLCJzY29wZXMiOiJsYXVuY2gvcGF0aWVudCBvcGVuaWQgZmhpclVzZXIgb2ZmbGluZV9hY2Nlc3MgcGF0aWVudC8qLnJlYWQgIiwicGF0aWVudElkIjoiODUiLCJjb2RlQ2hhbGxlbmdlTWV0aG9kIjoicGxhaW4ifQ==\u0026state=69cd1f35-1f62-4ca1-b9a0-d48d898b35a0","verb":"get"}],"result":"pass","test_id":"smart-smart_full_standalone_launch-smart_standalone_launch-smart_code_received","test_run_id":"e34f5a48-6252-495a-bb0c-f90eb6ad5ff1","test_session_id":"lvGwXCOQVdy","updated_at":"2026-04-02T21:11:11.797-04:00"},{"id":"217458d8-cffe-4a22-af82-deb15037f267","created_at":"2026-04-02T21:11:12.268-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"standalone_smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/*.read\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"disabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"name\":\"standalone_smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"https://inferno.healthit.gov/reference-server/oauth/token correctly denied SSL 2.0 connection as required.","type":"info"},{"message":"https://inferno.healthit.gov/reference-server/oauth/token correctly denied SSL 3.0 connection as required.","type":"info"},{"message":"https://inferno.healthit.gov/reference-server/oauth/token correctly denied TLS 1.0 connection as required.","type":"info"},{"message":"https://inferno.healthit.gov/reference-server/oauth/token correctly denied TLS 1.1 connection as required.","type":"info"},{"message":"https://inferno.healthit.gov/reference-server/oauth/token accepted TLS 1.2 connection.","type":"info"},{"message":"https://inferno.healthit.gov/reference-server/oauth/token accepted TLS 1.3 connection.","type":"info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"smart-smart_full_standalone_launch-smart_standalone_launch-standalone_token_tls","test_run_id":"e34f5a48-6252-495a-bb0c-f90eb6ad5ff1","test_session_id":"lvGwXCOQVdy","updated_at":"2026-04-02T21:11:12.268-04:00"},{"id":"a482e73a-63fc-41af-bdae-87acf7bfff7e","created_at":"2026-04-02T21:11:12.396-04:00","inputs":[{"name":"standalone_code","value":"eyJjb2RlIjoiU0FNUExFX0NPREUiLCJzY29wZXMiOiJsYXVuY2gvcGF0aWVudCBvcGVuaWQgZmhpclVzZXIgb2ZmbGluZV9hY2Nlc3MgcGF0aWVudC8qLnJlYWQgIiwicGF0aWVudElkIjoiODUiLCJjb2RlQ2hhbGxlbmdlTWV0aG9kIjoicGxhaW4ifQ==","type":"text"},{"name":"pkce_code_verifier","value":null,"type":"text"},{"name":"standalone_smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/*.read\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"disabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"name\":\"standalone_smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[{"name":"standalone_smart_credentials","type":"text","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/*.read\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"disabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"6992df96-01d8-4fcd-a0bd-b440a09b67c9\",\"refresh_token\":\"8c6743a8-629d-4739-b0f6-7f0b52873e45\",\"issue_time\":\"2026-04-02T21:11:12-04:00\",\"expires_in\":3600,\"name\":\"standalone_smart_auth_info\"}"},{"name":"standalone_token_retrieval_time","type":"text","value":"2026-04-02T21:11:12-04:00"},{"name":"standalone_smart_auth_info","type":"text","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/*.read\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"disabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"6992df96-01d8-4fcd-a0bd-b440a09b67c9\",\"refresh_token\":\"8c6743a8-629d-4739-b0f6-7f0b52873e45\",\"issue_time\":\"2026-04-02T21:11:12-04:00\",\"expires_in\":3600,\"name\":\"standalone_smart_auth_info\"}"}],"requests":[{"id":"1d959b38-19b5-4f8d-96b2-3d5b994b0cb1","direction":"incoming","index":245,"result_id":"eab96553-19f2-486d-84d8-be42df0f5d8b","status":null,"timestamp":"2026-04-02T21:11:11.779-04:00","url":"http://localhost:4567/custom/smart/redirect?code=eyJjb2RlIjoiU0FNUExFX0NPREUiLCJzY29wZXMiOiJsYXVuY2gvcGF0aWVudCBvcGVuaWQgZmhpclVzZXIgb2ZmbGluZV9hY2Nlc3MgcGF0aWVudC8qLnJlYWQgIiwicGF0aWVudElkIjoiODUiLCJjb2RlQ2hhbGxlbmdlTWV0aG9kIjoicGxhaW4ifQ==\u0026state=69cd1f35-1f62-4ca1-b9a0-d48d898b35a0","verb":"get"},{"id":"2e1dbd13-3b5c-4c3a-b0dd-4450c7f55fb0","direction":"outgoing","index":246,"result_id":"a482e73a-63fc-41af-bdae-87acf7bfff7e","status":200,"timestamp":"2026-04-02T21:11:12.398-04:00","url":"https://inferno.healthit.gov/reference-server/oauth/token","verb":"post"}],"result":"pass","test_id":"smart-smart_full_standalone_launch-smart_standalone_launch-smart_token_exchange","test_run_id":"e34f5a48-6252-495a-bb0c-f90eb6ad5ff1","test_session_id":"lvGwXCOQVdy","updated_at":"2026-04-02T21:11:12.396-04:00"},{"id":"363cefd1-db43-499e-ae5c-d8866578690a","created_at":"2026-04-02T21:11:12.411-04:00","inputs":[{"name":"standalone_smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/*.read\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"disabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"6992df96-01d8-4fcd-a0bd-b440a09b67c9\",\"refresh_token\":\"8c6743a8-629d-4739-b0f6-7f0b52873e45\",\"issue_time\":\"2026-04-02T21:11:12-04:00\",\"expires_in\":3600,\"name\":\"standalone_smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[{"name":"standalone_id_token","type":"text","value":"eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJodHRwczovL2luZmVybm8uaGVhbHRoaXQuZ292L3JlZmVyZW5jZS1zZXJ2ZXIvcjQiLCJzdWIiOiJlOGZkNTk5NC0yYTExLTRhYzEtYWQyMS01NWFmNDM3YjYwM2IiLCJhdWQiOiJTQU1QTEVfUFVCTElDX0NMSUVOVF9JRCIsImV4cCI6MTgwNjcxNDY3MiwiaWF0IjoxNzc1MTc4NjcyLCJmaGlyVXNlciI6Imh0dHBzOi8vaW5mZXJuby5oZWFsdGhpdC5nb3YvcmVmZXJlbmNlLXNlcnZlci9yNC9QYXRpZW50Lzg1In0.JxHA5sktOha0Dty2b5QvcfFx9TPJf7iPXXEq7KO7BkGCSmosBtLj7RtLzjR8D1aIRxHEpPhNUEU1S_57zaZq66QaptLU3DsFBlFsNqiYxMLhAYTL03NbBmoriW52H_Iw_RIlhOCyrkcrW04te9wgMAfIPRUxjurlMEHG9eN2_h3l9c8w5V1FqTtrH997sUm57zcit9yZjhxX_VDH6oU_AbF8PVYM2IlyR4JnKxAEuwcdHuSESXevjmwP5VUviiPEgn9SdrlHjHS2KjfTQijSPqn0OAApvvRTx3g5uW9sWy4u2-RTHcLB1_sR8t0c8ZnBGcTfjGEkQXCOSTa7QiTrsA"},{"name":"standalone_refresh_token","type":"text","value":"8c6743a8-629d-4739-b0f6-7f0b52873e45"},{"name":"standalone_access_token","type":"text","value":"6992df96-01d8-4fcd-a0bd-b440a09b67c9"},{"name":"standalone_expires_in","type":"text","value":"3600"},{"name":"standalone_patient_id","type":"text","value":"85"},{"name":"standalone_encounter_id","type":"text","value":""},{"name":"standalone_received_scopes","type":"text","value":"launch/patient openid fhirUser offline_access patient/*.read"},{"name":"standalone_intent","type":"text","value":""},{"name":"standalone_smart_auth_info","type":"text","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/*.read\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"disabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"6992df96-01d8-4fcd-a0bd-b440a09b67c9\",\"refresh_token\":\"8c6743a8-629d-4739-b0f6-7f0b52873e45\",\"issue_time\":\"2026-04-02T21:11:12-04:00\",\"expires_in\":3600,\"name\":\"standalone_smart_auth_info\"}"}],"requests":[{"id":"2e1dbd13-3b5c-4c3a-b0dd-4450c7f55fb0","direction":"outgoing","index":246,"result_id":"a482e73a-63fc-41af-bdae-87acf7bfff7e","status":200,"timestamp":"2026-04-02T21:11:12.398-04:00","url":"https://inferno.healthit.gov/reference-server/oauth/token","verb":"post"}],"result":"pass","test_id":"smart-smart_full_standalone_launch-smart_standalone_launch-smart_token_response_body","test_run_id":"e34f5a48-6252-495a-bb0c-f90eb6ad5ff1","test_session_id":"lvGwXCOQVdy","updated_at":"2026-04-02T21:11:12.411-04:00"},{"id":"8c9a72a9-b97d-41fc-957e-0945b44adc43","created_at":"2026-04-02T21:11:12.413-04:00","inputs":[],"optional":false,"outputs":[],"requests":[{"id":"2e1dbd13-3b5c-4c3a-b0dd-4450c7f55fb0","direction":"outgoing","index":246,"result_id":"a482e73a-63fc-41af-bdae-87acf7bfff7e","status":200,"timestamp":"2026-04-02T21:11:12.398-04:00","url":"https://inferno.healthit.gov/reference-server/oauth/token","verb":"post"}],"result":"pass","test_id":"smart-smart_full_standalone_launch-smart_standalone_launch-smart_token_response_headers","test_run_id":"e34f5a48-6252-495a-bb0c-f90eb6ad5ff1","test_session_id":"lvGwXCOQVdy","updated_at":"2026-04-02T21:11:12.413-04:00"},{"id":"bc6b4804-f027-4831-8bb3-97dc0f7b4f7d","created_at":"2026-04-02T21:11:12.415-04:00","inputs":[{"name":"url","label":"Standalone FHIR Endpoint","description":"URL of the FHIR endpoint used by standalone applications","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"standalone_smart_auth_info","label":"Standalone Launch Credentials","description":null,"value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/*.read\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"disabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"name\":\"standalone_smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"smart-smart_full_standalone_launch-smart_standalone_launch","test_run_id":"e34f5a48-6252-495a-bb0c-f90eb6ad5ff1","test_session_id":"lvGwXCOQVdy","updated_at":"2026-04-02T21:11:12.415-04:00"},{"id":"ea3e4e73-6cc6-4bc7-8bb4-3f9268b0f8f4","created_at":"2026-04-02T21:11:12.418-04:00","inputs":[{"name":"standalone_id_token","value":"eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJodHRwczovL2luZmVybm8uaGVhbHRoaXQuZ292L3JlZmVyZW5jZS1zZXJ2ZXIvcjQiLCJzdWIiOiJlOGZkNTk5NC0yYTExLTRhYzEtYWQyMS01NWFmNDM3YjYwM2IiLCJhdWQiOiJTQU1QTEVfUFVCTElDX0NMSUVOVF9JRCIsImV4cCI6MTgwNjcxNDY3MiwiaWF0IjoxNzc1MTc4NjcyLCJmaGlyVXNlciI6Imh0dHBzOi8vaW5mZXJuby5oZWFsdGhpdC5nb3YvcmVmZXJlbmNlLXNlcnZlci9yNC9QYXRpZW50Lzg1In0.JxHA5sktOha0Dty2b5QvcfFx9TPJf7iPXXEq7KO7BkGCSmosBtLj7RtLzjR8D1aIRxHEpPhNUEU1S_57zaZq66QaptLU3DsFBlFsNqiYxMLhAYTL03NbBmoriW52H_Iw_RIlhOCyrkcrW04te9wgMAfIPRUxjurlMEHG9eN2_h3l9c8w5V1FqTtrH997sUm57zcit9yZjhxX_VDH6oU_AbF8PVYM2IlyR4JnKxAEuwcdHuSESXevjmwP5VUviiPEgn9SdrlHjHS2KjfTQijSPqn0OAApvvRTx3g5uW9sWy4u2-RTHcLB1_sR8t0c8ZnBGcTfjGEkQXCOSTa7QiTrsA","type":"text"}],"optional":false,"outputs":[{"name":"id_token_payload_json","type":"text","value":"{\"iss\":\"https://inferno.healthit.gov/reference-server/r4\",\"sub\":\"e8fd5994-2a11-4ac1-ad21-55af437b603b\",\"aud\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"exp\":1806714672,\"iat\":1775178672,\"fhirUser\":\"https://inferno.healthit.gov/reference-server/r4/Patient/85\"}"},{"name":"id_token_header_json","type":"text","value":"{\"alg\":\"RS256\",\"typ\":\"JWT\"}"}],"requests":[],"result":"pass","test_id":"smart-smart_full_standalone_launch-smart_openid_connect-smart_openid_decode_id_token","test_run_id":"e34f5a48-6252-495a-bb0c-f90eb6ad5ff1","test_session_id":"lvGwXCOQVdy","updated_at":"2026-04-02T21:11:12.418-04:00"},{"id":"3e7d0685-b8d0-4acf-9d78-70104280e667","created_at":"2026-04-02T21:11:12.535-04:00","inputs":[{"name":"id_token_payload_json","value":"{\"iss\":\"https://inferno.healthit.gov/reference-server/r4\",\"sub\":\"e8fd5994-2a11-4ac1-ad21-55af437b603b\",\"aud\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"exp\":1806714672,\"iat\":1775178672,\"fhirUser\":\"https://inferno.healthit.gov/reference-server/r4/Patient/85\"}","type":"text"}],"optional":false,"outputs":[{"name":"openid_configuration_json","type":"text","value":"{\"response_types_supported\":[\"code\",\"id_token\",\"token id_token\"],\"jwks_uri\":\"https://inferno.healthit.gov/reference-server/r4/.well-known/jwk\",\"subject_types_supported\":[\"pairwise\",\"public\"],\"id_token_signing_alg_values_supported\":[\"RS256\"],\"issuer\":\"https://inferno.healthit.gov/reference-server/r4\",\"authorization_endpoint\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"token_endpoint\":\"https://inferno.healthit.gov/reference-server/oauth/token\"}"},{"name":"openid_issuer","type":"text","value":"https://inferno.healthit.gov/reference-server/r4"}],"requests":[{"id":"d52961dc-1bbf-41ab-8b6c-d3b1a9cef108","direction":"outgoing","index":247,"result_id":"3e7d0685-b8d0-4acf-9d78-70104280e667","status":200,"timestamp":"2026-04-02T21:11:12.536-04:00","url":"https://inferno.healthit.gov/reference-server/r4/.well-known/openid-configuration","verb":"get"}],"result":"pass","test_id":"smart-smart_full_standalone_launch-smart_openid_connect-smart_openid_retrieve_configuration","test_run_id":"e34f5a48-6252-495a-bb0c-f90eb6ad5ff1","test_session_id":"lvGwXCOQVdy","updated_at":"2026-04-02T21:11:12.535-04:00"},{"id":"422f9cb0-754f-4e5e-9eeb-8f1f0f1b7c8b","created_at":"2026-04-02T21:11:12.545-04:00","inputs":[{"name":"openid_configuration_json","value":"{\"response_types_supported\":[\"code\",\"id_token\",\"token id_token\"],\"jwks_uri\":\"https://inferno.healthit.gov/reference-server/r4/.well-known/jwk\",\"subject_types_supported\":[\"pairwise\",\"public\"],\"id_token_signing_alg_values_supported\":[\"RS256\"],\"issuer\":\"https://inferno.healthit.gov/reference-server/r4\",\"authorization_endpoint\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"token_endpoint\":\"https://inferno.healthit.gov/reference-server/oauth/token\"}","type":"text"}],"optional":false,"outputs":[{"name":"openid_jwks_uri","type":"text","value":"https://inferno.healthit.gov/reference-server/r4/.well-known/jwk"}],"requests":[],"result":"pass","test_id":"smart-smart_full_standalone_launch-smart_openid_connect-smart_openid_required_configuration_fields","test_run_id":"e34f5a48-6252-495a-bb0c-f90eb6ad5ff1","test_session_id":"lvGwXCOQVdy","updated_at":"2026-04-02T21:11:12.545-04:00"},{"id":"3c4bd44e-1981-4ae8-9385-c3829a5bcbfb","created_at":"2026-04-02T21:11:12.662-04:00","inputs":[{"name":"openid_jwks_uri","value":"https://inferno.healthit.gov/reference-server/r4/.well-known/jwk","type":"text"}],"optional":false,"outputs":[{"name":"openid_jwks_json","type":"text","value":"{\"keys\":[{\"kty\":\"RSA\",\"e\":\"AQAB\",\"use\":\"sig\",\"alg\":\"RS256\",\"n\":\"AIHUBZRebKtjubhIN0AbPWYVsCnNaT1rksFU6ufgAdgjCyfA5Em2Jl3ev97dq5af1kOBGLqVJT90JypFfIvWRYEDYRefMmJS7ReZInstnD8kMVx5N_6UHxdX6hHNsg31DI6BxZMg-jFfXOOlQpA78EVIZnH1JP0S1GEnwIatMM_fWHs-XeiS3AFxjyNqpJvGlNtlqpqcGz7en0yEjzdLpLrZ1HNwfzmQwYHmy4oxeC1q9lS34iH4vMmKdBXfwrV-92OzP9o-k8x1gi5196qj60sDiza-oDARJILAEaL1iKVAY4ywtjWb_k7-Va6GXXeAbgXiZ8t040uQDlZQEyLDHWc=\"}]}"},{"name":"openid_rsa_keys_json","type":"text","value":"[{\"kty\":\"RSA\",\"e\":\"AQAB\",\"use\":\"sig\",\"alg\":\"RS256\",\"n\":\"AIHUBZRebKtjubhIN0AbPWYVsCnNaT1rksFU6ufgAdgjCyfA5Em2Jl3ev97dq5af1kOBGLqVJT90JypFfIvWRYEDYRefMmJS7ReZInstnD8kMVx5N_6UHxdX6hHNsg31DI6BxZMg-jFfXOOlQpA78EVIZnH1JP0S1GEnwIatMM_fWHs-XeiS3AFxjyNqpJvGlNtlqpqcGz7en0yEjzdLpLrZ1HNwfzmQwYHmy4oxeC1q9lS34iH4vMmKdBXfwrV-92OzP9o-k8x1gi5196qj60sDiza-oDARJILAEaL1iKVAY4ywtjWb_k7-Va6GXXeAbgXiZ8t040uQDlZQEyLDHWc=\"}]"}],"requests":[{"id":"cd837bfa-e272-4556-a337-772b7d45f082","direction":"outgoing","index":248,"result_id":"3c4bd44e-1981-4ae8-9385-c3829a5bcbfb","status":200,"timestamp":"2026-04-02T21:11:12.663-04:00","url":"https://inferno.healthit.gov/reference-server/r4/.well-known/jwk","verb":"get"}],"result":"pass","test_id":"smart-smart_full_standalone_launch-smart_openid_connect-smart_openid_retrieve_jwks","test_run_id":"e34f5a48-6252-495a-bb0c-f90eb6ad5ff1","test_session_id":"lvGwXCOQVdy","updated_at":"2026-04-02T21:11:12.662-04:00"},{"id":"45037d97-2197-4ff3-9b94-6976dc9afb34","created_at":"2026-04-02T21:11:12.671-04:00","inputs":[{"name":"id_token_header_json","value":"{\"alg\":\"RS256\",\"typ\":\"JWT\"}","type":"text"},{"name":"openid_rsa_keys_json","value":"[{\"kty\":\"RSA\",\"e\":\"AQAB\",\"use\":\"sig\",\"alg\":\"RS256\",\"n\":\"AIHUBZRebKtjubhIN0AbPWYVsCnNaT1rksFU6ufgAdgjCyfA5Em2Jl3ev97dq5af1kOBGLqVJT90JypFfIvWRYEDYRefMmJS7ReZInstnD8kMVx5N_6UHxdX6hHNsg31DI6BxZMg-jFfXOOlQpA78EVIZnH1JP0S1GEnwIatMM_fWHs-XeiS3AFxjyNqpJvGlNtlqpqcGz7en0yEjzdLpLrZ1HNwfzmQwYHmy4oxeC1q9lS34iH4vMmKdBXfwrV-92OzP9o-k8x1gi5196qj60sDiza-oDARJILAEaL1iKVAY4ywtjWb_k7-Va6GXXeAbgXiZ8t040uQDlZQEyLDHWc=\"}]","type":"text"}],"optional":false,"outputs":[{"name":"id_token_jwk_json","type":"text","value":"{\"kty\":\"RSA\",\"e\":\"AQAB\",\"use\":\"sig\",\"alg\":\"RS256\",\"n\":\"AIHUBZRebKtjubhIN0AbPWYVsCnNaT1rksFU6ufgAdgjCyfA5Em2Jl3ev97dq5af1kOBGLqVJT90JypFfIvWRYEDYRefMmJS7ReZInstnD8kMVx5N_6UHxdX6hHNsg31DI6BxZMg-jFfXOOlQpA78EVIZnH1JP0S1GEnwIatMM_fWHs-XeiS3AFxjyNqpJvGlNtlqpqcGz7en0yEjzdLpLrZ1HNwfzmQwYHmy4oxeC1q9lS34iH4vMmKdBXfwrV-92OzP9o-k8x1gi5196qj60sDiza-oDARJILAEaL1iKVAY4ywtjWb_k7-Va6GXXeAbgXiZ8t040uQDlZQEyLDHWc=\"}"}],"requests":[],"result":"pass","test_id":"smart-smart_full_standalone_launch-smart_openid_connect-smart_openid_token_header","test_run_id":"e34f5a48-6252-495a-bb0c-f90eb6ad5ff1","test_session_id":"lvGwXCOQVdy","updated_at":"2026-04-02T21:11:12.671-04:00"},{"id":"1b2f1523-dd2c-47ce-aa04-4f77e052fa68","created_at":"2026-04-02T21:11:12.675-04:00","inputs":[{"name":"standalone_id_token","value":"eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJodHRwczovL2luZmVybm8uaGVhbHRoaXQuZ292L3JlZmVyZW5jZS1zZXJ2ZXIvcjQiLCJzdWIiOiJlOGZkNTk5NC0yYTExLTRhYzEtYWQyMS01NWFmNDM3YjYwM2IiLCJhdWQiOiJTQU1QTEVfUFVCTElDX0NMSUVOVF9JRCIsImV4cCI6MTgwNjcxNDY3MiwiaWF0IjoxNzc1MTc4NjcyLCJmaGlyVXNlciI6Imh0dHBzOi8vaW5mZXJuby5oZWFsdGhpdC5nb3YvcmVmZXJlbmNlLXNlcnZlci9yNC9QYXRpZW50Lzg1In0.JxHA5sktOha0Dty2b5QvcfFx9TPJf7iPXXEq7KO7BkGCSmosBtLj7RtLzjR8D1aIRxHEpPhNUEU1S_57zaZq66QaptLU3DsFBlFsNqiYxMLhAYTL03NbBmoriW52H_Iw_RIlhOCyrkcrW04te9wgMAfIPRUxjurlMEHG9eN2_h3l9c8w5V1FqTtrH997sUm57zcit9yZjhxX_VDH6oU_AbF8PVYM2IlyR4JnKxAEuwcdHuSESXevjmwP5VUviiPEgn9SdrlHjHS2KjfTQijSPqn0OAApvvRTx3g5uW9sWy4u2-RTHcLB1_sR8t0c8ZnBGcTfjGEkQXCOSTa7QiTrsA","type":"text"},{"name":"openid_configuration_json","value":"{\"response_types_supported\":[\"code\",\"id_token\",\"token id_token\"],\"jwks_uri\":\"https://inferno.healthit.gov/reference-server/r4/.well-known/jwk\",\"subject_types_supported\":[\"pairwise\",\"public\"],\"id_token_signing_alg_values_supported\":[\"RS256\"],\"issuer\":\"https://inferno.healthit.gov/reference-server/r4\",\"authorization_endpoint\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"token_endpoint\":\"https://inferno.healthit.gov/reference-server/oauth/token\"}","type":"text"},{"name":"id_token_jwk_json","value":"{\"kty\":\"RSA\",\"e\":\"AQAB\",\"use\":\"sig\",\"alg\":\"RS256\",\"n\":\"AIHUBZRebKtjubhIN0AbPWYVsCnNaT1rksFU6ufgAdgjCyfA5Em2Jl3ev97dq5af1kOBGLqVJT90JypFfIvWRYEDYRefMmJS7ReZInstnD8kMVx5N_6UHxdX6hHNsg31DI6BxZMg-jFfXOOlQpA78EVIZnH1JP0S1GEnwIatMM_fWHs-XeiS3AFxjyNqpJvGlNtlqpqcGz7en0yEjzdLpLrZ1HNwfzmQwYHmy4oxeC1q9lS34iH4vMmKdBXfwrV-92OzP9o-k8x1gi5196qj60sDiza-oDARJILAEaL1iKVAY4ywtjWb_k7-Va6GXXeAbgXiZ8t040uQDlZQEyLDHWc=\"}","type":"text"},{"name":"standalone_smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/*.read\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"disabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"6992df96-01d8-4fcd-a0bd-b440a09b67c9\",\"refresh_token\":\"8c6743a8-629d-4739-b0f6-7f0b52873e45\",\"issue_time\":\"2026-04-02T21:11:12-04:00\",\"expires_in\":3600,\"name\":\"standalone_smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"smart-smart_full_standalone_launch-smart_openid_connect-smart_openid_token_payload","test_run_id":"e34f5a48-6252-495a-bb0c-f90eb6ad5ff1","test_session_id":"lvGwXCOQVdy","updated_at":"2026-04-02T21:11:12.675-04:00"},{"id":"4d1c91ea-dfde-4bcb-bec2-02bb9172acf4","created_at":"2026-04-02T21:11:12.877-04:00","inputs":[{"name":"id_token_payload_json","value":"{\"iss\":\"https://inferno.healthit.gov/reference-server/r4\",\"sub\":\"e8fd5994-2a11-4ac1-ad21-55af437b603b\",\"aud\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"exp\":1806714672,\"iat\":1775178672,\"fhirUser\":\"https://inferno.healthit.gov/reference-server/r4/Patient/85\"}","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"standalone_smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/*.read\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"disabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"6992df96-01d8-4fcd-a0bd-b440a09b67c9\",\"refresh_token\":\"8c6743a8-629d-4739-b0f6-7f0b52873e45\",\"issue_time\":\"2026-04-02T21:11:12-04:00\",\"expires_in\":3600,\"name\":\"standalone_smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[{"name":"id_token_fhir_user","type":"text","value":"https://inferno.healthit.gov/reference-server/r4/Patient/85"}],"requests":[{"id":"e9e2edef-1e7f-4cc3-acfe-af10f5bc4c18","direction":"outgoing","index":249,"result_id":"4d1c91ea-dfde-4bcb-bec2-02bb9172acf4","status":200,"timestamp":"2026-04-02T21:11:12.879-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Patient/85","verb":"get"}],"result":"pass","test_id":"smart-smart_full_standalone_launch-smart_openid_connect-smart_openid_fhir_user_claim","test_run_id":"e34f5a48-6252-495a-bb0c-f90eb6ad5ff1","test_session_id":"lvGwXCOQVdy","updated_at":"2026-04-02T21:11:12.877-04:00"},{"id":"7d28b933-66fb-4794-a952-96bfba6ceefb","created_at":"2026-04-02T21:11:12.890-04:00","inputs":[{"name":"standalone_id_token","label":null,"description":null,"value":"eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJodHRwczovL2luZmVybm8uaGVhbHRoaXQuZ292L3JlZmVyZW5jZS1zZXJ2ZXIvcjQiLCJzdWIiOiJlOGZkNTk5NC0yYTExLTRhYzEtYWQyMS01NWFmNDM3YjYwM2IiLCJhdWQiOiJTQU1QTEVfUFVCTElDX0NMSUVOVF9JRCIsImV4cCI6MTgwNjcxNDY3MiwiaWF0IjoxNzc1MTc4NjcyLCJmaGlyVXNlciI6Imh0dHBzOi8vaW5mZXJuby5oZWFsdGhpdC5nb3YvcmVmZXJlbmNlLXNlcnZlci9yNC9QYXRpZW50Lzg1In0.JxHA5sktOha0Dty2b5QvcfFx9TPJf7iPXXEq7KO7BkGCSmosBtLj7RtLzjR8D1aIRxHEpPhNUEU1S_57zaZq66QaptLU3DsFBlFsNqiYxMLhAYTL03NbBmoriW52H_Iw_RIlhOCyrkcrW04te9wgMAfIPRUxjurlMEHG9eN2_h3l9c8w5V1FqTtrH997sUm57zcit9yZjhxX_VDH6oU_AbF8PVYM2IlyR4JnKxAEuwcdHuSESXevjmwP5VUviiPEgn9SdrlHjHS2KjfTQijSPqn0OAApvvRTx3g5uW9sWy4u2-RTHcLB1_sR8t0c8ZnBGcTfjGEkQXCOSTa7QiTrsA","type":"text"},{"name":"standalone_smart_auth_info","label":null,"description":null,"value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/*.read\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"disabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"6992df96-01d8-4fcd-a0bd-b440a09b67c9\",\"refresh_token\":\"8c6743a8-629d-4739-b0f6-7f0b52873e45\",\"issue_time\":\"2026-04-02T21:11:12-04:00\",\"expires_in\":3600,\"name\":\"standalone_smart_auth_info\"}","type":"auth_info"},{"name":"url","label":null,"description":null,"value":"https://inferno.healthit.gov/reference-server/r4","type":"text"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"smart-smart_full_standalone_launch-smart_openid_connect","test_run_id":"e34f5a48-6252-495a-bb0c-f90eb6ad5ff1","test_session_id":"lvGwXCOQVdy","updated_at":"2026-04-02T21:11:12.890-04:00"},{"id":"644ac3a2-1cb9-42e4-97d7-7dbe52b88fa8","created_at":"2026-04-02T21:11:13.007-04:00","inputs":[{"name":"standalone_received_scopes","value":"launch/patient openid fhirUser offline_access patient/*.read","type":"text"},{"name":"standalone_smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/*.read\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"disabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"6992df96-01d8-4fcd-a0bd-b440a09b67c9\",\"refresh_token\":\"8c6743a8-629d-4739-b0f6-7f0b52873e45\",\"issue_time\":\"2026-04-02T21:11:12-04:00\",\"expires_in\":3600,\"name\":\"standalone_smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[{"name":"standalone_smart_credentials","type":"text","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/*.read\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"disabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"dad1f194-a318-44c9-8fa0-b006f8b6e806\",\"refresh_token\":\"3a5126a8-3e12-4e32-a1bb-0bdf68845fe2\",\"issue_time\":\"2026-04-02T21:11:13-04:00\",\"expires_in\":3600,\"name\":\"standalone_smart_auth_info\"}"},{"name":"standalone_token_retrieval_time","type":"text","value":"2026-04-02T21:11:13-04:00"},{"name":"standalone_smart_auth_info","type":"text","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/*.read\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"disabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"dad1f194-a318-44c9-8fa0-b006f8b6e806\",\"refresh_token\":\"3a5126a8-3e12-4e32-a1bb-0bdf68845fe2\",\"issue_time\":\"2026-04-02T21:11:13-04:00\",\"expires_in\":3600,\"name\":\"standalone_smart_auth_info\"}"}],"requests":[{"id":"f5167d8c-81c8-448f-a7b8-781bb22ab8ab","direction":"outgoing","index":250,"result_id":"644ac3a2-1cb9-42e4-97d7-7dbe52b88fa8","status":200,"timestamp":"2026-04-02T21:11:13.009-04:00","url":"https://inferno.healthit.gov/reference-server/oauth/token","verb":"post"}],"result":"pass","test_id":"smart-smart_full_standalone_launch-smart_standalone_refresh_without_scopes-smart_token_refresh","test_run_id":"e34f5a48-6252-495a-bb0c-f90eb6ad5ff1","test_session_id":"lvGwXCOQVdy","updated_at":"2026-04-02T21:11:13.007-04:00"},{"id":"84080521-5f46-416a-bcc4-b3eb59b8dd13","created_at":"2026-04-02T21:11:13.025-04:00","inputs":[{"name":"standalone_received_scopes","value":"launch/patient openid fhirUser offline_access patient/*.read","type":"text"},{"name":"standalone_smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/*.read\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"disabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"dad1f194-a318-44c9-8fa0-b006f8b6e806\",\"refresh_token\":\"3a5126a8-3e12-4e32-a1bb-0bdf68845fe2\",\"issue_time\":\"2026-04-02T21:11:13-04:00\",\"expires_in\":3600,\"name\":\"standalone_smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[{"name":"standalone_refresh_token","type":"text","value":"3a5126a8-3e12-4e32-a1bb-0bdf68845fe2"},{"name":"standalone_access_token","type":"text","value":"dad1f194-a318-44c9-8fa0-b006f8b6e806"},{"name":"standalone_token_retrieval_time","type":"text","value":"2026-04-02T21:11:13-04:00"},{"name":"standalone_expires_in","type":"text","value":"3600"},{"name":"standalone_received_scopes","type":"text","value":"launch/patient openid fhirUser offline_access patient/*.read"},{"name":"standalone_smart_auth_info","type":"text","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/*.read\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"disabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"dad1f194-a318-44c9-8fa0-b006f8b6e806\",\"refresh_token\":\"3a5126a8-3e12-4e32-a1bb-0bdf68845fe2\",\"issue_time\":\"2026-04-02T21:11:13-04:00\",\"expires_in\":3600,\"name\":\"standalone_smart_auth_info\"}"}],"requests":[{"id":"f5167d8c-81c8-448f-a7b8-781bb22ab8ab","direction":"outgoing","index":250,"result_id":"644ac3a2-1cb9-42e4-97d7-7dbe52b88fa8","status":200,"timestamp":"2026-04-02T21:11:13.009-04:00","url":"https://inferno.healthit.gov/reference-server/oauth/token","verb":"post"}],"result":"pass","test_id":"smart-smart_full_standalone_launch-smart_standalone_refresh_without_scopes-smart_token_refresh_body","test_run_id":"e34f5a48-6252-495a-bb0c-f90eb6ad5ff1","test_session_id":"lvGwXCOQVdy","updated_at":"2026-04-02T21:11:13.025-04:00"},{"id":"3eba9abc-18f6-44ef-b5d6-00d1fd3048c5","created_at":"2026-04-02T21:11:13.028-04:00","inputs":[],"optional":false,"outputs":[],"requests":[{"id":"f5167d8c-81c8-448f-a7b8-781bb22ab8ab","direction":"outgoing","index":250,"result_id":"644ac3a2-1cb9-42e4-97d7-7dbe52b88fa8","status":200,"timestamp":"2026-04-02T21:11:13.009-04:00","url":"https://inferno.healthit.gov/reference-server/oauth/token","verb":"post"}],"result":"pass","test_id":"smart-smart_full_standalone_launch-smart_standalone_refresh_without_scopes-smart_token_response_headers","test_run_id":"e34f5a48-6252-495a-bb0c-f90eb6ad5ff1","test_session_id":"lvGwXCOQVdy","updated_at":"2026-04-02T21:11:13.028-04:00"},{"id":"f7ffa726-8341-4967-a333-37cc16dd8010","created_at":"2026-04-02T21:11:13.030-04:00","inputs":[{"name":"standalone_received_scopes","label":null,"description":null,"value":"launch/patient openid fhirUser offline_access patient/*.read","type":"text"},{"name":"standalone_smart_auth_info","label":null,"description":null,"value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/*.read\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"disabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"6992df96-01d8-4fcd-a0bd-b440a09b67c9\",\"refresh_token\":\"8c6743a8-629d-4739-b0f6-7f0b52873e45\",\"issue_time\":\"2026-04-02T21:11:12-04:00\",\"expires_in\":3600,\"name\":\"standalone_smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"smart-smart_full_standalone_launch-smart_standalone_refresh_without_scopes","test_run_id":"e34f5a48-6252-495a-bb0c-f90eb6ad5ff1","test_session_id":"lvGwXCOQVdy","updated_at":"2026-04-02T21:11:13.030-04:00"},{"id":"a7b09ca2-bcb8-4b07-a46c-840500f05c26","created_at":"2026-04-02T21:11:13.142-04:00","inputs":[{"name":"standalone_received_scopes","value":"launch/patient openid fhirUser offline_access patient/*.read","type":"text"},{"name":"standalone_smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/*.read\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"disabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"dad1f194-a318-44c9-8fa0-b006f8b6e806\",\"refresh_token\":\"3a5126a8-3e12-4e32-a1bb-0bdf68845fe2\",\"issue_time\":\"2026-04-02T21:11:13-04:00\",\"expires_in\":3600,\"name\":\"standalone_smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[{"name":"standalone_smart_credentials","type":"text","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/*.read\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"disabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"a15b241f-83f2-4c7b-873f-b6e8f523f6c7\",\"refresh_token\":\"d3c05fae-59cb-4e55-8c39-2963181fd32a\",\"issue_time\":\"2026-04-02T21:11:13-04:00\",\"expires_in\":3600,\"name\":\"standalone_smart_auth_info\"}"},{"name":"standalone_token_retrieval_time","type":"text","value":"2026-04-02T21:11:13-04:00"},{"name":"standalone_smart_auth_info","type":"text","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/*.read\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"disabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"a15b241f-83f2-4c7b-873f-b6e8f523f6c7\",\"refresh_token\":\"d3c05fae-59cb-4e55-8c39-2963181fd32a\",\"issue_time\":\"2026-04-02T21:11:13-04:00\",\"expires_in\":3600,\"name\":\"standalone_smart_auth_info\"}"}],"requests":[{"id":"156bb91d-f165-4d82-a139-6a5711580049","direction":"outgoing","index":251,"result_id":"a7b09ca2-bcb8-4b07-a46c-840500f05c26","status":200,"timestamp":"2026-04-02T21:11:13.145-04:00","url":"https://inferno.healthit.gov/reference-server/oauth/token","verb":"post"}],"result":"pass","test_id":"smart-smart_full_standalone_launch-smart_standalone_refresh_with_scopes-smart_token_refresh","test_run_id":"e34f5a48-6252-495a-bb0c-f90eb6ad5ff1","test_session_id":"lvGwXCOQVdy","updated_at":"2026-04-02T21:11:13.142-04:00"},{"id":"67ce8665-64a8-44d2-b6a8-ab72d02ecdfc","created_at":"2026-04-02T21:11:13.155-04:00","inputs":[{"name":"standalone_received_scopes","value":"launch/patient openid fhirUser offline_access patient/*.read","type":"text"},{"name":"standalone_smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/*.read\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"disabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"a15b241f-83f2-4c7b-873f-b6e8f523f6c7\",\"refresh_token\":\"d3c05fae-59cb-4e55-8c39-2963181fd32a\",\"issue_time\":\"2026-04-02T21:11:13-04:00\",\"expires_in\":3600,\"name\":\"standalone_smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[{"name":"standalone_refresh_token","type":"text","value":"d3c05fae-59cb-4e55-8c39-2963181fd32a"},{"name":"standalone_access_token","type":"text","value":"a15b241f-83f2-4c7b-873f-b6e8f523f6c7"},{"name":"standalone_token_retrieval_time","type":"text","value":"2026-04-02T21:11:13-04:00"},{"name":"standalone_expires_in","type":"text","value":"3600"},{"name":"standalone_received_scopes","type":"text","value":"launch/patient openid fhirUser offline_access patient/*.read"},{"name":"standalone_smart_auth_info","type":"text","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/*.read\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"disabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"a15b241f-83f2-4c7b-873f-b6e8f523f6c7\",\"refresh_token\":\"d3c05fae-59cb-4e55-8c39-2963181fd32a\",\"issue_time\":\"2026-04-02T21:11:13-04:00\",\"expires_in\":3600,\"name\":\"standalone_smart_auth_info\"}"}],"requests":[{"id":"156bb91d-f165-4d82-a139-6a5711580049","direction":"outgoing","index":251,"result_id":"a7b09ca2-bcb8-4b07-a46c-840500f05c26","status":200,"timestamp":"2026-04-02T21:11:13.145-04:00","url":"https://inferno.healthit.gov/reference-server/oauth/token","verb":"post"}],"result":"pass","test_id":"smart-smart_full_standalone_launch-smart_standalone_refresh_with_scopes-smart_token_refresh_body","test_run_id":"e34f5a48-6252-495a-bb0c-f90eb6ad5ff1","test_session_id":"lvGwXCOQVdy","updated_at":"2026-04-02T21:11:13.155-04:00"},{"id":"199f5e62-7b77-466a-b04f-52156047c2d7","created_at":"2026-04-02T21:11:13.158-04:00","inputs":[],"optional":false,"outputs":[],"requests":[{"id":"156bb91d-f165-4d82-a139-6a5711580049","direction":"outgoing","index":251,"result_id":"a7b09ca2-bcb8-4b07-a46c-840500f05c26","status":200,"timestamp":"2026-04-02T21:11:13.145-04:00","url":"https://inferno.healthit.gov/reference-server/oauth/token","verb":"post"}],"result":"pass","test_id":"smart-smart_full_standalone_launch-smart_standalone_refresh_with_scopes-smart_token_response_headers","test_run_id":"e34f5a48-6252-495a-bb0c-f90eb6ad5ff1","test_session_id":"lvGwXCOQVdy","updated_at":"2026-04-02T21:11:13.158-04:00"},{"id":"1cfeb9b5-3ef6-4cb6-8730-ed16c8ff849f","created_at":"2026-04-02T21:11:13.159-04:00","inputs":[{"name":"standalone_received_scopes","label":null,"description":null,"value":"launch/patient openid fhirUser offline_access patient/*.read","type":"text"},{"name":"standalone_smart_auth_info","label":null,"description":null,"value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/*.read\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"disabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"dad1f194-a318-44c9-8fa0-b006f8b6e806\",\"refresh_token\":\"3a5126a8-3e12-4e32-a1bb-0bdf68845fe2\",\"issue_time\":\"2026-04-02T21:11:13-04:00\",\"expires_in\":3600,\"name\":\"standalone_smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"smart-smart_full_standalone_launch-smart_standalone_refresh_with_scopes","test_run_id":"e34f5a48-6252-495a-bb0c-f90eb6ad5ff1","test_session_id":"lvGwXCOQVdy","updated_at":"2026-04-02T21:11:13.159-04:00"},{"id":"05cf7c3d-c933-4a45-96a1-e06c02c562ba","created_at":"2026-04-02T21:11:13.163-04:00","inputs":[{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint used by SMART applications","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"standalone_smart_auth_info","label":"Standalone Launch Credentials","description":null,"value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch/patient openid fhirUser offline_access patient/*.read\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"disabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"name\":\"standalone_smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"smart-smart_full_standalone_launch","test_run_id":"e34f5a48-6252-495a-bb0c-f90eb6ad5ff1","test_session_id":"lvGwXCOQVdy","updated_at":"2026-04-02T21:11:13.163-04:00"},{"id":"e9758173-45c0-497c-a907-8ec6df9f4952","created_at":"2026-04-02T21:11:15.316-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"ehr_smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"requested_scopes\":\"launch openid fhirUser offline_access user/*.read\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"disabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"name\":\"ehr_smart_auth_info\"}","type":"auth_info"},{"name":"ehr_smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"requested_scopes\":\"launch openid fhirUser offline_access user/*.read\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"disabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"name\":\"ehr_smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[{"name":"well_known_introspection_url","type":"text","value":"https://inferno.healthit.gov/reference-server/oauth/token/introspect"},{"name":"well_known_configuration","type":"text","value":"Output is too large to display, please visit\nhttp://localhost:4567/api/test_sessions/lvGwXCOQVdy/results/e9758173-45c0-497c-a907-8ec6df9f4952/io/outputs/well_known_configuration\nfor details\n","is_large":true},{"name":"well_known_authorization_url","type":"text","value":"https://inferno.healthit.gov/reference-server/oauth/authorization"},{"name":"well_known_management_url","type":"text","value":""},{"name":"well_known_registration_url","type":"text","value":""},{"name":"well_known_revocation_url","type":"text","value":"https://inferno.healthit.gov/reference-server/oauth/token/revoke-token"},{"name":"well_known_token_url","type":"text","value":"https://inferno.healthit.gov/reference-server/oauth/token"},{"name":"ehr_smart_auth_info","type":"text","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch openid fhirUser offline_access user/*.read\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"disabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"name\":\"ehr_smart_auth_info\"}"}],"requests":[{"id":"d5d544b8-b07e-4b91-86ac-4b81cf4b440a","direction":"outgoing","index":252,"result_id":"e9758173-45c0-497c-a907-8ec6df9f4952","status":200,"timestamp":"2026-04-02T21:11:15.317-04:00","url":"https://inferno.healthit.gov/reference-server/r4/.well-known/smart-configuration","verb":"get"}],"result":"pass","test_id":"smart-smart_full_ehr_launch-smart_discovery-Test01","test_run_id":"363d1b19-dcfb-4b60-a2f2-180e91e6c1e2","test_session_id":"lvGwXCOQVdy","updated_at":"2026-04-02T21:11:15.316-04:00"},{"id":"6e7c3c2e-4e11-413d-a997-f6ba3cbc5957","created_at":"2026-04-02T21:11:15.324-04:00","inputs":[{"name":"well_known_configuration","value":"Input is too large to display, please visit\nhttp://localhost:4567/api/test_sessions/lvGwXCOQVdy/results/6e7c3c2e-4e11-413d-a997-f6ba3cbc5957/io/inputs/well_known_configuration\nfor details\n","type":"text","is_large":true}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"smart-smart_full_ehr_launch-smart_discovery-Test02","test_run_id":"363d1b19-dcfb-4b60-a2f2-180e91e6c1e2","test_session_id":"lvGwXCOQVdy","updated_at":"2026-04-02T21:11:15.324-04:00"},{"id":"b7ca42a4-5c58-4d20-acac-c6855e26d075","created_at":"2026-04-02T21:11:15.546-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"}],"optional":false,"outputs":[{"name":"capability_authorization_url","type":"text","value":"https://inferno.healthit.gov/reference-server/oauth/authorization"},{"name":"capability_introspection_url","type":"text","value":"https://inferno.healthit.gov/reference-server/oauth/token/introspect"},{"name":"capability_management_url","type":"text","value":""},{"name":"capability_registration_url","type":"text","value":""},{"name":"capability_revocation_url","type":"text","value":"https://inferno.healthit.gov/reference-server/oauth/token/revoke-token"},{"name":"capability_token_url","type":"text","value":"https://inferno.healthit.gov/reference-server/oauth/token"}],"requests":[{"id":"55482d52-b0f6-41d4-b871-6384c1d5ca2a","direction":"outgoing","index":253,"result_id":"b7ca42a4-5c58-4d20-acac-c6855e26d075","status":200,"timestamp":"2026-04-02T21:11:15.549-04:00","url":"https://inferno.healthit.gov/reference-server/r4/metadata","verb":"get"}],"result":"pass","test_id":"smart-smart_full_ehr_launch-smart_discovery-Test03","test_run_id":"363d1b19-dcfb-4b60-a2f2-180e91e6c1e2","test_session_id":"lvGwXCOQVdy","updated_at":"2026-04-02T21:11:15.546-04:00"},{"id":"8ad6241d-2157-4e4c-ad48-11d8d15c573b","created_at":"2026-04-02T21:11:15.558-04:00","inputs":[{"name":"well_known_authorization_url","value":"https://inferno.healthit.gov/reference-server/oauth/authorization","type":"text"},{"name":"well_known_introspection_url","value":"https://inferno.healthit.gov/reference-server/oauth/token/introspect","type":"text"},{"name":"well_known_management_url","value":null,"type":"text"},{"name":"well_known_registration_url","value":null,"type":"text"},{"name":"well_known_revocation_url","value":"https://inferno.healthit.gov/reference-server/oauth/token/revoke-token","type":"text"},{"name":"well_known_token_url","value":"https://inferno.healthit.gov/reference-server/oauth/token","type":"text"},{"name":"capability_authorization_url","value":"https://inferno.healthit.gov/reference-server/oauth/authorization","type":"text"},{"name":"capability_introspection_url","value":"https://inferno.healthit.gov/reference-server/oauth/token/introspect","type":"text"},{"name":"capability_management_url","value":null,"type":"text"},{"name":"capability_registration_url","value":null,"type":"text"},{"name":"capability_revocation_url","value":"https://inferno.healthit.gov/reference-server/oauth/token/revoke-token","type":"text"},{"name":"capability_token_url","value":"https://inferno.healthit.gov/reference-server/oauth/token","type":"text"}],"optional":false,"outputs":[{"name":"smart_authorization_url","type":"text","value":"https://inferno.healthit.gov/reference-server/oauth/authorization"},{"name":"smart_token_url","type":"text","value":"https://inferno.healthit.gov/reference-server/oauth/token"},{"name":"smart_introspection_url","type":"text","value":"https://inferno.healthit.gov/reference-server/oauth/token/introspect"},{"name":"smart_management_url","type":"text","value":""},{"name":"smart_registration_url","type":"text","value":""},{"name":"smart_revocation_url","type":"text","value":"https://inferno.healthit.gov/reference-server/oauth/token/revoke-token"}],"requests":[],"result":"pass","test_id":"smart-smart_full_ehr_launch-smart_discovery-Test04","test_run_id":"363d1b19-dcfb-4b60-a2f2-180e91e6c1e2","test_session_id":"lvGwXCOQVdy","updated_at":"2026-04-02T21:11:15.558-04:00"},{"id":"fa7ce1d4-bc54-4448-b265-7185f9bfc45a","created_at":"2026-04-02T21:11:15.563-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"}],"optional":false,"outputs":[{"name":"launch_uri","type":"text","value":"http://localhost:4567/custom/smart/launch"},{"name":"target_iss","type":"text","value":"https://inferno.healthit.gov/reference-server/r4"}],"requests":[],"result":"pass","test_id":"smart-smart_full_ehr_launch-smart_ehr_launch-smart_app_launch","test_run_id":"363d1b19-dcfb-4b60-a2f2-180e91e6c1e2","test_session_id":"lvGwXCOQVdy","updated_at":"2026-04-02T21:11:20.928-04:00"},{"id":"32100024-c400-485b-9864-6d33698f5236","created_at":"2026-04-02T21:11:20.948-04:00","inputs":[],"optional":false,"outputs":[{"name":"ehr_launch","type":"text","value":"85 834c6eb3-b6ac-41f8-a7b8-38d61f9018ac"}],"requests":[{"id":"09caa318-d4f6-4986-92ca-e0f3eef5ca96","direction":"incoming","index":254,"result_id":"fa7ce1d4-bc54-4448-b265-7185f9bfc45a","status":null,"timestamp":"2026-04-02T21:11:20.929-04:00","url":"http://localhost:4567/custom/smart/launch?launch=85+834c6eb3-b6ac-41f8-a7b8-38d61f9018ac\u0026iss=https%3A%2F%2Finferno.healthit.gov%2Freference-server%2Fr4","verb":"get"}],"result":"pass","test_id":"smart-smart_full_ehr_launch-smart_ehr_launch-smart_launch_received","test_run_id":"363d1b19-dcfb-4b60-a2f2-180e91e6c1e2","test_session_id":"lvGwXCOQVdy","updated_at":"2026-04-02T21:11:20.948-04:00"},{"id":"f40a4cb3-e7f3-4790-bb83-ed9ca4910d37","created_at":"2026-04-02T21:11:21.423-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"ehr_smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch openid fhirUser offline_access user/*.read\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"disabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"name\":\"ehr_smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"https://inferno.healthit.gov/reference-server/oauth/authorization correctly denied SSL 2.0 connection as required.","type":"info"},{"message":"https://inferno.healthit.gov/reference-server/oauth/authorization correctly denied SSL 3.0 connection as required.","type":"info"},{"message":"https://inferno.healthit.gov/reference-server/oauth/authorization correctly denied TLS 1.0 connection as required.","type":"info"},{"message":"https://inferno.healthit.gov/reference-server/oauth/authorization correctly denied TLS 1.1 connection as required.","type":"info"},{"message":"https://inferno.healthit.gov/reference-server/oauth/authorization accepted TLS 1.2 connection.","type":"info"},{"message":"https://inferno.healthit.gov/reference-server/oauth/authorization accepted TLS 1.3 connection.","type":"info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"smart-smart_full_ehr_launch-smart_ehr_launch-ehr_auth_tls","test_run_id":"363d1b19-dcfb-4b60-a2f2-180e91e6c1e2","test_session_id":"lvGwXCOQVdy","updated_at":"2026-04-02T21:11:21.423-04:00"},{"id":"4764ea34-9a9a-42bd-9c9c-dda092c538ad","created_at":"2026-04-02T21:11:21.441-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"ehr_smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch openid fhirUser offline_access user/*.read\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"disabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"name\":\"ehr_smart_auth_info\"}","type":"auth_info"},{"name":"ehr_launch","value":"85 834c6eb3-b6ac-41f8-a7b8-38d61f9018ac","type":"text"}],"messages":[{"message":"Inferno redirecting browser to https://inferno.healthit.gov/reference-server/oauth/authorization?response_type=code\u0026client_id=SAMPLE_PUBLIC_CLIENT_ID\u0026redirect_uri=http%3A%2F%2Flocalhost%3A4567%2Fcustom%2Fsmart%2Fredirect\u0026scope=launch+openid+fhirUser+offline_access+user%2F*.read\u0026state=747a1c5c-bd1f-4c1a-9459-69a6d7ccd88c\u0026aud=https%3A%2F%2Finferno.healthit.gov%2Freference-server%2Fr4\u0026launch=85+834c6eb3-b6ac-41f8-a7b8-38d61f9018ac.","type":"info"}],"optional":false,"outputs":[{"name":"ehr_state","type":"text","value":"747a1c5c-bd1f-4c1a-9459-69a6d7ccd88c"},{"name":"authorization_url","type":"text","value":"https://inferno.healthit.gov/reference-server/oauth/authorization?response_type=code\u0026client_id=SAMPLE_PUBLIC_CLIENT_ID\u0026redirect_uri=http%3A%2F%2Flocalhost%3A4567%2Fcustom%2Fsmart%2Fredirect\u0026scope=launch+openid+fhirUser+offline_access+user%2F*.read\u0026state=747a1c5c-bd1f-4c1a-9459-69a6d7ccd88c\u0026aud=https%3A%2F%2Finferno.healthit.gov%2Freference-server%2Fr4\u0026launch=85+834c6eb3-b6ac-41f8-a7b8-38d61f9018ac"}],"requests":[],"result":"pass","test_id":"smart-smart_full_ehr_launch-smart_ehr_launch-smart_app_redirect","test_run_id":"363d1b19-dcfb-4b60-a2f2-180e91e6c1e2","test_session_id":"lvGwXCOQVdy","updated_at":"2026-04-02T21:11:24.965-04:00"},{"id":"a028abc4-a679-4aa8-9f6b-be15afef0a22","created_at":"2026-04-02T21:11:24.978-04:00","inputs":[{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint used by SMART applications","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"ehr_smart_auth_info","label":null,"description":null,"value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch openid fhirUser offline_access user/*.read\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"disabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"name\":\"ehr_smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"smart-smart_full_ehr_launch-smart_discovery","test_run_id":"363d1b19-dcfb-4b60-a2f2-180e91e6c1e2","test_session_id":"lvGwXCOQVdy","updated_at":"2026-04-02T21:11:24.978-04:00"},{"id":"68187264-a97c-42e6-a00f-47f10d64506e","created_at":"2026-04-02T21:11:24.983-04:00","inputs":[],"optional":false,"outputs":[{"name":"ehr_code","type":"text","value":"eyJjb2RlIjoiU0FNUExFX0NPREUiLCJzY29wZXMiOiJsYXVuY2ggb3BlbmlkIGZoaXJVc2VyIG9mZmxpbmVfYWNjZXNzIHVzZXIvKi5yZWFkICIsInBhdGllbnRJZCI6Ijg1IiwiZW5jb3VudGVySWQiOiI4MzRjNmViMy1iNmFjLTQxZjgtYTdiOC0zOGQ2MWY5MDE4YWMiLCJjb2RlQ2hhbGxlbmdlTWV0aG9kIjoicGxhaW4ifQ=="}],"requests":[{"id":"528be563-3394-4608-9a88-635295817e84","direction":"incoming","index":255,"result_id":"4764ea34-9a9a-42bd-9c9c-dda092c538ad","status":null,"timestamp":"2026-04-02T21:11:24.966-04:00","url":"http://localhost:4567/custom/smart/redirect?code=eyJjb2RlIjoiU0FNUExFX0NPREUiLCJzY29wZXMiOiJsYXVuY2ggb3BlbmlkIGZoaXJVc2VyIG9mZmxpbmVfYWNjZXNzIHVzZXIvKi5yZWFkICIsInBhdGllbnRJZCI6Ijg1IiwiZW5jb3VudGVySWQiOiI4MzRjNmViMy1iNmFjLTQxZjgtYTdiOC0zOGQ2MWY5MDE4YWMiLCJjb2RlQ2hhbGxlbmdlTWV0aG9kIjoicGxhaW4ifQ==\u0026state=747a1c5c-bd1f-4c1a-9459-69a6d7ccd88c","verb":"get"}],"result":"pass","test_id":"smart-smart_full_ehr_launch-smart_ehr_launch-smart_code_received","test_run_id":"363d1b19-dcfb-4b60-a2f2-180e91e6c1e2","test_session_id":"lvGwXCOQVdy","updated_at":"2026-04-02T21:11:24.983-04:00"},{"id":"bccea89b-a374-4ac0-91fb-0f4b1403355c","created_at":"2026-04-02T21:11:25.463-04:00","inputs":[{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"ehr_smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch openid fhirUser offline_access user/*.read\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"disabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"name\":\"ehr_smart_auth_info\"}","type":"auth_info"}],"messages":[{"message":"https://inferno.healthit.gov/reference-server/oauth/token correctly denied SSL 2.0 connection as required.","type":"info"},{"message":"https://inferno.healthit.gov/reference-server/oauth/token correctly denied SSL 3.0 connection as required.","type":"info"},{"message":"https://inferno.healthit.gov/reference-server/oauth/token correctly denied TLS 1.0 connection as required.","type":"info"},{"message":"https://inferno.healthit.gov/reference-server/oauth/token correctly denied TLS 1.1 connection as required.","type":"info"},{"message":"https://inferno.healthit.gov/reference-server/oauth/token accepted TLS 1.2 connection.","type":"info"},{"message":"https://inferno.healthit.gov/reference-server/oauth/token accepted TLS 1.3 connection.","type":"info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"smart-smart_full_ehr_launch-smart_ehr_launch-ehr_token_tls","test_run_id":"363d1b19-dcfb-4b60-a2f2-180e91e6c1e2","test_session_id":"lvGwXCOQVdy","updated_at":"2026-04-02T21:11:25.463-04:00"},{"id":"0bb88593-26e4-482b-8fda-07b7570ba290","created_at":"2026-04-02T21:11:25.600-04:00","inputs":[{"name":"ehr_code","value":"eyJjb2RlIjoiU0FNUExFX0NPREUiLCJzY29wZXMiOiJsYXVuY2ggb3BlbmlkIGZoaXJVc2VyIG9mZmxpbmVfYWNjZXNzIHVzZXIvKi5yZWFkICIsInBhdGllbnRJZCI6Ijg1IiwiZW5jb3VudGVySWQiOiI4MzRjNmViMy1iNmFjLTQxZjgtYTdiOC0zOGQ2MWY5MDE4YWMiLCJjb2RlQ2hhbGxlbmdlTWV0aG9kIjoicGxhaW4ifQ==","type":"text"},{"name":"pkce_code_verifier","value":null,"type":"text"},{"name":"ehr_smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch openid fhirUser offline_access user/*.read\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"disabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"name\":\"ehr_smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[{"name":"ehr_smart_credentials","type":"text","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch openid fhirUser offline_access user/*.read\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"disabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"cabdda1e-c49a-47f2-a079-b111afbed8ec\",\"refresh_token\":\"cedb6555-1a4b-417d-aa4c-978fabea96d7\",\"issue_time\":\"2026-04-02T21:11:25-04:00\",\"expires_in\":3600,\"name\":\"ehr_smart_auth_info\"}"},{"name":"ehr_token_retrieval_time","type":"text","value":"2026-04-02T21:11:25-04:00"},{"name":"ehr_smart_auth_info","type":"text","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch openid fhirUser offline_access user/*.read\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"disabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"cabdda1e-c49a-47f2-a079-b111afbed8ec\",\"refresh_token\":\"cedb6555-1a4b-417d-aa4c-978fabea96d7\",\"issue_time\":\"2026-04-02T21:11:25-04:00\",\"expires_in\":3600,\"name\":\"ehr_smart_auth_info\"}"}],"requests":[{"id":"528be563-3394-4608-9a88-635295817e84","direction":"incoming","index":255,"result_id":"4764ea34-9a9a-42bd-9c9c-dda092c538ad","status":null,"timestamp":"2026-04-02T21:11:24.966-04:00","url":"http://localhost:4567/custom/smart/redirect?code=eyJjb2RlIjoiU0FNUExFX0NPREUiLCJzY29wZXMiOiJsYXVuY2ggb3BlbmlkIGZoaXJVc2VyIG9mZmxpbmVfYWNjZXNzIHVzZXIvKi5yZWFkICIsInBhdGllbnRJZCI6Ijg1IiwiZW5jb3VudGVySWQiOiI4MzRjNmViMy1iNmFjLTQxZjgtYTdiOC0zOGQ2MWY5MDE4YWMiLCJjb2RlQ2hhbGxlbmdlTWV0aG9kIjoicGxhaW4ifQ==\u0026state=747a1c5c-bd1f-4c1a-9459-69a6d7ccd88c","verb":"get"},{"id":"0cdc2bac-cce2-4c47-8c0b-d6600ba436d1","direction":"outgoing","index":256,"result_id":"0bb88593-26e4-482b-8fda-07b7570ba290","status":200,"timestamp":"2026-04-02T21:11:25.603-04:00","url":"https://inferno.healthit.gov/reference-server/oauth/token","verb":"post"}],"result":"pass","test_id":"smart-smart_full_ehr_launch-smart_ehr_launch-smart_token_exchange","test_run_id":"363d1b19-dcfb-4b60-a2f2-180e91e6c1e2","test_session_id":"lvGwXCOQVdy","updated_at":"2026-04-02T21:11:25.600-04:00"},{"id":"dd0c4627-79fd-4914-85ce-ae0cec2bc4b7","created_at":"2026-04-02T21:11:25.616-04:00","inputs":[{"name":"ehr_smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch openid fhirUser offline_access user/*.read\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"disabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"cabdda1e-c49a-47f2-a079-b111afbed8ec\",\"refresh_token\":\"cedb6555-1a4b-417d-aa4c-978fabea96d7\",\"issue_time\":\"2026-04-02T21:11:25-04:00\",\"expires_in\":3600,\"name\":\"ehr_smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[{"name":"ehr_id_token","type":"text","value":"eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJodHRwczovL2luZmVybm8uaGVhbHRoaXQuZ292L3JlZmVyZW5jZS1zZXJ2ZXIvcjQiLCJzdWIiOiJlOGZkNTk5NC0yYTExLTRhYzEtYWQyMS01NWFmNDM3YjYwM2IiLCJhdWQiOiJTQU1QTEVfUFVCTElDX0NMSUVOVF9JRCIsImV4cCI6MTgwNjcxNDY4NSwiaWF0IjoxNzc1MTc4Njg1LCJmaGlyVXNlciI6Imh0dHBzOi8vaW5mZXJuby5oZWFsdGhpdC5nb3YvcmVmZXJlbmNlLXNlcnZlci9yNC9QYXRpZW50Lzg1In0.XmWy-RP7PXnXv7kriHpcQltG97Zn_HmFJp3Q69dTyaCQmFyjXoBnSN8RGQ6N7GpnZ5ApJT9vHTEr3lsd3Cqu5N87isKX2yz9tc0k_8nLeD7ZJOYxIksbeIdkacyg2HZnrVlsARmu2cFR-bXXw2otALnRqp9sWsS211FyAq8StQ6Ud7tUtZg1TCSZtR_iQ3Ie-i-tULKQcJNG2i3QWpoQ-PXWHFgCANzVA1pEpQ-rkwPqhGWwxV0Nf2Whd-ibUudUWBBKoD0MnCLTnkryn11lb26851iCt0c100JtykMTHVoSqvCT_XQcf18GbV89qbuvNV8WO4UsOJljySksN-nMzA"},{"name":"ehr_refresh_token","type":"text","value":"cedb6555-1a4b-417d-aa4c-978fabea96d7"},{"name":"ehr_access_token","type":"text","value":"cabdda1e-c49a-47f2-a079-b111afbed8ec"},{"name":"ehr_expires_in","type":"text","value":"3600"},{"name":"ehr_patient_id","type":"text","value":"85"},{"name":"ehr_encounter_id","type":"text","value":"834c6eb3-b6ac-41f8-a7b8-38d61f9018ac"},{"name":"ehr_received_scopes","type":"text","value":"launch openid fhirUser offline_access user/*.read"},{"name":"ehr_intent","type":"text","value":""},{"name":"ehr_smart_auth_info","type":"text","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch openid fhirUser offline_access user/*.read\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"disabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"cabdda1e-c49a-47f2-a079-b111afbed8ec\",\"refresh_token\":\"cedb6555-1a4b-417d-aa4c-978fabea96d7\",\"issue_time\":\"2026-04-02T21:11:25-04:00\",\"expires_in\":3600,\"name\":\"ehr_smart_auth_info\"}"}],"requests":[{"id":"0cdc2bac-cce2-4c47-8c0b-d6600ba436d1","direction":"outgoing","index":256,"result_id":"0bb88593-26e4-482b-8fda-07b7570ba290","status":200,"timestamp":"2026-04-02T21:11:25.603-04:00","url":"https://inferno.healthit.gov/reference-server/oauth/token","verb":"post"}],"result":"pass","test_id":"smart-smart_full_ehr_launch-smart_ehr_launch-smart_token_response_body","test_run_id":"363d1b19-dcfb-4b60-a2f2-180e91e6c1e2","test_session_id":"lvGwXCOQVdy","updated_at":"2026-04-02T21:11:25.616-04:00"},{"id":"c0e00cfb-8d92-4f35-83cc-ecc1159afc32","created_at":"2026-04-02T21:11:25.618-04:00","inputs":[],"optional":false,"outputs":[],"requests":[{"id":"0cdc2bac-cce2-4c47-8c0b-d6600ba436d1","direction":"outgoing","index":256,"result_id":"0bb88593-26e4-482b-8fda-07b7570ba290","status":200,"timestamp":"2026-04-02T21:11:25.603-04:00","url":"https://inferno.healthit.gov/reference-server/oauth/token","verb":"post"}],"result":"pass","test_id":"smart-smart_full_ehr_launch-smart_ehr_launch-smart_token_response_headers","test_run_id":"363d1b19-dcfb-4b60-a2f2-180e91e6c1e2","test_session_id":"lvGwXCOQVdy","updated_at":"2026-04-02T21:11:25.618-04:00"},{"id":"11d5e843-50b6-4c00-883f-b0e48933dc08","created_at":"2026-04-02T21:11:25.620-04:00","inputs":[{"name":"url","label":"EHR Launch FHIR Endpoint","description":"URL of the FHIR endpoint used by EHR launched applications","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"ehr_smart_auth_info","label":"EHR Launch Credentials","description":null,"value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch openid fhirUser offline_access user/*.read\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"disabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"name\":\"ehr_smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"smart-smart_full_ehr_launch-smart_ehr_launch","test_run_id":"363d1b19-dcfb-4b60-a2f2-180e91e6c1e2","test_session_id":"lvGwXCOQVdy","updated_at":"2026-04-02T21:11:25.620-04:00"},{"id":"cd280753-9db7-4f17-8349-a284df2a0be7","created_at":"2026-04-02T21:11:25.623-04:00","inputs":[{"name":"ehr_id_token","value":"eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJodHRwczovL2luZmVybm8uaGVhbHRoaXQuZ292L3JlZmVyZW5jZS1zZXJ2ZXIvcjQiLCJzdWIiOiJlOGZkNTk5NC0yYTExLTRhYzEtYWQyMS01NWFmNDM3YjYwM2IiLCJhdWQiOiJTQU1QTEVfUFVCTElDX0NMSUVOVF9JRCIsImV4cCI6MTgwNjcxNDY4NSwiaWF0IjoxNzc1MTc4Njg1LCJmaGlyVXNlciI6Imh0dHBzOi8vaW5mZXJuby5oZWFsdGhpdC5nb3YvcmVmZXJlbmNlLXNlcnZlci9yNC9QYXRpZW50Lzg1In0.XmWy-RP7PXnXv7kriHpcQltG97Zn_HmFJp3Q69dTyaCQmFyjXoBnSN8RGQ6N7GpnZ5ApJT9vHTEr3lsd3Cqu5N87isKX2yz9tc0k_8nLeD7ZJOYxIksbeIdkacyg2HZnrVlsARmu2cFR-bXXw2otALnRqp9sWsS211FyAq8StQ6Ud7tUtZg1TCSZtR_iQ3Ie-i-tULKQcJNG2i3QWpoQ-PXWHFgCANzVA1pEpQ-rkwPqhGWwxV0Nf2Whd-ibUudUWBBKoD0MnCLTnkryn11lb26851iCt0c100JtykMTHVoSqvCT_XQcf18GbV89qbuvNV8WO4UsOJljySksN-nMzA","type":"text"}],"optional":false,"outputs":[{"name":"id_token_payload_json","type":"text","value":"{\"iss\":\"https://inferno.healthit.gov/reference-server/r4\",\"sub\":\"e8fd5994-2a11-4ac1-ad21-55af437b603b\",\"aud\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"exp\":1806714685,\"iat\":1775178685,\"fhirUser\":\"https://inferno.healthit.gov/reference-server/r4/Patient/85\"}"},{"name":"id_token_header_json","type":"text","value":"{\"alg\":\"RS256\",\"typ\":\"JWT\"}"}],"requests":[],"result":"pass","test_id":"smart-smart_full_ehr_launch-smart_openid_connect-smart_openid_decode_id_token","test_run_id":"363d1b19-dcfb-4b60-a2f2-180e91e6c1e2","test_session_id":"lvGwXCOQVdy","updated_at":"2026-04-02T21:11:25.623-04:00"},{"id":"883d9d9c-eea3-49c2-94dc-71058808eb58","created_at":"2026-04-02T21:11:25.737-04:00","inputs":[{"name":"id_token_payload_json","value":"{\"iss\":\"https://inferno.healthit.gov/reference-server/r4\",\"sub\":\"e8fd5994-2a11-4ac1-ad21-55af437b603b\",\"aud\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"exp\":1806714685,\"iat\":1775178685,\"fhirUser\":\"https://inferno.healthit.gov/reference-server/r4/Patient/85\"}","type":"text"}],"optional":false,"outputs":[{"name":"openid_configuration_json","type":"text","value":"{\"response_types_supported\":[\"code\",\"id_token\",\"token id_token\"],\"jwks_uri\":\"https://inferno.healthit.gov/reference-server/r4/.well-known/jwk\",\"subject_types_supported\":[\"pairwise\",\"public\"],\"id_token_signing_alg_values_supported\":[\"RS256\"],\"issuer\":\"https://inferno.healthit.gov/reference-server/r4\",\"authorization_endpoint\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"token_endpoint\":\"https://inferno.healthit.gov/reference-server/oauth/token\"}"},{"name":"openid_issuer","type":"text","value":"https://inferno.healthit.gov/reference-server/r4"}],"requests":[{"id":"10f8a373-0f63-49a0-a0ca-96c0887103f3","direction":"outgoing","index":257,"result_id":"883d9d9c-eea3-49c2-94dc-71058808eb58","status":200,"timestamp":"2026-04-02T21:11:25.739-04:00","url":"https://inferno.healthit.gov/reference-server/r4/.well-known/openid-configuration","verb":"get"}],"result":"pass","test_id":"smart-smart_full_ehr_launch-smart_openid_connect-smart_openid_retrieve_configuration","test_run_id":"363d1b19-dcfb-4b60-a2f2-180e91e6c1e2","test_session_id":"lvGwXCOQVdy","updated_at":"2026-04-02T21:11:25.737-04:00"},{"id":"327f070b-e119-4772-880c-98b697574963","created_at":"2026-04-02T21:11:25.745-04:00","inputs":[{"name":"openid_configuration_json","value":"{\"response_types_supported\":[\"code\",\"id_token\",\"token id_token\"],\"jwks_uri\":\"https://inferno.healthit.gov/reference-server/r4/.well-known/jwk\",\"subject_types_supported\":[\"pairwise\",\"public\"],\"id_token_signing_alg_values_supported\":[\"RS256\"],\"issuer\":\"https://inferno.healthit.gov/reference-server/r4\",\"authorization_endpoint\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"token_endpoint\":\"https://inferno.healthit.gov/reference-server/oauth/token\"}","type":"text"}],"optional":false,"outputs":[{"name":"openid_jwks_uri","type":"text","value":"https://inferno.healthit.gov/reference-server/r4/.well-known/jwk"}],"requests":[],"result":"pass","test_id":"smart-smart_full_ehr_launch-smart_openid_connect-smart_openid_required_configuration_fields","test_run_id":"363d1b19-dcfb-4b60-a2f2-180e91e6c1e2","test_session_id":"lvGwXCOQVdy","updated_at":"2026-04-02T21:11:25.745-04:00"},{"id":"599f185c-9193-447a-8fa2-f7aa09b1ee44","created_at":"2026-04-02T21:11:25.933-04:00","inputs":[{"name":"openid_jwks_uri","value":"https://inferno.healthit.gov/reference-server/r4/.well-known/jwk","type":"text"}],"optional":false,"outputs":[{"name":"openid_jwks_json","type":"text","value":"{\"keys\":[{\"kty\":\"RSA\",\"e\":\"AQAB\",\"use\":\"sig\",\"alg\":\"RS256\",\"n\":\"AIHUBZRebKtjubhIN0AbPWYVsCnNaT1rksFU6ufgAdgjCyfA5Em2Jl3ev97dq5af1kOBGLqVJT90JypFfIvWRYEDYRefMmJS7ReZInstnD8kMVx5N_6UHxdX6hHNsg31DI6BxZMg-jFfXOOlQpA78EVIZnH1JP0S1GEnwIatMM_fWHs-XeiS3AFxjyNqpJvGlNtlqpqcGz7en0yEjzdLpLrZ1HNwfzmQwYHmy4oxeC1q9lS34iH4vMmKdBXfwrV-92OzP9o-k8x1gi5196qj60sDiza-oDARJILAEaL1iKVAY4ywtjWb_k7-Va6GXXeAbgXiZ8t040uQDlZQEyLDHWc=\"}]}"},{"name":"openid_rsa_keys_json","type":"text","value":"[{\"kty\":\"RSA\",\"e\":\"AQAB\",\"use\":\"sig\",\"alg\":\"RS256\",\"n\":\"AIHUBZRebKtjubhIN0AbPWYVsCnNaT1rksFU6ufgAdgjCyfA5Em2Jl3ev97dq5af1kOBGLqVJT90JypFfIvWRYEDYRefMmJS7ReZInstnD8kMVx5N_6UHxdX6hHNsg31DI6BxZMg-jFfXOOlQpA78EVIZnH1JP0S1GEnwIatMM_fWHs-XeiS3AFxjyNqpJvGlNtlqpqcGz7en0yEjzdLpLrZ1HNwfzmQwYHmy4oxeC1q9lS34iH4vMmKdBXfwrV-92OzP9o-k8x1gi5196qj60sDiza-oDARJILAEaL1iKVAY4ywtjWb_k7-Va6GXXeAbgXiZ8t040uQDlZQEyLDHWc=\"}]"}],"requests":[{"id":"27043eb2-2668-483d-b000-4ff006e90292","direction":"outgoing","index":258,"result_id":"599f185c-9193-447a-8fa2-f7aa09b1ee44","status":200,"timestamp":"2026-04-02T21:11:25.936-04:00","url":"https://inferno.healthit.gov/reference-server/r4/.well-known/jwk","verb":"get"}],"result":"pass","test_id":"smart-smart_full_ehr_launch-smart_openid_connect-smart_openid_retrieve_jwks","test_run_id":"363d1b19-dcfb-4b60-a2f2-180e91e6c1e2","test_session_id":"lvGwXCOQVdy","updated_at":"2026-04-02T21:11:25.933-04:00"},{"id":"4f085d5e-a14b-4a03-9208-f00094675ae1","created_at":"2026-04-02T21:11:25.944-04:00","inputs":[{"name":"id_token_header_json","value":"{\"alg\":\"RS256\",\"typ\":\"JWT\"}","type":"text"},{"name":"openid_rsa_keys_json","value":"[{\"kty\":\"RSA\",\"e\":\"AQAB\",\"use\":\"sig\",\"alg\":\"RS256\",\"n\":\"AIHUBZRebKtjubhIN0AbPWYVsCnNaT1rksFU6ufgAdgjCyfA5Em2Jl3ev97dq5af1kOBGLqVJT90JypFfIvWRYEDYRefMmJS7ReZInstnD8kMVx5N_6UHxdX6hHNsg31DI6BxZMg-jFfXOOlQpA78EVIZnH1JP0S1GEnwIatMM_fWHs-XeiS3AFxjyNqpJvGlNtlqpqcGz7en0yEjzdLpLrZ1HNwfzmQwYHmy4oxeC1q9lS34iH4vMmKdBXfwrV-92OzP9o-k8x1gi5196qj60sDiza-oDARJILAEaL1iKVAY4ywtjWb_k7-Va6GXXeAbgXiZ8t040uQDlZQEyLDHWc=\"}]","type":"text"}],"optional":false,"outputs":[{"name":"id_token_jwk_json","type":"text","value":"{\"kty\":\"RSA\",\"e\":\"AQAB\",\"use\":\"sig\",\"alg\":\"RS256\",\"n\":\"AIHUBZRebKtjubhIN0AbPWYVsCnNaT1rksFU6ufgAdgjCyfA5Em2Jl3ev97dq5af1kOBGLqVJT90JypFfIvWRYEDYRefMmJS7ReZInstnD8kMVx5N_6UHxdX6hHNsg31DI6BxZMg-jFfXOOlQpA78EVIZnH1JP0S1GEnwIatMM_fWHs-XeiS3AFxjyNqpJvGlNtlqpqcGz7en0yEjzdLpLrZ1HNwfzmQwYHmy4oxeC1q9lS34iH4vMmKdBXfwrV-92OzP9o-k8x1gi5196qj60sDiza-oDARJILAEaL1iKVAY4ywtjWb_k7-Va6GXXeAbgXiZ8t040uQDlZQEyLDHWc=\"}"}],"requests":[],"result":"pass","test_id":"smart-smart_full_ehr_launch-smart_openid_connect-smart_openid_token_header","test_run_id":"363d1b19-dcfb-4b60-a2f2-180e91e6c1e2","test_session_id":"lvGwXCOQVdy","updated_at":"2026-04-02T21:11:25.944-04:00"},{"id":"5b0b6ead-a9ce-4bbe-94fa-a830fb9394ca","created_at":"2026-04-02T21:11:25.949-04:00","inputs":[{"name":"ehr_id_token","value":"eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJodHRwczovL2luZmVybm8uaGVhbHRoaXQuZ292L3JlZmVyZW5jZS1zZXJ2ZXIvcjQiLCJzdWIiOiJlOGZkNTk5NC0yYTExLTRhYzEtYWQyMS01NWFmNDM3YjYwM2IiLCJhdWQiOiJTQU1QTEVfUFVCTElDX0NMSUVOVF9JRCIsImV4cCI6MTgwNjcxNDY4NSwiaWF0IjoxNzc1MTc4Njg1LCJmaGlyVXNlciI6Imh0dHBzOi8vaW5mZXJuby5oZWFsdGhpdC5nb3YvcmVmZXJlbmNlLXNlcnZlci9yNC9QYXRpZW50Lzg1In0.XmWy-RP7PXnXv7kriHpcQltG97Zn_HmFJp3Q69dTyaCQmFyjXoBnSN8RGQ6N7GpnZ5ApJT9vHTEr3lsd3Cqu5N87isKX2yz9tc0k_8nLeD7ZJOYxIksbeIdkacyg2HZnrVlsARmu2cFR-bXXw2otALnRqp9sWsS211FyAq8StQ6Ud7tUtZg1TCSZtR_iQ3Ie-i-tULKQcJNG2i3QWpoQ-PXWHFgCANzVA1pEpQ-rkwPqhGWwxV0Nf2Whd-ibUudUWBBKoD0MnCLTnkryn11lb26851iCt0c100JtykMTHVoSqvCT_XQcf18GbV89qbuvNV8WO4UsOJljySksN-nMzA","type":"text"},{"name":"openid_configuration_json","value":"{\"response_types_supported\":[\"code\",\"id_token\",\"token id_token\"],\"jwks_uri\":\"https://inferno.healthit.gov/reference-server/r4/.well-known/jwk\",\"subject_types_supported\":[\"pairwise\",\"public\"],\"id_token_signing_alg_values_supported\":[\"RS256\"],\"issuer\":\"https://inferno.healthit.gov/reference-server/r4\",\"authorization_endpoint\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"token_endpoint\":\"https://inferno.healthit.gov/reference-server/oauth/token\"}","type":"text"},{"name":"id_token_jwk_json","value":"{\"kty\":\"RSA\",\"e\":\"AQAB\",\"use\":\"sig\",\"alg\":\"RS256\",\"n\":\"AIHUBZRebKtjubhIN0AbPWYVsCnNaT1rksFU6ufgAdgjCyfA5Em2Jl3ev97dq5af1kOBGLqVJT90JypFfIvWRYEDYRefMmJS7ReZInstnD8kMVx5N_6UHxdX6hHNsg31DI6BxZMg-jFfXOOlQpA78EVIZnH1JP0S1GEnwIatMM_fWHs-XeiS3AFxjyNqpJvGlNtlqpqcGz7en0yEjzdLpLrZ1HNwfzmQwYHmy4oxeC1q9lS34iH4vMmKdBXfwrV-92OzP9o-k8x1gi5196qj60sDiza-oDARJILAEaL1iKVAY4ywtjWb_k7-Va6GXXeAbgXiZ8t040uQDlZQEyLDHWc=\"}","type":"text"},{"name":"ehr_smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch openid fhirUser offline_access user/*.read\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"disabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"cabdda1e-c49a-47f2-a079-b111afbed8ec\",\"refresh_token\":\"cedb6555-1a4b-417d-aa4c-978fabea96d7\",\"issue_time\":\"2026-04-02T21:11:25-04:00\",\"expires_in\":3600,\"name\":\"ehr_smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_id":"smart-smart_full_ehr_launch-smart_openid_connect-smart_openid_token_payload","test_run_id":"363d1b19-dcfb-4b60-a2f2-180e91e6c1e2","test_session_id":"lvGwXCOQVdy","updated_at":"2026-04-02T21:11:25.949-04:00"},{"id":"21a6c473-1b0e-4020-bc5d-4248fee0869d","created_at":"2026-04-02T21:11:26.080-04:00","inputs":[{"name":"id_token_payload_json","value":"{\"iss\":\"https://inferno.healthit.gov/reference-server/r4\",\"sub\":\"e8fd5994-2a11-4ac1-ad21-55af437b603b\",\"aud\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"exp\":1806714685,\"iat\":1775178685,\"fhirUser\":\"https://inferno.healthit.gov/reference-server/r4/Patient/85\"}","type":"text"},{"name":"url","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"ehr_smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch openid fhirUser offline_access user/*.read\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"disabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"cabdda1e-c49a-47f2-a079-b111afbed8ec\",\"refresh_token\":\"cedb6555-1a4b-417d-aa4c-978fabea96d7\",\"issue_time\":\"2026-04-02T21:11:25-04:00\",\"expires_in\":3600,\"name\":\"ehr_smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[{"name":"id_token_fhir_user","type":"text","value":"https://inferno.healthit.gov/reference-server/r4/Patient/85"}],"requests":[{"id":"d05e6664-f6e0-4bc3-8935-1f2b907e1c79","direction":"outgoing","index":259,"result_id":"21a6c473-1b0e-4020-bc5d-4248fee0869d","status":200,"timestamp":"2026-04-02T21:11:26.083-04:00","url":"https://inferno.healthit.gov/reference-server/r4/Patient/85","verb":"get"}],"result":"pass","test_id":"smart-smart_full_ehr_launch-smart_openid_connect-smart_openid_fhir_user_claim","test_run_id":"363d1b19-dcfb-4b60-a2f2-180e91e6c1e2","test_session_id":"lvGwXCOQVdy","updated_at":"2026-04-02T21:11:26.080-04:00"},{"id":"b27fd928-d49c-4020-820c-3eb3f4907592","created_at":"2026-04-02T21:11:26.094-04:00","inputs":[{"name":"ehr_id_token","label":null,"description":null,"value":"eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJodHRwczovL2luZmVybm8uaGVhbHRoaXQuZ292L3JlZmVyZW5jZS1zZXJ2ZXIvcjQiLCJzdWIiOiJlOGZkNTk5NC0yYTExLTRhYzEtYWQyMS01NWFmNDM3YjYwM2IiLCJhdWQiOiJTQU1QTEVfUFVCTElDX0NMSUVOVF9JRCIsImV4cCI6MTgwNjcxNDY4NSwiaWF0IjoxNzc1MTc4Njg1LCJmaGlyVXNlciI6Imh0dHBzOi8vaW5mZXJuby5oZWFsdGhpdC5nb3YvcmVmZXJlbmNlLXNlcnZlci9yNC9QYXRpZW50Lzg1In0.XmWy-RP7PXnXv7kriHpcQltG97Zn_HmFJp3Q69dTyaCQmFyjXoBnSN8RGQ6N7GpnZ5ApJT9vHTEr3lsd3Cqu5N87isKX2yz9tc0k_8nLeD7ZJOYxIksbeIdkacyg2HZnrVlsARmu2cFR-bXXw2otALnRqp9sWsS211FyAq8StQ6Ud7tUtZg1TCSZtR_iQ3Ie-i-tULKQcJNG2i3QWpoQ-PXWHFgCANzVA1pEpQ-rkwPqhGWwxV0Nf2Whd-ibUudUWBBKoD0MnCLTnkryn11lb26851iCt0c100JtykMTHVoSqvCT_XQcf18GbV89qbuvNV8WO4UsOJljySksN-nMzA","type":"text"},{"name":"ehr_smart_auth_info","label":null,"description":null,"value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch openid fhirUser offline_access user/*.read\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"disabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"cabdda1e-c49a-47f2-a079-b111afbed8ec\",\"refresh_token\":\"cedb6555-1a4b-417d-aa4c-978fabea96d7\",\"issue_time\":\"2026-04-02T21:11:25-04:00\",\"expires_in\":3600,\"name\":\"ehr_smart_auth_info\"}","type":"auth_info"},{"name":"url","label":null,"description":null,"value":"https://inferno.healthit.gov/reference-server/r4","type":"text"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"smart-smart_full_ehr_launch-smart_openid_connect","test_run_id":"363d1b19-dcfb-4b60-a2f2-180e91e6c1e2","test_session_id":"lvGwXCOQVdy","updated_at":"2026-04-02T21:11:26.094-04:00"},{"id":"7ab283bb-36ee-4922-80ee-c645db30fd84","created_at":"2026-04-02T21:11:26.210-04:00","inputs":[{"name":"ehr_received_scopes","value":"launch openid fhirUser offline_access user/*.read","type":"text"},{"name":"ehr_smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch openid fhirUser offline_access user/*.read\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"disabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"cabdda1e-c49a-47f2-a079-b111afbed8ec\",\"refresh_token\":\"cedb6555-1a4b-417d-aa4c-978fabea96d7\",\"issue_time\":\"2026-04-02T21:11:25-04:00\",\"expires_in\":3600,\"name\":\"ehr_smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[{"name":"ehr_smart_credentials","type":"text","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch openid fhirUser offline_access user/*.read\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"disabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"c3730f0a-26fe-4020-a106-feaea2f23839\",\"refresh_token\":\"2719e494-a958-4df1-9259-0932e49c4c0c\",\"issue_time\":\"2026-04-02T21:11:26-04:00\",\"expires_in\":3600,\"name\":\"ehr_smart_auth_info\"}"},{"name":"ehr_token_retrieval_time","type":"text","value":"2026-04-02T21:11:26-04:00"},{"name":"ehr_smart_auth_info","type":"text","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch openid fhirUser offline_access user/*.read\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"disabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"c3730f0a-26fe-4020-a106-feaea2f23839\",\"refresh_token\":\"2719e494-a958-4df1-9259-0932e49c4c0c\",\"issue_time\":\"2026-04-02T21:11:26-04:00\",\"expires_in\":3600,\"name\":\"ehr_smart_auth_info\"}"}],"requests":[{"id":"085a7891-74f4-4ccb-903e-bebc882b68b2","direction":"outgoing","index":260,"result_id":"7ab283bb-36ee-4922-80ee-c645db30fd84","status":200,"timestamp":"2026-04-02T21:11:26.211-04:00","url":"https://inferno.healthit.gov/reference-server/oauth/token","verb":"post"}],"result":"pass","test_id":"smart-smart_full_ehr_launch-smart_ehr_refresh_without_scopes-smart_token_refresh","test_run_id":"363d1b19-dcfb-4b60-a2f2-180e91e6c1e2","test_session_id":"lvGwXCOQVdy","updated_at":"2026-04-02T21:11:26.210-04:00"},{"id":"3e09ec8a-c572-4e4b-b51a-913af5bb5140","created_at":"2026-04-02T21:11:26.221-04:00","inputs":[{"name":"ehr_received_scopes","value":"launch openid fhirUser offline_access user/*.read","type":"text"},{"name":"ehr_smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch openid fhirUser offline_access user/*.read\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"disabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"c3730f0a-26fe-4020-a106-feaea2f23839\",\"refresh_token\":\"2719e494-a958-4df1-9259-0932e49c4c0c\",\"issue_time\":\"2026-04-02T21:11:26-04:00\",\"expires_in\":3600,\"name\":\"ehr_smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[{"name":"ehr_refresh_token","type":"text","value":"2719e494-a958-4df1-9259-0932e49c4c0c"},{"name":"ehr_access_token","type":"text","value":"c3730f0a-26fe-4020-a106-feaea2f23839"},{"name":"ehr_token_retrieval_time","type":"text","value":"2026-04-02T21:11:26-04:00"},{"name":"ehr_expires_in","type":"text","value":"3600"},{"name":"ehr_received_scopes","type":"text","value":"launch openid fhirUser offline_access user/*.read"},{"name":"ehr_smart_auth_info","type":"text","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch openid fhirUser offline_access user/*.read\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"disabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"c3730f0a-26fe-4020-a106-feaea2f23839\",\"refresh_token\":\"2719e494-a958-4df1-9259-0932e49c4c0c\",\"issue_time\":\"2026-04-02T21:11:26-04:00\",\"expires_in\":3600,\"name\":\"ehr_smart_auth_info\"}"}],"requests":[{"id":"085a7891-74f4-4ccb-903e-bebc882b68b2","direction":"outgoing","index":260,"result_id":"7ab283bb-36ee-4922-80ee-c645db30fd84","status":200,"timestamp":"2026-04-02T21:11:26.211-04:00","url":"https://inferno.healthit.gov/reference-server/oauth/token","verb":"post"}],"result":"pass","test_id":"smart-smart_full_ehr_launch-smart_ehr_refresh_without_scopes-smart_token_refresh_body","test_run_id":"363d1b19-dcfb-4b60-a2f2-180e91e6c1e2","test_session_id":"lvGwXCOQVdy","updated_at":"2026-04-02T21:11:26.221-04:00"},{"id":"5d6b167f-ef62-4d45-bdd7-6957f887b1db","created_at":"2026-04-02T21:11:26.224-04:00","inputs":[],"optional":false,"outputs":[],"requests":[{"id":"085a7891-74f4-4ccb-903e-bebc882b68b2","direction":"outgoing","index":260,"result_id":"7ab283bb-36ee-4922-80ee-c645db30fd84","status":200,"timestamp":"2026-04-02T21:11:26.211-04:00","url":"https://inferno.healthit.gov/reference-server/oauth/token","verb":"post"}],"result":"pass","test_id":"smart-smart_full_ehr_launch-smart_ehr_refresh_without_scopes-smart_token_response_headers","test_run_id":"363d1b19-dcfb-4b60-a2f2-180e91e6c1e2","test_session_id":"lvGwXCOQVdy","updated_at":"2026-04-02T21:11:26.224-04:00"},{"id":"90d81e31-9917-44f8-8d8c-2a578e510d28","created_at":"2026-04-02T21:11:26.225-04:00","inputs":[{"name":"ehr_received_scopes","label":null,"description":null,"value":"launch openid fhirUser offline_access user/*.read","type":"text"},{"name":"ehr_smart_auth_info","label":null,"description":null,"value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch openid fhirUser offline_access user/*.read\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"disabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"cabdda1e-c49a-47f2-a079-b111afbed8ec\",\"refresh_token\":\"cedb6555-1a4b-417d-aa4c-978fabea96d7\",\"issue_time\":\"2026-04-02T21:11:25-04:00\",\"expires_in\":3600,\"name\":\"ehr_smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"smart-smart_full_ehr_launch-smart_ehr_refresh_without_scopes","test_run_id":"363d1b19-dcfb-4b60-a2f2-180e91e6c1e2","test_session_id":"lvGwXCOQVdy","updated_at":"2026-04-02T21:11:26.225-04:00"},{"id":"f334ba00-1f4e-4db8-8016-bf011a42d6e2","created_at":"2026-04-02T21:11:26.428-04:00","inputs":[{"name":"ehr_received_scopes","value":"launch openid fhirUser offline_access user/*.read","type":"text"},{"name":"ehr_smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch openid fhirUser offline_access user/*.read\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"disabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"c3730f0a-26fe-4020-a106-feaea2f23839\",\"refresh_token\":\"2719e494-a958-4df1-9259-0932e49c4c0c\",\"issue_time\":\"2026-04-02T21:11:26-04:00\",\"expires_in\":3600,\"name\":\"ehr_smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[{"name":"ehr_smart_credentials","type":"text","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch openid fhirUser offline_access user/*.read\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"disabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"1dc1d718-f5c9-450c-b91c-d2b57e061c02\",\"refresh_token\":\"d0fce50b-4121-4cf0-b935-97ee1e88a77d\",\"issue_time\":\"2026-04-02T21:11:26-04:00\",\"expires_in\":3600,\"name\":\"ehr_smart_auth_info\"}"},{"name":"ehr_token_retrieval_time","type":"text","value":"2026-04-02T21:11:26-04:00"},{"name":"ehr_smart_auth_info","type":"text","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch openid fhirUser offline_access user/*.read\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"disabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"1dc1d718-f5c9-450c-b91c-d2b57e061c02\",\"refresh_token\":\"d0fce50b-4121-4cf0-b935-97ee1e88a77d\",\"issue_time\":\"2026-04-02T21:11:26-04:00\",\"expires_in\":3600,\"name\":\"ehr_smart_auth_info\"}"}],"requests":[{"id":"aa2b36d2-f173-4f87-86e2-7beebbab5007","direction":"outgoing","index":261,"result_id":"f334ba00-1f4e-4db8-8016-bf011a42d6e2","status":200,"timestamp":"2026-04-02T21:11:26.430-04:00","url":"https://inferno.healthit.gov/reference-server/oauth/token","verb":"post"}],"result":"pass","test_id":"smart-smart_full_ehr_launch-smart_ehr_refresh_with_scopes-smart_token_refresh","test_run_id":"363d1b19-dcfb-4b60-a2f2-180e91e6c1e2","test_session_id":"lvGwXCOQVdy","updated_at":"2026-04-02T21:11:26.428-04:00"},{"id":"65c5733b-f359-435e-8e5c-595934af3700","created_at":"2026-04-02T21:11:26.445-04:00","inputs":[{"name":"ehr_received_scopes","value":"launch openid fhirUser offline_access user/*.read","type":"text"},{"name":"ehr_smart_auth_info","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch openid fhirUser offline_access user/*.read\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"disabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"1dc1d718-f5c9-450c-b91c-d2b57e061c02\",\"refresh_token\":\"d0fce50b-4121-4cf0-b935-97ee1e88a77d\",\"issue_time\":\"2026-04-02T21:11:26-04:00\",\"expires_in\":3600,\"name\":\"ehr_smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[{"name":"ehr_refresh_token","type":"text","value":"d0fce50b-4121-4cf0-b935-97ee1e88a77d"},{"name":"ehr_access_token","type":"text","value":"1dc1d718-f5c9-450c-b91c-d2b57e061c02"},{"name":"ehr_token_retrieval_time","type":"text","value":"2026-04-02T21:11:26-04:00"},{"name":"ehr_expires_in","type":"text","value":"3600"},{"name":"ehr_received_scopes","type":"text","value":"launch openid fhirUser offline_access user/*.read"},{"name":"ehr_smart_auth_info","type":"text","value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch openid fhirUser offline_access user/*.read\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"disabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"1dc1d718-f5c9-450c-b91c-d2b57e061c02\",\"refresh_token\":\"d0fce50b-4121-4cf0-b935-97ee1e88a77d\",\"issue_time\":\"2026-04-02T21:11:26-04:00\",\"expires_in\":3600,\"name\":\"ehr_smart_auth_info\"}"}],"requests":[{"id":"aa2b36d2-f173-4f87-86e2-7beebbab5007","direction":"outgoing","index":261,"result_id":"f334ba00-1f4e-4db8-8016-bf011a42d6e2","status":200,"timestamp":"2026-04-02T21:11:26.430-04:00","url":"https://inferno.healthit.gov/reference-server/oauth/token","verb":"post"}],"result":"pass","test_id":"smart-smart_full_ehr_launch-smart_ehr_refresh_with_scopes-smart_token_refresh_body","test_run_id":"363d1b19-dcfb-4b60-a2f2-180e91e6c1e2","test_session_id":"lvGwXCOQVdy","updated_at":"2026-04-02T21:11:26.445-04:00"},{"id":"eec0e66c-465e-4d23-8b55-34b316d9f578","created_at":"2026-04-02T21:11:26.448-04:00","inputs":[],"optional":false,"outputs":[],"requests":[{"id":"aa2b36d2-f173-4f87-86e2-7beebbab5007","direction":"outgoing","index":261,"result_id":"f334ba00-1f4e-4db8-8016-bf011a42d6e2","status":200,"timestamp":"2026-04-02T21:11:26.430-04:00","url":"https://inferno.healthit.gov/reference-server/oauth/token","verb":"post"}],"result":"pass","test_id":"smart-smart_full_ehr_launch-smart_ehr_refresh_with_scopes-smart_token_response_headers","test_run_id":"363d1b19-dcfb-4b60-a2f2-180e91e6c1e2","test_session_id":"lvGwXCOQVdy","updated_at":"2026-04-02T21:11:26.448-04:00"},{"id":"29711607-4b25-4a44-87be-49d4e31f9da8","created_at":"2026-04-02T21:11:26.450-04:00","inputs":[{"name":"ehr_received_scopes","label":null,"description":null,"value":"launch openid fhirUser offline_access user/*.read","type":"text"},{"name":"ehr_smart_auth_info","label":null,"description":null,"value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch openid fhirUser offline_access user/*.read\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"disabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"access_token\":\"c3730f0a-26fe-4020-a106-feaea2f23839\",\"refresh_token\":\"2719e494-a958-4df1-9259-0932e49c4c0c\",\"issue_time\":\"2026-04-02T21:11:26-04:00\",\"expires_in\":3600,\"name\":\"ehr_smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"smart-smart_full_ehr_launch-smart_ehr_refresh_with_scopes","test_run_id":"363d1b19-dcfb-4b60-a2f2-180e91e6c1e2","test_session_id":"lvGwXCOQVdy","updated_at":"2026-04-02T21:11:26.450-04:00"},{"id":"0405fc0b-f344-4926-b01c-61a952736747","created_at":"2026-04-02T21:11:26.454-04:00","inputs":[],"optional":false,"outputs":[],"requests":[],"result":"pass","test_run_id":"363d1b19-dcfb-4b60-a2f2-180e91e6c1e2","test_session_id":"lvGwXCOQVdy","test_suite_id":"smart","updated_at":"2026-04-02T21:11:26.454-04:00"},{"id":"431d8109-1c8f-4012-81b5-c18939eae6b0","created_at":"2026-04-02T21:11:26.455-04:00","inputs":[{"name":"url","label":"FHIR Endpoint","description":"URL of the FHIR endpoint used by SMART applications","value":"https://inferno.healthit.gov/reference-server/r4","type":"text"},{"name":"ehr_smart_auth_info","label":"EHR Launch Credentials","description":null,"value":"{\"auth_type\":\"public\",\"use_discovery\":\"true\",\"token_url\":\"https://inferno.healthit.gov/reference-server/oauth/token\",\"auth_url\":\"https://inferno.healthit.gov/reference-server/oauth/authorization\",\"requested_scopes\":\"launch openid fhirUser offline_access user/*.read\",\"client_id\":\"SAMPLE_PUBLIC_CLIENT_ID\",\"pkce_support\":\"disabled\",\"pkce_code_challenge_method\":\"S256\",\"auth_request_method\":\"GET\",\"name\":\"ehr_smart_auth_info\"}","type":"auth_info"}],"optional":false,"outputs":[],"requests":[],"result":"pass","test_group_id":"smart-smart_full_ehr_launch","test_run_id":"363d1b19-dcfb-4b60-a2f2-180e91e6c1e2","test_session_id":"lvGwXCOQVdy","updated_at":"2026-04-02T21:11:26.455-04:00"}]