#'@export
createPersonTests <- function () {
patient <- createPatient()
declareTest(id = patient$id, description = "Drop patients with no gender, id is PERSON_SOURCE_VALUE")
add_patients(id = patient$id, gender = NULL)
expect_no_person(person_source_value = patient$id)
patient <- createPatient()
declareTest(id = patient$id, description = "Patient with unknown race has RACE_CONCEPT_ID = 0, id is PERSON_SOURCE_VALUE")
add_patients(id = patient$id, race = "Unknown")
expect_person(person_source_value = patient$id, race_concept_id = 0)
patient <- createPatient()
declareTest(id = patient$id, description = "Patient with ethnicity other than hispanic has ETHNICITY_CONCEPT_ID = 0, id is PERSON_SOURCE_VALUE")
add_patients(id = patient$id, ethnicity = "English")
expect_person(person_source_value = patient$id, ethnicity_concept_id = 0)
patient <- createPatient()
declareTest(id = patient$id, description = "Patient with strange birth date, id is PERSON_SOURCE_VALUE")
add_patients(id = patient$id, birthdate = "2099-01-01")
patient <- createPatient()
declareTest(id = patient$id, description = "Patient with strange birth date, id is PERSON_SOURCE_VALUE")
add_patients(id = patient$id, birthdate = "1099-01-01")
## example of race loop
# race <- list(
# list(source = "1", value = "Mexican American", concept_id = 0),
# list(source = "2", value = "Other Hispanic", concept_id = 0),
# list(source = "3", value = "Non-Hispanic White", concept_id = 8527),
# list(source = "4", value = "Non-Hispanic Black", concept_id = 8516),
# list(source = "5", value = "Other Race - Including Multi-Racial", concept_id = 0)
# )
#
# for (r in race)
# {
# patient <- createPatient()
# declareTest(id = patient$person_id, description = paste0("Patient has race code ",r$source,", ID is person_id"))
# add_nhanes_all(seqn = patient$seqn, table_name = "DEMO_C", variable = "RIDAGEYR", value = "35")
# add_nhanes_all(seqn = patient$seqn, table_name = "DEMO_C", variable = "RIAGENDR", value = "1")
# add_nhanes_all(seqn = patient$seqn, table_name = "DEMO_C", variable = "RIDRETH1", value = r$source)
# add_nhanes_all_descriptions(table_name = 'DEMO_C', code_or_value = r$source, value_description = r$value, count = '5152', cumulative = '10122', skip_to_item = 'NA', var_name = "RIDRETH1")
# expect_person(person_id = patient$person_id, race_concept_id = r$concept_id, race_source_value = r$value)
# }
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.