openehr 1.1.0
Sign up to get free protection for your applications and to get access to all the features.
- data/.document +5 -0
- data/.rspec +2 -0
- data/.travis.yml +3 -0
- data/Gemfile +23 -0
- data/Guardfile +12 -0
- data/History.txt +36 -0
- data/PostInstall.txt +9 -0
- data/README.rdoc +82 -0
- data/Rakefile +44 -0
- data/VERSION +1 -0
- data/doc/openehr_terminology.xml +2700 -0
- data/lib/openehr.rb +11 -0
- data/lib/openehr/am.rb +8 -0
- data/lib/openehr/am/archetype.rb +133 -0
- data/lib/openehr/am/archetype/assertion.rb +190 -0
- data/lib/openehr/am/archetype/constraint_model.rb +328 -0
- data/lib/openehr/am/archetype/constraint_model/primitive.rb +327 -0
- data/lib/openehr/am/archetype/ontology.rb +126 -0
- data/lib/openehr/am/openehr_profile.rb +9 -0
- data/lib/openehr/am/openehr_profile/data_types.rb +13 -0
- data/lib/openehr/am/openehr_profile/data_types/basic.rb +114 -0
- data/lib/openehr/am/openehr_profile/data_types/quantity.rb +67 -0
- data/lib/openehr/am/openehr_profile/data_types/text.rb +22 -0
- data/lib/openehr/assumed_library_types.rb +691 -0
- data/lib/openehr/parser.rb +23 -0
- data/lib/openehr/parser/adl.rb +57 -0
- data/lib/openehr/parser/adl_grammar.tt +245 -0
- data/lib/openehr/parser/adl_parser.rb +52 -0
- data/lib/openehr/parser/cadl_grammar.tt +1527 -0
- data/lib/openehr/parser/cadl_node.rb +44 -0
- data/lib/openehr/parser/dadl.rb +13 -0
- data/lib/openehr/parser/dadl_grammar.tt +358 -0
- data/lib/openehr/parser/exception.rb +68 -0
- data/lib/openehr/parser/shared_token_grammar.tt +1229 -0
- data/lib/openehr/parser/validator.rb +19 -0
- data/lib/openehr/parser/xml_perser.rb +13 -0
- data/lib/openehr/rm.rb +15 -0
- data/lib/openehr/rm/common.rb +14 -0
- data/lib/openehr/rm/common/archetyped.rb +182 -0
- data/lib/openehr/rm/common/change_control.rb +332 -0
- data/lib/openehr/rm/common/directory.rb +29 -0
- data/lib/openehr/rm/common/generic.rb +216 -0
- data/lib/openehr/rm/common/resource.rb +154 -0
- data/lib/openehr/rm/composition.rb +103 -0
- data/lib/openehr/rm/composition/content.rb +22 -0
- data/lib/openehr/rm/composition/content/entry.rb +253 -0
- data/lib/openehr/rm/composition/content/navigation.rb +31 -0
- data/lib/openehr/rm/data_structures.rb +25 -0
- data/lib/openehr/rm/data_structures/history.rb +117 -0
- data/lib/openehr/rm/data_structures/item_structure.rb +218 -0
- data/lib/openehr/rm/data_structures/item_structure/representation.rb +63 -0
- data/lib/openehr/rm/data_types.rb +14 -0
- data/lib/openehr/rm/data_types/basic.rb +108 -0
- data/lib/openehr/rm/data_types/charset.lst +818 -0
- data/lib/openehr/rm/data_types/charset_extract.rb +24 -0
- data/lib/openehr/rm/data_types/encapsulated.rb +98 -0
- data/lib/openehr/rm/data_types/quantity.rb +402 -0
- data/lib/openehr/rm/data_types/quantity/date_time.rb +256 -0
- data/lib/openehr/rm/data_types/text.rb +169 -0
- data/lib/openehr/rm/data_types/time_specification.rb +75 -0
- data/lib/openehr/rm/data_types/uri.rb +83 -0
- data/lib/openehr/rm/demographic.rb +269 -0
- data/lib/openehr/rm/ehr.rb +162 -0
- data/lib/openehr/rm/integration.rb +27 -0
- data/lib/openehr/rm/security.rb +12 -0
- data/lib/openehr/rm/support.rb +14 -0
- data/lib/openehr/rm/support/definition.rb +15 -0
- data/lib/openehr/rm/support/identification.rb +412 -0
- data/lib/openehr/rm/support/measurement.rb +17 -0
- data/lib/openehr/rm/support/terminology.rb +135 -0
- data/lib/openehr/serializer.rb +272 -0
- data/lib/openehr/terminology.rb +7 -0
- data/lib/openehr/terminology/open_ehr_terminology.rb +41 -0
- data/lib/openehr/writer.rb +12 -0
- data/openehr.gemspec +472 -0
- data/spec/lib/openehr/am/archetype/archetype_spec.rb +103 -0
- data/spec/lib/openehr/am/archetype/assertion/assertion_spec.rb +60 -0
- data/spec/lib/openehr/am/archetype/assertion/assertion_variable_spec.rb +30 -0
- data/spec/lib/openehr/am/archetype/assertion/expr_binary_operator.rb +40 -0
- data/spec/lib/openehr/am/archetype/assertion/expr_item_spec.rb +28 -0
- data/spec/lib/openehr/am/archetype/assertion/expr_leaf_spec.rb +34 -0
- data/spec/lib/openehr/am/archetype/assertion/expr_operator_spec.rb +25 -0
- data/spec/lib/openehr/am/archetype/assertion/expr_unary_operator_spec.rb +26 -0
- data/spec/lib/openehr/am/archetype/assertion/operator_kind_spec.rb +114 -0
- data/spec/lib/openehr/am/archetype/constraint_model/archetype_constraint_spec.rb +56 -0
- data/spec/lib/openehr/am/archetype/constraint_model/archetype_internal_ref_spec.rb +36 -0
- data/spec/lib/openehr/am/archetype/constraint_model/archetype_slot_spec.rb +61 -0
- data/spec/lib/openehr/am/archetype/constraint_model/c_attribute_spec.rb +59 -0
- data/spec/lib/openehr/am/archetype/constraint_model/c_complex_object_spec.rb +39 -0
- data/spec/lib/openehr/am/archetype/constraint_model/c_defined_object_spec.rb +53 -0
- data/spec/lib/openehr/am/archetype/constraint_model/c_domain_type_spec.rb +25 -0
- data/spec/lib/openehr/am/archetype/constraint_model/c_multiple_attribute_spec.rb +23 -0
- data/spec/lib/openehr/am/archetype/constraint_model/c_object_spec.rb +61 -0
- data/spec/lib/openehr/am/archetype/constraint_model/c_primitive_object_spec.rb +33 -0
- data/spec/lib/openehr/am/archetype/constraint_model/c_reference_object_spec.rb +17 -0
- data/spec/lib/openehr/am/archetype/constraint_model/c_single_attribute_spec.rb +22 -0
- data/spec/lib/openehr/am/archetype/constraint_model/cardinality_spec.rb +68 -0
- data/spec/lib/openehr/am/archetype/constraint_model/constraint_ref_spec.rb +29 -0
- data/spec/lib/openehr/am/archetype/constraint_model/primitive/c_boolean_spec.rb +57 -0
- data/spec/lib/openehr/am/archetype/constraint_model/primitive/c_date_spec.rb +52 -0
- data/spec/lib/openehr/am/archetype/constraint_model/primitive/c_date_time_spec.rb +136 -0
- data/spec/lib/openehr/am/archetype/constraint_model/primitive/c_duration_spec.rb +41 -0
- data/spec/lib/openehr/am/archetype/constraint_model/primitive/c_integer_spec.rb +67 -0
- data/spec/lib/openehr/am/archetype/constraint_model/primitive/c_primitive_spec.rb +41 -0
- data/spec/lib/openehr/am/archetype/constraint_model/primitive/c_real_spec.rb +19 -0
- data/spec/lib/openehr/am/archetype/constraint_model/primitive/c_string_spec.rb +73 -0
- data/spec/lib/openehr/am/archetype/constraint_model/primitive/c_time_spec.rb +104 -0
- data/spec/lib/openehr/am/archetype/ontology/archetype_ontology_spec.rb +97 -0
- data/spec/lib/openehr/am/archetype/ontology/archetype_term_spec.rb +43 -0
- data/spec/lib/openehr/am/archetype/validity_kind_spec.rb +42 -0
- data/spec/lib/openehr/am/openehr_profile/data_types/basic/c_dv_state_spec.rb +34 -0
- data/spec/lib/openehr/am/openehr_profile/data_types/basic/non_terminal_state_spec.rb +36 -0
- data/spec/lib/openehr/am/openehr_profile/data_types/basic/state_machine_spec.rb +34 -0
- data/spec/lib/openehr/am/openehr_profile/data_types/basic/state_spec.rb +26 -0
- data/spec/lib/openehr/am/openehr_profile/data_types/basic/terminal_state_spec.rb +18 -0
- data/spec/lib/openehr/am/openehr_profile/data_types/basic/transition_spec.rb +62 -0
- data/spec/lib/openehr/am/openehr_profile/data_types/quantity/c_dv_ordinal_spec.rb +41 -0
- data/spec/lib/openehr/am/openehr_profile/data_types/quantity/c_dv_quantity_spec.rb +50 -0
- data/spec/lib/openehr/am/openehr_profile/data_types/quantity/c_quantity_item_spec.rb +46 -0
- data/spec/lib/openehr/am/openehr_profile/data_types/text/c_code_phrase_spec.rb +34 -0
- data/spec/lib/openehr/assumed_library_types/interval_spec.rb +145 -0
- data/spec/lib/openehr/assumed_library_types/iso8601_date_spec.rb +236 -0
- data/spec/lib/openehr/assumed_library_types/iso8601_date_time_spec.rb +47 -0
- data/spec/lib/openehr/assumed_library_types/iso8601_duration_spec.rb +150 -0
- data/spec/lib/openehr/assumed_library_types/iso8601_time_spec.rb +234 -0
- data/spec/lib/openehr/assumed_library_types/iso8601_timezone_spec.rb +57 -0
- data/spec/lib/openehr/assumed_library_types/time_definitions_spec.rb +136 -0
- data/spec/lib/openehr/assumed_library_types/timezone_spec.rb +42 -0
- data/spec/lib/openehr/parser/adl14/adl-test-ENTRY.assumed_types.v1.adl +88 -0
- data/spec/lib/openehr/parser/adl14/adl-test-ENTRY.basic_types.v1.adl +143 -0
- data/spec/lib/openehr/parser/adl14/adl-test-ENTRY.basic_types_fail.v1.adl +50 -0
- data/spec/lib/openehr/parser/adl14/adl-test-ENTRY.most_minimal.v1.adl +27 -0
- data/spec/lib/openehr/parser/adl14/adl-test-ENTRY.structure_test1.v1.adl +46 -0
- data/spec/lib/openehr/parser/adl14/adl-test-SOME_TYPE.generic_type_basic.draft.adl +56 -0
- data/spec/lib/openehr/parser/adl14/adl-test-SOME_TYPE.generic_type_use_node.draft.adl +63 -0
- data/spec/lib/openehr/parser/adl14/adl-test-car.paths.test.adl +80 -0
- data/spec/lib/openehr/parser/adl14/adl-test-car.use_node.test.adl +87 -0
- data/spec/lib/openehr/parser/adl14/adl-test-composition.dv_coded_text.test.adl +29 -0
- data/spec/lib/openehr/parser/adl14/adl-test-entry.archetype_bindings.test.adl +47 -0
- data/spec/lib/openehr/parser/adl14/adl-test-entry.archetype_desc_missing_purpose.test.adl +45 -0
- data/spec/lib/openehr/parser/adl14/adl-test-entry.archetype_description.test.adl +61 -0
- data/spec/lib/openehr/parser/adl14/adl-test-entry.archetype_description2.test.adl +45 -0
- data/spec/lib/openehr/parser/adl14/adl-test-entry.archetype_identification.test.adl +26 -0
- data/spec/lib/openehr/parser/adl14/adl-test-entry.archetype_internal_ref.test.adl +36 -0
- data/spec/lib/openehr/parser/adl14/adl-test-entry.archetype_internal_ref2.test.adl +36 -0
- data/spec/lib/openehr/parser/adl14/adl-test-entry.archetype_language.test.adl +47 -0
- data/spec/lib/openehr/parser/adl14/adl-test-entry.archetype_language_no_accreditation.test.adl +38 -0
- data/spec/lib/openehr/parser/adl14/adl-test-entry.archetype_language_order_of_translation_details.test.adl +40 -0
- data/spec/lib/openehr/parser/adl14/adl-test-entry.archetype_ontology.test.adl +25 -0
- data/spec/lib/openehr/parser/adl14/adl-test-entry.archetype_slot.test.adl +40 -0
- data/spec/lib/openehr/parser/adl14/adl-test-entry.archetype_slot.test2.adl +37 -0
- data/spec/lib/openehr/parser/adl14/adl-test-entry.archetype_uncommonkeys.test.adl +29 -0
- data/spec/lib/openehr/parser/adl14/adl-test-entry.basic_types.test.adl +272 -0
- data/spec/lib/openehr/parser/adl14/adl-test-entry.c_code_phrase.test.adl +77 -0
- data/spec/lib/openehr/parser/adl14/adl-test-entry.c_dv_ordinal.test.adl +66 -0
- data/spec/lib/openehr/parser/adl14/adl-test-entry.c_dv_quantity_empty.test.adl +46 -0
- data/spec/lib/openehr/parser/adl14/adl-test-entry.c_dv_quantity_full.test.adl +64 -0
- data/spec/lib/openehr/parser/adl14/adl-test-entry.c_dv_quantity_full2.test.adl +64 -0
- data/spec/lib/openehr/parser/adl14/adl-test-entry.c_dv_quantity_full3.test.adl +64 -0
- data/spec/lib/openehr/parser/adl14/adl-test-entry.c_dv_quantity_item_units_only.test.adl +55 -0
- data/spec/lib/openehr/parser/adl14/adl-test-entry.c_dv_quantity_list.test.adl +58 -0
- data/spec/lib/openehr/parser/adl14/adl-test-entry.c_dv_quantity_property.test.adl +47 -0
- data/spec/lib/openehr/parser/adl14/adl-test-entry.c_dv_quantity_reversed.test.adl +59 -0
- data/spec/lib/openehr/parser/adl14/adl-test-entry.constraint_binding.test.adl +37 -0
- data/spec/lib/openehr/parser/adl14/adl-test-entry.constraint_ref.test.adl +43 -0
- data/spec/lib/openehr/parser/adl14/adl-test-entry.datetime.test.adl +183 -0
- data/spec/lib/openehr/parser/adl14/adl-test-entry.domain_types.test.adl +97 -0
- data/spec/lib/openehr/parser/adl14/adl-test-entry.durations.test.adl +109 -0
- data/spec/lib/openehr/parser/adl14/adl-test-entry.empty_other_contributors.test.adl +42 -0
- data/spec/lib/openehr/parser/adl14/adl-test-entry.missing_language.test.adl +23 -0
- data/spec/lib/openehr/parser/adl14/adl-test-entry.mixed_node_types.draft.adl +61 -0
- data/spec/lib/openehr/parser/adl14/adl-test-entry.most_minimal.test.adl +23 -0
- data/spec/lib/openehr/parser/adl14/adl-test-entry.multi_language.test.adl +52 -0
- data/spec/lib/openehr/parser/adl14/adl-test-entry.special_string.test.adl +88 -0
- data/spec/lib/openehr/parser/adl14/adl-test-entry.structure_test1.test.adl +45 -0
- data/spec/lib/openehr/parser/adl14/adl-test-entry.structure_test2.test.adl +45 -0
- data/spec/lib/openehr/parser/adl14/adl-test-entry.term_binding.test.adl +37 -0
- data/spec/lib/openehr/parser/adl14/adl-test-entry.term_binding2.test.adl +32 -0
- data/spec/lib/openehr/parser/adl14/adl-test-entry.testtranslations.test.adl +83 -0
- data/spec/lib/openehr/parser/adl14/adl-test-entry.translations_author_language.test.adl +34 -0
- data/spec/lib/openehr/parser/adl14/adl-test-entry.translations_language_author.test.adl +34 -0
- data/spec/lib/openehr/parser/adl14/adl-test-entry.unicode_BOM_support.test.adl +41 -0
- data/spec/lib/openehr/parser/adl14/adl-test-entry.unicode_support.test.adl +41 -0
- data/spec/lib/openehr/parser/adl14/openEHR-EHR-ACTION.imaging.v1.adl +275 -0
- data/spec/lib/openehr/parser/adl14/openEHR-EHR-ACTION.referral.v1.adl +351 -0
- data/spec/lib/openehr/parser/adl14/openEHR-EHR-CLUSTER.auscultation-chest.v1.adl +765 -0
- data/spec/lib/openehr/parser/adl14/openEHR-EHR-CLUSTER.auscultation.v1.adl +48 -0
- data/spec/lib/openehr/parser/adl14/openEHR-EHR-CLUSTER.dimensions-circumference.v1.adl +134 -0
- data/spec/lib/openehr/parser/adl14/openEHR-EHR-CLUSTER.dimensions.v1.adl +241 -0
- data/spec/lib/openehr/parser/adl14/openEHR-EHR-CLUSTER.exam-abdomen.v1.adl +321 -0
- data/spec/lib/openehr/parser/adl14/openEHR-EHR-CLUSTER.exam-chest.v1.adl +379 -0
- data/spec/lib/openehr/parser/adl14/openEHR-EHR-CLUSTER.exam-fetus.v1.adl +577 -0
- data/spec/lib/openehr/parser/adl14/openEHR-EHR-CLUSTER.exam-generic-joint.v1.adl +146 -0
- data/spec/lib/openehr/parser/adl14/openEHR-EHR-CLUSTER.exam-generic-lymphnode.v1.adl +176 -0
- data/spec/lib/openehr/parser/adl14/openEHR-EHR-CLUSTER.exam-generic-mass.v1.adl +221 -0
- data/spec/lib/openehr/parser/adl14/openEHR-EHR-CLUSTER.exam-generic.v1.adl +139 -0
- data/spec/lib/openehr/parser/adl14/openEHR-EHR-CLUSTER.exam-nervous_system.v1.adl +116 -0
- data/spec/lib/openehr/parser/adl14/openEHR-EHR-CLUSTER.exam-uterine_cervix.v1.adl +420 -0
- data/spec/lib/openehr/parser/adl14/openEHR-EHR-CLUSTER.exam-uterus.v1.adl +293 -0
- data/spec/lib/openehr/parser/adl14/openEHR-EHR-COMPOSITION.discharge.v1draft.adl +53 -0
- data/spec/lib/openehr/parser/adl14/openEHR-EHR-COMPOSITION.encounter.v1draft.adl +45 -0
- data/spec/lib/openehr/parser/adl14/openEHR-EHR-EVALUATION.adverse.v1.adl +411 -0
- data/spec/lib/openehr/parser/adl14/openEHR-EHR-EVALUATION.columna_vertebral.v1.adl +85 -0
- data/spec/lib/openehr/parser/adl14/openEHR-EHR-INSTRUCTION.medication.v1.adl +88 -0
- data/spec/lib/openehr/parser/adl14/openEHR-EHR-INSTRUCTION.referral.v1.adl +84 -0
- data/spec/lib/openehr/parser/adl14/openEHR-EHR-ITEM_TREE.Laboratory_request.v1.adl +492 -0
- data/spec/lib/openehr/parser/adl14/openEHR-EHR-ITEM_TREE.follow_up.v1draft.adl +94 -0
- data/spec/lib/openehr/parser/adl14/openEHR-EHR-ITEM_TREE.imaging.v1.adl +127 -0
- data/spec/lib/openehr/parser/adl14/openEHR-EHR-ITEM_TREE.medication-formulation.v1.adl +457 -0
- data/spec/lib/openehr/parser/adl14/openEHR-EHR-ITEM_TREE.medication.v1.adl +869 -0
- data/spec/lib/openehr/parser/adl14/openEHR-EHR-ITEM_TREE.referral.v1.adl +494 -0
- data/spec/lib/openehr/parser/adl14/openEHR-EHR-OBSERVATION.apgar.v1.adl +545 -0
- data/spec/lib/openehr/parser/adl14/openEHR-EHR-OBSERVATION.blood_pressure.v1.adl +673 -0
- data/spec/lib/openehr/parser/adl14/openEHR-EHR-OBSERVATION.body_mass_index.v1.adl +166 -0
- data/spec/lib/openehr/parser/adl14/openEHR-EHR-OBSERVATION.lab_test.v1.adl +376 -0
- data/spec/lib/openehr/parser/adl14/openEHR-EHR-OBSERVATION.testassumedvalue.v1.adl +99 -0
- data/spec/lib/openehr/parser/adl14/openEHR-EHR-SECTION.findings.v1.adl +47 -0
- data/spec/lib/openehr/parser/adl14/openEHR-EHR-SECTION.reason_for_encounter.v1.adl +51 -0
- data/spec/lib/openehr/parser/adl14/openEHR-EHR-SECTION.summary.v1.adl +52 -0
- data/spec/lib/openehr/parser/adl14/openEHR-EHR-SECTION.vital_signs.v1.adl +54 -0
- data/spec/lib/openehr/parser/adl_archetype_internal_ref2_spec.rb +42 -0
- data/spec/lib/openehr/parser/adl_archetype_internal_ref_spec.rb +125 -0
- data/spec/lib/openehr/parser/adl_archetype_internal_ref_with_generics_spec.rb +258 -0
- data/spec/lib/openehr/parser/adl_archetype_ontology_binding_spec.rb +98 -0
- data/spec/lib/openehr/parser/adl_archetype_ontology_spec.rb +42 -0
- data/spec/lib/openehr/parser/adl_archetype_slot_cluster_spec.rb +101 -0
- data/spec/lib/openehr/parser/adl_archetype_slot_spec.rb +193 -0
- data/spec/lib/openehr/parser/adl_archetype_uncommon_term_keys_spec.rb +25 -0
- data/spec/lib/openehr/parser/adl_description_spec.rb +164 -0
- data/spec/lib/openehr/parser/adl_identification_spec.rb +18 -0
- data/spec/lib/openehr/parser/adl_language_no_accreditation_spec.rb +66 -0
- data/spec/lib/openehr/parser/adl_language_order_spec.rb +68 -0
- data/spec/lib/openehr/parser/adl_language_spec.rb +119 -0
- data/spec/lib/openehr/parser/adl_language_translation_author_language_spec.rb +50 -0
- data/spec/lib/openehr/parser/adl_language_translation_language_author_spec.rb +46 -0
- data/spec/lib/openehr/parser/adl_parser_spec.rb +347 -0
- data/spec/lib/openehr/parser/adl_path_spec.rb +176 -0
- data/spec/lib/openehr/parser/base_spec.rb +19 -0
- data/spec/lib/openehr/parser/basic_generic_type_spec.rb +18 -0
- data/spec/lib/openehr/parser/basic_type_spec.rb +2922 -0
- data/spec/lib/openehr/parser/c_dv_quantity_any_allowed_spec.rb +34 -0
- data/spec/lib/openehr/parser/c_dv_quantity_shared_example_for_lacked_items_spec.rb +36 -0
- data/spec/lib/openehr/parser/c_dv_quantity_shared_example_spec.rb +146 -0
- data/spec/lib/openehr/parser/cdv_ordinal_parse_spec.rb +231 -0
- data/spec/lib/openehr/parser/code_phrase_spec.rb +96 -0
- data/spec/lib/openehr/parser/constraint_binding_spec.rb +26 -0
- data/spec/lib/openehr/parser/constraint_ref_spec.rb +32 -0
- data/spec/lib/openehr/parser/date_time_spec.rb +1953 -0
- data/spec/lib/openehr/parser/duration_spec.rb +475 -0
- data/spec/lib/openehr/parser/dv_coded_text_parse_spec.rb +27 -0
- data/spec/lib/openehr/parser/empty_other_contributors_spec.rb +19 -0
- data/spec/lib/openehr/parser/lab_test_parser_spec.rb +14 -0
- data/spec/lib/openehr/parser/missing_language_spec.rb +20 -0
- data/spec/lib/openehr/parser/missing_purpose_spec.rb +23 -0
- data/spec/lib/openehr/parser/mixed_node_types_spec.rb +16 -0
- data/spec/lib/openehr/parser/most_minimal_adl_spec.rb +19 -0
- data/spec/lib/openehr/parser/multi_language_spec.rb +58 -0
- data/spec/lib/openehr/parser/parser_spec_helper.rb +7 -0
- data/spec/lib/openehr/parser/path_based_terminology_binding_spec.rb +30 -0
- data/spec/lib/openehr/parser/special_string_spec.rb +20 -0
- data/spec/lib/openehr/parser/structure_comment_spec.rb +21 -0
- data/spec/lib/openehr/parser/structure_nested_comments_spec.rb +22 -0
- data/spec/lib/openehr/parser/structure_spec.rb +202 -0
- data/spec/lib/openehr/parser/term_binding_spec.rb +54 -0
- data/spec/lib/openehr/parser/unicode_bom_spec.rb +17 -0
- data/spec/lib/openehr/parser/unicode_support_spec.rb +46 -0
- data/spec/lib/openehr/rm/common/archetyped/archetyped_spec.rb +50 -0
- data/spec/lib/openehr/rm/common/archetyped/feeder_audit_details_spec.rb +60 -0
- data/spec/lib/openehr/rm/common/archetyped/feeder_audit_spec.rb +51 -0
- data/spec/lib/openehr/rm/common/archetyped/link_spec.rb +42 -0
- data/spec/lib/openehr/rm/common/archetyped/locatable_spec.rb +89 -0
- data/spec/lib/openehr/rm/common/archetyped/pathable_spec.rb +42 -0
- data/spec/lib/openehr/rm/common/change_control/contribution_spec.rb +56 -0
- data/spec/lib/openehr/rm/common/change_control/imported_version_spec.rb +62 -0
- data/spec/lib/openehr/rm/common/change_control/original_version_spec.rb +71 -0
- data/spec/lib/openehr/rm/common/change_control/version_spec.rb +91 -0
- data/spec/lib/openehr/rm/common/change_control/versioned_object_spec.rb +284 -0
- data/spec/lib/openehr/rm/common/directory/folder_spec.rb +26 -0
- data/spec/lib/openehr/rm/common/generic/attestation_spec.rb +62 -0
- data/spec/lib/openehr/rm/common/generic/audit_details_spec.rb +51 -0
- data/spec/lib/openehr/rm/common/generic/participation_spec.rb +36 -0
- data/spec/lib/openehr/rm/common/generic/party_identified_spec.rb +64 -0
- data/spec/lib/openehr/rm/common/generic/party_proxy_spec.rb +18 -0
- data/spec/lib/openehr/rm/common/generic/party_related_spec.rb +24 -0
- data/spec/lib/openehr/rm/common/generic/revision_history_item_spec.rb +43 -0
- data/spec/lib/openehr/rm/common/generic/revision_history_spec.rb +45 -0
- data/spec/lib/openehr/rm/common/resource/authored_resource_spec.rb +68 -0
- data/spec/lib/openehr/rm/common/resource/resource_description_item_spec.rb +105 -0
- data/spec/lib/openehr/rm/common/resource/resource_description_spec.rb +74 -0
- data/spec/lib/openehr/rm/common/resource/translation_details_spec.rb +35 -0
- data/spec/lib/openehr/rm/composition/composition_spec.rb +92 -0
- data/spec/lib/openehr/rm/composition/content/content_item_spec.rb +14 -0
- data/spec/lib/openehr/rm/composition/content/entry/action_spec.rb +69 -0
- data/spec/lib/openehr/rm/composition/content/entry/activity_spec.rb +61 -0
- data/spec/lib/openehr/rm/composition/content/entry/admin_entry_spec.rb +38 -0
- data/spec/lib/openehr/rm/composition/content/entry/care_entry_spec.rb +37 -0
- data/spec/lib/openehr/rm/composition/content/entry/entry_spec.rb +98 -0
- data/spec/lib/openehr/rm/composition/content/entry/evaluation_spec.rb +37 -0
- data/spec/lib/openehr/rm/composition/content/entry/instruction_details_spec.rb +51 -0
- data/spec/lib/openehr/rm/composition/content/entry/instruction_spec.rb +62 -0
- data/spec/lib/openehr/rm/composition/content/entry/ism_transition_spec.rb +46 -0
- data/spec/lib/openehr/rm/composition/content/entry/observation_spec.rb +45 -0
- data/spec/lib/openehr/rm/composition/content/navigation/section_spec.rb +32 -0
- data/spec/lib/openehr/rm/composition/event_context_spec.rb +88 -0
- data/spec/lib/openehr/rm/data_structures/data_structure_spec.rb +21 -0
- data/spec/lib/openehr/rm/data_structures/history/event_spec.rb +44 -0
- data/spec/lib/openehr/rm/data_structures/history/history_spec.rb +67 -0
- data/spec/lib/openehr/rm/data_structures/history/interval_event_spec.rb +43 -0
- data/spec/lib/openehr/rm/data_structures/item_structure/item_list_spec.rb +53 -0
- data/spec/lib/openehr/rm/data_structures/item_structure/item_single_spec.rb +29 -0
- data/spec/lib/openehr/rm/data_structures/item_structure/item_table_spec.rb +147 -0
- data/spec/lib/openehr/rm/data_structures/item_structure/item_tree_spec.rb +48 -0
- data/spec/lib/openehr/rm/data_structures/item_structure/representation/cluster_spec.rb +26 -0
- data/spec/lib/openehr/rm/data_structures/item_structure/representation/element_spec.rb +22 -0
- data/spec/lib/openehr/rm/data_types/basic/data_value_spec.rb +17 -0
- data/spec/lib/openehr/rm/data_types/basic/dv_boolean_spec.rb +29 -0
- data/spec/lib/openehr/rm/data_types/basic/dv_identifier_spec.rb +108 -0
- data/spec/lib/openehr/rm/data_types/basic/dv_state_spec.rb +44 -0
- data/spec/lib/openehr/rm/data_types/encapsulated/dv_encapsulated_spec.rb +42 -0
- data/spec/lib/openehr/rm/data_types/encapsulated/dv_multimedia_spec.rb +79 -0
- data/spec/lib/openehr/rm/data_types/encapsulated/dv_parsable_spec.rb +34 -0
- data/spec/lib/openehr/rm/data_types/quantity/date_time/dv_date_spec.rb +64 -0
- data/spec/lib/openehr/rm/data_types/quantity/date_time/dv_date_time_spec.rb +26 -0
- data/spec/lib/openehr/rm/data_types/quantity/date_time/dv_duration_spec.rb +44 -0
- data/spec/lib/openehr/rm/data_types/quantity/date_time/dv_temporal_spec.rb +25 -0
- data/spec/lib/openehr/rm/data_types/quantity/date_time/dv_time_spec.rb +41 -0
- data/spec/lib/openehr/rm/data_types/quantity/dv_absolute_quantity_spec.rb +35 -0
- data/spec/lib/openehr/rm/data_types/quantity/dv_amount_spec.rb +105 -0
- data/spec/lib/openehr/rm/data_types/quantity/dv_count_spec.rb +12 -0
- data/spec/lib/openehr/rm/data_types/quantity/dv_interval_spec.rb +17 -0
- data/spec/lib/openehr/rm/data_types/quantity/dv_ordered_spec.rb +60 -0
- data/spec/lib/openehr/rm/data_types/quantity/dv_ordinal_spec.rb +74 -0
- data/spec/lib/openehr/rm/data_types/quantity/dv_proportion_spec.rb +162 -0
- data/spec/lib/openehr/rm/data_types/quantity/dv_quantified_spec.rb +36 -0
- data/spec/lib/openehr/rm/data_types/quantity/dv_quantity_spec.rb +78 -0
- data/spec/lib/openehr/rm/data_types/quantity/proportion_kind_spec.rb +24 -0
- data/spec/lib/openehr/rm/data_types/quantity/reference_range_spec.rb +43 -0
- data/spec/lib/openehr/rm/data_types/text/code_phrase_spec.rb +23 -0
- data/spec/lib/openehr/rm/data_types/text/dv_paragraph_spec.rb +13 -0
- data/spec/lib/openehr/rm/data_types/text/dv_text_spec.rb +79 -0
- data/spec/lib/openehr/rm/data_types/text/term_mapping_spec.rb +59 -0
- data/spec/lib/openehr/rm/data_types/uri/dv_ehr_uri_spec.rb +21 -0
- data/spec/lib/openehr/rm/data_types/uri/dv_uri_spec.rb +36 -0
- data/spec/lib/openehr/rm/demographic/actor_spec.rb +79 -0
- data/spec/lib/openehr/rm/demographic/address_spec.rb +33 -0
- data/spec/lib/openehr/rm/demographic/capability_spec.rb +37 -0
- data/spec/lib/openehr/rm/demographic/contact_spec.rb +45 -0
- data/spec/lib/openehr/rm/demographic/party_identity_spec.rb +32 -0
- data/spec/lib/openehr/rm/demographic/party_relationship_spec.rb +84 -0
- data/spec/lib/openehr/rm/demographic/party_spec.rb +131 -0
- data/spec/lib/openehr/rm/demographic/role_spec.rb +58 -0
- data/spec/lib/openehr/rm/ehr/ehr_access_spec.rb +33 -0
- data/spec/lib/openehr/rm/ehr/ehr_spec.rb +139 -0
- data/spec/lib/openehr/rm/ehr/ehr_status_spec.rb +52 -0
- data/spec/lib/openehr/rm/ehr/versioned_composition_spec.rb +33 -0
- data/spec/lib/openehr/rm/integration/generic_entry_spec.rb +31 -0
- data/spec/lib/openehr/rm/support/identification/access_group_ref_spec.rb +19 -0
- data/spec/lib/openehr/rm/support/identification/archetype_id_spec.rb +152 -0
- data/spec/lib/openehr/rm/support/identification/generic_id_spec.rb +33 -0
- data/spec/lib/openehr/rm/support/identification/hier_object_id_spec.rb +12 -0
- data/spec/lib/openehr/rm/support/identification/internet_id_spec.rb +12 -0
- data/spec/lib/openehr/rm/support/identification/iso_oid_spec.rb +12 -0
- data/spec/lib/openehr/rm/support/identification/locatable_ref_spec.rb +34 -0
- data/spec/lib/openehr/rm/support/identification/object_id_spec.rb +24 -0
- data/spec/lib/openehr/rm/support/identification/object_ref_spec.rb +33 -0
- data/spec/lib/openehr/rm/support/identification/object_version_id_spec.rb +59 -0
- data/spec/lib/openehr/rm/support/identification/party_ref_spec.rb +29 -0
- data/spec/lib/openehr/rm/support/identification/template_id_spec.rb +12 -0
- data/spec/lib/openehr/rm/support/identification/terminology_id_spec.rb +33 -0
- data/spec/lib/openehr/rm/support/identification/uid_based_id_spec.rb +50 -0
- data/spec/lib/openehr/rm/support/identification/uid_spec.rb +29 -0
- data/spec/lib/openehr/rm/support/identification/version_tree_id_spec.rb +104 -0
- data/spec/lib/openehr/rm/support/measurement_service_spec.rb +7 -0
- data/spec/lib/openehr/rm/support/terminology_service_spec.rb +24 -0
- data/spec/lib/openehr/serializer/adl-test-entry.most_minimal.test.adl +20 -0
- data/spec/lib/openehr/serializer/adl_serializer_spec.rb +47 -0
- data/spec/lib/openehr/serializer/openEHR-EHR-SECTION.test.v1.adl +38 -0
- data/spec/lib/openehr/serializer/openEHR-EHR-SECTION.test.v1.xml +58 -0
- data/spec/lib/openehr/serializer/sample_archetype_spec.rb +44 -0
- data/spec/lib/openehr/serializer/xml_serializer_spec.rb +49 -0
- data/spec/lib/openehr/terminology/open_ehr_terminology_spec.rb +40 -0
- data/spec/spec.opts +6 -0
- data/spec/spec_helper.rb +58 -0
- metadata +631 -0
@@ -0,0 +1,56 @@
|
|
1
|
+
require File.dirname(__FILE__) + '/../../../../../spec_helper'
|
2
|
+
include OpenEHR::RM::Common::ChangeControl
|
3
|
+
include OpenEHR::RM::DataTypes::Text
|
4
|
+
|
5
|
+
describe Contribution do
|
6
|
+
before(:each) do
|
7
|
+
uid = HierObjectID.new(:value => 'ABC::DEF::2')
|
8
|
+
versions = stub(Set, :size => 2, :empty? => false)
|
9
|
+
description = DvText.new(:value => 'test')
|
10
|
+
audit = stub(AuditDetails, :empty? => false, :description => description)
|
11
|
+
@contribution = Contribution.new(:uid => uid,
|
12
|
+
:versions => versions,
|
13
|
+
:audit => audit)
|
14
|
+
end
|
15
|
+
|
16
|
+
it 'should be an instance of Contribution' do
|
17
|
+
@contribution.should be_an_instance_of Contribution
|
18
|
+
end
|
19
|
+
|
20
|
+
it 'uid.value should be ABC::DEF::2' do
|
21
|
+
@contribution.uid.value.should == 'ABC::DEF::2'
|
22
|
+
end
|
23
|
+
|
24
|
+
it 'audit.description should test' do
|
25
|
+
@contribution.audit.description.value.should == 'test'
|
26
|
+
end
|
27
|
+
|
28
|
+
it 'versions size should be 2' do
|
29
|
+
@contribution.versions.size.should == 2
|
30
|
+
end
|
31
|
+
|
32
|
+
it 'should raise ArgumentError when version is empty' do
|
33
|
+
lambda {
|
34
|
+
@contribution.versions = Set.new
|
35
|
+
}.should raise_error ArgumentError
|
36
|
+
end
|
37
|
+
|
38
|
+
it 'should raise ArgumentError when uid is nil' do
|
39
|
+
lambda {
|
40
|
+
@contribution.uid = nil
|
41
|
+
}.should raise_error ArgumentError
|
42
|
+
end
|
43
|
+
|
44
|
+
it 'should raise ArgumentError audit is nil' do
|
45
|
+
lambda {
|
46
|
+
@contribution.audit = nil
|
47
|
+
}.should raise_error ArgumentError
|
48
|
+
end
|
49
|
+
|
50
|
+
it 'shoudl raise ArgumentError audit.description is empty' do
|
51
|
+
nil_audit = stub(AuditDetails, :description => nil)
|
52
|
+
lambda {
|
53
|
+
@contribution.audit = nil_audit
|
54
|
+
}.should raise_error ArgumentError
|
55
|
+
end
|
56
|
+
end
|
@@ -0,0 +1,62 @@
|
|
1
|
+
require File.dirname(__FILE__) + '/../../../../../spec_helper'
|
2
|
+
#require File.dirname(__FILE__) + '/shared_examples_spec'
|
3
|
+
include OpenEHR::RM::Common::ChangeControl
|
4
|
+
include OpenEHR::RM::DataTypes::Text
|
5
|
+
require 'set'
|
6
|
+
|
7
|
+
describe ImportedVersion do
|
8
|
+
# it_should_behave_like 'change_control'
|
9
|
+
|
10
|
+
before(:each) do
|
11
|
+
uid = ObjectVersionID.new(:value => 'ABCD::EFG::2')
|
12
|
+
preceding_version_uid = ObjectVersionID.new(:value => 'HIJ::KLM::1')
|
13
|
+
commit_audit = stub(AuditDetails, :committer => 'UNKNOWN', :empty? => false)
|
14
|
+
contribution = ObjectRef.new(:namespace => 'local',
|
15
|
+
:type => 'CONTRIBUTION',
|
16
|
+
:id => object_id)
|
17
|
+
defining_code = stub(CodePhrase, :code_string => '532')
|
18
|
+
lifecycle_state = stub(DvCodedText, :defining_code => defining_code)
|
19
|
+
signature = '4760271533c2866579dde347ad28dd79e4aad933'
|
20
|
+
@version = Version.new(:uid => uid,
|
21
|
+
:preceding_version_uid => preceding_version_uid,
|
22
|
+
:data => 'data',
|
23
|
+
:contribution => contribution,
|
24
|
+
:lifecycle_state => lifecycle_state,
|
25
|
+
:commit_audit => commit_audit,
|
26
|
+
:signature => signature)
|
27
|
+
attestations = stub(Array, :empty? => false, :size => 12)
|
28
|
+
other_input_version_uids = stub(Set, :empty? => false, :size => 5)
|
29
|
+
@original_version = OriginalVersion.new(:uid => uid,
|
30
|
+
:lifecycle_state => lifecycle_state,
|
31
|
+
:attestations => attestations,
|
32
|
+
:commit_audit => commit_audit,
|
33
|
+
:contribution => contribution,
|
34
|
+
:other_input_version_uids => other_input_version_uids,
|
35
|
+
:preceding_version_uid => preceding_version_uid)
|
36
|
+
@imported_version = ImportedVersion.new(:item => @original_version,
|
37
|
+
:commit_audit => commit_audit,
|
38
|
+
:contribution => contribution)
|
39
|
+
end
|
40
|
+
|
41
|
+
it 'should be an instance of ImportedVersion' do
|
42
|
+
@imported_version.should be_an_instance_of ImportedVersion
|
43
|
+
end
|
44
|
+
|
45
|
+
it 'uid should be item.uid' do
|
46
|
+
@imported_version.uid.value.should == 'ABCD::EFG::2'
|
47
|
+
end
|
48
|
+
|
49
|
+
it 'lifecycle_state should be item.lifecycle' do
|
50
|
+
@imported_version.lifecycle_state.defining_code.code_string.should == '532'
|
51
|
+
end
|
52
|
+
|
53
|
+
it 'preceding_version_uid should be item.preceding_version_uid' do
|
54
|
+
@imported_version.preceding_version_uid.value.should == 'HIJ::KLM::1'
|
55
|
+
end
|
56
|
+
|
57
|
+
it 'should raise ArgumentError when item is nil' do
|
58
|
+
lambda {
|
59
|
+
@imported_version.item = nil
|
60
|
+
}.should raise_error ArgumentError
|
61
|
+
end
|
62
|
+
end
|
@@ -0,0 +1,71 @@
|
|
1
|
+
require File.dirname(__FILE__) + '/../../../../../spec_helper'
|
2
|
+
#require File.dirname(__FILE__) + '/shared_examples_spec'
|
3
|
+
require 'set'
|
4
|
+
include OpenEHR::RM::Common::ChangeControl
|
5
|
+
include OpenEHR::RM::DataTypes::Text
|
6
|
+
|
7
|
+
describe OriginalVersion do
|
8
|
+
# it_should_behave_like 'change_control'
|
9
|
+
|
10
|
+
before(:each) do
|
11
|
+
uid = ObjectVersionID.new(:value => 'ABCD::EFG::2')
|
12
|
+
preceding_version_uid = ObjectVersionID.new(:value => 'HIJ::KLM::1')
|
13
|
+
commit_audit = stub(AuditDetails, :committer => 'UNKNOWN', :empty? => false)
|
14
|
+
objectid = stub(ObjectID, :value => 'unique')
|
15
|
+
contribution = ObjectRef.new(:namespace => 'local',
|
16
|
+
:type => 'CONTRIBUTION',
|
17
|
+
:id => objectid)
|
18
|
+
defining_code = stub(CodePhrase, :code_string => '532')
|
19
|
+
lifecycle_state = stub(DvCodedText, :defining_code => defining_code)
|
20
|
+
signature = '4760271533c2866579dde347ad28dd79e4aad933'
|
21
|
+
@version = Version.new(:uid => uid,
|
22
|
+
:preceding_version_uid => preceding_version_uid,
|
23
|
+
:data => 'data',
|
24
|
+
:contribution => contribution,
|
25
|
+
:lifecycle_state => lifecycle_state,
|
26
|
+
:commit_audit => commit_audit,
|
27
|
+
:signature => signature)
|
28
|
+
attestations = stub(Array, :empty? => false, :size => 12)
|
29
|
+
other_input_version_uids = stub(Set, :empty? => false, :size => 5)
|
30
|
+
@original_version = OriginalVersion.new(:uid => uid,
|
31
|
+
:lifecycle_state => lifecycle_state,
|
32
|
+
:attestations => attestations,
|
33
|
+
:commit_audit => commit_audit,
|
34
|
+
:contribution => contribution,
|
35
|
+
:other_input_version_uids => other_input_version_uids,
|
36
|
+
:preceding_version_uid => preceding_version_uid)
|
37
|
+
end
|
38
|
+
|
39
|
+
it 'should be an isntance of OriginalVersion' do
|
40
|
+
@original_version.should be_an_instance_of OriginalVersion
|
41
|
+
end
|
42
|
+
|
43
|
+
it 'attestation size should be 12' do
|
44
|
+
@original_version.attestations.size.should == 12
|
45
|
+
end
|
46
|
+
|
47
|
+
it 'other_version_input_uids size should be 5' do
|
48
|
+
@original_version.other_input_version_uids.size.should == 5
|
49
|
+
end
|
50
|
+
|
51
|
+
it 'is_merged? should be true when other_input_version_uids is nil' do
|
52
|
+
@original_version.is_merged?.should be_true
|
53
|
+
end
|
54
|
+
|
55
|
+
it 'is_merged? should not be true when other_input_version_uids is not nil' do
|
56
|
+
@original_version.other_input_version_uids = nil
|
57
|
+
@original_version.is_merged?.should be_false
|
58
|
+
end
|
59
|
+
|
60
|
+
it 'should raise ArgumentError when attestations is nil' do
|
61
|
+
lambda {
|
62
|
+
@original_version.attestations = nil
|
63
|
+
}.should raise_error ArgumentError
|
64
|
+
end
|
65
|
+
|
66
|
+
it 'should raise ArgumentError when other_input_version_uids is empty' do
|
67
|
+
lambda {
|
68
|
+
@original_version.other_input_version_uids = Set.new
|
69
|
+
}.should raise_error ArgumentError
|
70
|
+
end
|
71
|
+
end
|
@@ -0,0 +1,91 @@
|
|
1
|
+
require File.dirname(__FILE__) + '/../../../../../spec_helper'
|
2
|
+
#require File.dirname(__FILE__) + '/shared_examples_spec'
|
3
|
+
include OpenEHR::RM::Common::ChangeControl
|
4
|
+
include OpenEHR::RM::Common::Generic
|
5
|
+
include OpenEHR::RM::DataTypes::Text
|
6
|
+
|
7
|
+
describe Version do
|
8
|
+
# it_should_behave_like 'change_control'
|
9
|
+
before(:each) do
|
10
|
+
uid = ObjectVersionID.new(:value => 'ABCD::EFG::2')
|
11
|
+
preceding_version_uid = ObjectVersionID.new(:value => 'HIJ::KLM::1')
|
12
|
+
commit_audit = stub(AuditDetails, :committer => 'UNKNOWN', :empty? => false)
|
13
|
+
contribution = ObjectRef.new(:namespace => 'local',
|
14
|
+
:type => 'CONTRIBUTION',
|
15
|
+
:id => object_id)
|
16
|
+
defining_code = stub(CodePhrase, :code_string => '532')
|
17
|
+
lifecycle_state = stub(DvCodedText, :defining_code => defining_code)
|
18
|
+
signature = '4760271533c2866579dde347ad28dd79e4aad933'
|
19
|
+
@version = Version.new(:uid => uid,
|
20
|
+
:preceding_version_uid => preceding_version_uid,
|
21
|
+
:data => 'data',
|
22
|
+
:contribution => contribution,
|
23
|
+
:lifecycle_state => lifecycle_state,
|
24
|
+
:commit_audit => commit_audit,
|
25
|
+
:signature => signature)
|
26
|
+
end
|
27
|
+
|
28
|
+
|
29
|
+
it 'should be an instance of Version' do
|
30
|
+
@version.should be_an_instance_of Version
|
31
|
+
end
|
32
|
+
|
33
|
+
it 'uid value should be ABCD::EFG::1' do
|
34
|
+
@version.uid.value.should == 'ABCD::EFG::2'
|
35
|
+
end
|
36
|
+
|
37
|
+
it 'commit_audit.committer.should be UNKNOWN' do
|
38
|
+
@version.commit_audit.committer.should == 'UNKNOWN'
|
39
|
+
end
|
40
|
+
|
41
|
+
it 'lifecycle_state should be 532' do
|
42
|
+
@version.lifecycle_state.defining_code.code_string.should == '532'
|
43
|
+
end
|
44
|
+
|
45
|
+
it 'contribution namespece should be local' do
|
46
|
+
@version.contribution.namespace.should == 'local'
|
47
|
+
end
|
48
|
+
|
49
|
+
it 'contribution type should be CONTRIBUTION' do
|
50
|
+
contribution = @version.contribution
|
51
|
+
contribution.type = 'PARTY'
|
52
|
+
lambda {
|
53
|
+
@version.contribution = contribution
|
54
|
+
}.should raise_error ArgumentError
|
55
|
+
end
|
56
|
+
|
57
|
+
it 'signature should be 4760271533c2866579dde347ad28dd79e4aad933' do
|
58
|
+
@version.signature.should == '4760271533c2866579dde347ad28dd79e4aad933'
|
59
|
+
end
|
60
|
+
|
61
|
+
it 'should not be a branch' do
|
62
|
+
@version.is_branch?.should_not be true
|
63
|
+
end
|
64
|
+
|
65
|
+
it 'should be a branch' do
|
66
|
+
@version.uid.value = 'ABCD::EFG::1.2.3'
|
67
|
+
@version.is_branch?.should be true
|
68
|
+
end
|
69
|
+
|
70
|
+
it 'data should be data' do
|
71
|
+
@version.data.should == 'data'
|
72
|
+
end
|
73
|
+
|
74
|
+
it 'owner_id value should be ABCD::EFG::2' do
|
75
|
+
@version.owner_id.value.should == 'ABCD::EFG::2'
|
76
|
+
end
|
77
|
+
|
78
|
+
it 'canonical form is not well determined' do
|
79
|
+
lambda {
|
80
|
+
@version.canonical_form
|
81
|
+
}.should raise_error NotImplementedError
|
82
|
+
end
|
83
|
+
|
84
|
+
it 'should raise ArgumentError when preceding version id exists and uid version tree is first' do
|
85
|
+
@version.uid.value = 'ABC::DEF::1'
|
86
|
+
preceding_version_uid = ObjectVersionID.new(:value => 'GHI::JKL::2')
|
87
|
+
lambda {
|
88
|
+
@version.preceding_version_uid = preceding_version_uid
|
89
|
+
}.should raise_error ArgumentError
|
90
|
+
end
|
91
|
+
end
|
@@ -0,0 +1,284 @@
|
|
1
|
+
require File.dirname(__FILE__) + '/../../../../../spec_helper'
|
2
|
+
#require File.dirname(__FILE__) + '/shared_examples_spec'
|
3
|
+
include OpenEHR::RM::Common::ChangeControl
|
4
|
+
include OpenEHR::RM::Common::Generic
|
5
|
+
include OpenEHR::RM::DataTypes::Quantity::DateTime
|
6
|
+
include OpenEHR::RM::DataTypes::Text
|
7
|
+
|
8
|
+
describe VersionedObject do
|
9
|
+
before(:each) do
|
10
|
+
uid1 = ObjectVersionID.new(:value => 'ABC::DEF::1')
|
11
|
+
defining_code1 = stub(CodePhrase, :code_string => '532')
|
12
|
+
lifecycle_state1 = stub(DvCodedText, :defining_code => defining_code1)
|
13
|
+
time_committed1 = DvDateTime.new(:value => '2008-11-12T18:24:32')
|
14
|
+
audit_details1 = stub(AuditDetails, :time_committed => time_committed1)
|
15
|
+
version1 = stub(Version, :commit_audit => audit_details1,
|
16
|
+
:lifecycle_state => lifecycle_state1,
|
17
|
+
:uid => uid1)
|
18
|
+
uid2 = ObjectVersionID.new(:value => 'GHI::JKL::2')
|
19
|
+
defining_code2 = stub(CodePhrase, :code_string => '553')
|
20
|
+
lifecycle_state2 = stub(DvCodedText, :defining_code => defining_code2)
|
21
|
+
time_committed2 = DvDateTime.new(:value => '2008-12-12T19:32:14')
|
22
|
+
audit_details2 = stub(AuditDetails, :time_committed => time_committed2)
|
23
|
+
attestation = stub(Attestation)
|
24
|
+
attestations = Array.new([attestation])
|
25
|
+
contribution = stub(ObjectRef, :empty? => false, :type => 'CONTRIBUTION')
|
26
|
+
version2 = OriginalVersion.new(:commit_audit => audit_details2,
|
27
|
+
:lifecycle_state => lifecycle_state2,
|
28
|
+
:preceding_version_uid => uid1,
|
29
|
+
:uid => uid2,
|
30
|
+
:contribution => contribution,
|
31
|
+
:attestations => attestations)
|
32
|
+
uid3 = ObjectVersionID.new(:value => 'MNO::PQR::3')
|
33
|
+
defining_code3 = stub(CodePhrase, :code_string => '523')
|
34
|
+
lifecycle_state3 = stub(DvCodedText, :defining_code => defining_code3)
|
35
|
+
time_committed3 = DvDateTime.new(:value => '2009-07-15T09:24:26')
|
36
|
+
audit_details3 = stub(AuditDetails, :time_committed => time_committed3)
|
37
|
+
version3 = stub(Version, :commit_audit => audit_details3,
|
38
|
+
:lifecycle_state => lifecycle_state3,
|
39
|
+
:uid => uid3)
|
40
|
+
uid = HierObjectID.new(:value => 'STU::VWX::5')
|
41
|
+
owner_id = stub(ObjectRef, :namespace => 'test')
|
42
|
+
time_created = DvDateTime.new(:value => '2009-11-09T09:53:22')
|
43
|
+
all_versions = [version1, version2, version3]
|
44
|
+
@versioned_object = VersionedObject.new(:uid => uid,
|
45
|
+
:owner_id => owner_id,
|
46
|
+
:time_created => time_created,
|
47
|
+
:all_versions => all_versions)
|
48
|
+
end
|
49
|
+
|
50
|
+
it 'should be an instance of VersionedObject' do
|
51
|
+
@versioned_object.should be_an_instance_of VersionedObject
|
52
|
+
end
|
53
|
+
|
54
|
+
it 'uid value should be STU::VWX::5' do
|
55
|
+
@versioned_object.uid.value.should == 'STU::VWX::5'
|
56
|
+
end
|
57
|
+
|
58
|
+
it 'owner_id namespace should be test' do
|
59
|
+
@versioned_object.owner_id.namespace.should == 'test'
|
60
|
+
end
|
61
|
+
|
62
|
+
it 'all_versions.size should be 3' do
|
63
|
+
@versioned_object.all_versions.size.should == 3
|
64
|
+
end
|
65
|
+
|
66
|
+
it 'version_count should be 3' do
|
67
|
+
@versioned_object.version_count.should == 3
|
68
|
+
end
|
69
|
+
|
70
|
+
it 'time_created should equal 2009-11-09T09:53:22' do
|
71
|
+
@versioned_object.time_created.value.should == '2009-11-09T09:53:22'
|
72
|
+
end
|
73
|
+
|
74
|
+
it 'all_version_ids should return all ids of versions' do
|
75
|
+
ids = @versioned_object.all_version_ids
|
76
|
+
ids.each do |id|
|
77
|
+
%w(ABC::DEF::1 GHI::JKL::2 MNO::PQR::3).should include id.value
|
78
|
+
end
|
79
|
+
end
|
80
|
+
|
81
|
+
it 'should have version id ABC::DEF::1' do
|
82
|
+
object_version_id = ObjectVersionID.new(:value => 'ABC::DEF::1')
|
83
|
+
@versioned_object.has_version_id?(object_version_id).should be_true
|
84
|
+
end
|
85
|
+
|
86
|
+
it 'should not have version id BCD::EFG::12' do
|
87
|
+
object_version_id = ObjectVersionID.new(:value => 'BCD::EFG::12')
|
88
|
+
@versioned_object.has_version_id?(object_version_id).should be_false
|
89
|
+
end
|
90
|
+
|
91
|
+
it 'ABC::DEF::1 should not be original version' do
|
92
|
+
object_version_id = ObjectVersionID.new(:value => 'ABC::DEF::1')
|
93
|
+
@versioned_object.is_original_version?(object_version_id).should be_false
|
94
|
+
end
|
95
|
+
|
96
|
+
it 'GHI::JKL::2 should be original version' do
|
97
|
+
object_version_id = ObjectVersionID.new(:value => 'GHI::JKL::2')
|
98
|
+
@versioned_object.is_original_version?(object_version_id).should be_true
|
99
|
+
end
|
100
|
+
|
101
|
+
it 'should have 2009-07-15T09:24:26 committed version' do
|
102
|
+
exist_time = DvDateTime.new(:value => '2009-07-15T09:24:26')
|
103
|
+
@versioned_object.has_version_at_time?(exist_time).should be_true
|
104
|
+
end
|
105
|
+
|
106
|
+
it 'should retrun version3 with id MNO::PQR::3' do
|
107
|
+
uid = ObjectVersionID.new(:value => 'MNO::PQR::3')
|
108
|
+
@versioned_object.version_with_id(uid).commit_audit.time_committed.
|
109
|
+
should == DvDateTime.new(:value => '2009-07-15T09:24:26')
|
110
|
+
end
|
111
|
+
|
112
|
+
it 'should return version2 with 2008-12-12T19:32:14' do
|
113
|
+
exist_date = DvDateTime.new(:value => '2008-12-12T19:32:14')
|
114
|
+
@versioned_object.version_at_time(exist_date).lifecycle_state.
|
115
|
+
defining_code.code_string.should == '553'
|
116
|
+
end
|
117
|
+
|
118
|
+
it 'latest_version should return version3' do
|
119
|
+
@versioned_object.latest_version.uid.value.should == 'MNO::PQR::3'
|
120
|
+
end
|
121
|
+
|
122
|
+
it 'latest_trunk_version should return ABC::DEF::1' do
|
123
|
+
@versioned_object.latest_trunk_version.uid.value.should ==
|
124
|
+
'ABC::DEF::1'
|
125
|
+
end
|
126
|
+
|
127
|
+
it 'trunk_lifecycle_state should return 532' do
|
128
|
+
@versioned_object.trunk_lifecycle_state.defining_code.
|
129
|
+
code_string.should == '532'
|
130
|
+
end
|
131
|
+
|
132
|
+
it 'revision_history items are 3' do
|
133
|
+
@versioned_object.revision_history.items.size.should == 3
|
134
|
+
end
|
135
|
+
|
136
|
+
it 'should be able to commit original version' do
|
137
|
+
contribution = stub(ObjectRef, :empty? => false, :type => 'CONTRIBUTION')
|
138
|
+
uid = ObjectVersionID.new(:value => 'EFG::HIJ::7')
|
139
|
+
preceding_version_uid = ObjectVersionID.new(:value => 'ABC::DEF::1')
|
140
|
+
audit = stub(AuditDetails)
|
141
|
+
defining_code = stub(CodePhrase, :code_string => '523')
|
142
|
+
lifecycle_state = stub(DvCodedText, :defining_code => defining_code)
|
143
|
+
attestations = stub(Array, :empty? => false)
|
144
|
+
@versioned_object.
|
145
|
+
commit_original_version(:contribution => contribution,
|
146
|
+
:uid => uid,
|
147
|
+
:preceding_version_uid => preceding_version_uid,
|
148
|
+
:commit_audit => audit,
|
149
|
+
:lifecycle_state => lifecycle_state,
|
150
|
+
:data => 'data',
|
151
|
+
:attestations => attestations,
|
152
|
+
:signature => 'A41bdad')
|
153
|
+
@versioned_object.all_versions.size.should == 4
|
154
|
+
end
|
155
|
+
|
156
|
+
it 'should raise ArgumentError with invalid preceeding version' do
|
157
|
+
contribution = stub(ObjectRef, :empty? => false, :type => 'CONTRIBUTION')
|
158
|
+
uid = ObjectVersionID.new(:value => 'EFG::HIJ::7')
|
159
|
+
preceding_version_uid = ObjectVersionID.new(:value => 'BCD::EFG::8')
|
160
|
+
audit = stub(AuditDetails)
|
161
|
+
defining_code = stub(CodePhrase, :code_string => '523')
|
162
|
+
lifecycle_state = stub(DvCodedText, :defining_code => defining_code)
|
163
|
+
attestations = stub(Array, :empty? => false)
|
164
|
+
lambda {
|
165
|
+
@versioned_object.
|
166
|
+
commit_original_version(:contribution => contribution,
|
167
|
+
:uid => uid,
|
168
|
+
:preceding_version_uid => preceding_version_uid,
|
169
|
+
:commit_audit => audit,
|
170
|
+
:lifecycle_state => lifecycle_state,
|
171
|
+
:data => 'data',
|
172
|
+
:attestations => attestations,
|
173
|
+
:signature => 'A41bdad')
|
174
|
+
}.should raise_error ArgumentError
|
175
|
+
end
|
176
|
+
|
177
|
+
it 'should be able to commit original merged version' do
|
178
|
+
contribution = stub(ObjectRef, :empty? => false, :type => 'CONTRIBUTION')
|
179
|
+
uid = ObjectVersionID.new(:value => 'KLM::NOP::9')
|
180
|
+
preceding_version_uid = ObjectVersionID.new(:value => 'ABC::DEF::1')
|
181
|
+
time_committed = DvDateTime.new(:value => '2009-11-09T23:42:18')
|
182
|
+
audit = stub(AuditDetails, :time_committed => time_committed)
|
183
|
+
defining_code = stub(CodePhrase, :code_string => '523')
|
184
|
+
lifecycle_state = stub(DvCodedText, :defining_code => defining_code)
|
185
|
+
attestations = stub(Array, :empty? => false)
|
186
|
+
@versioned_object.
|
187
|
+
commit_original_merged_version(:contribution => contribution,
|
188
|
+
:uid => uid,
|
189
|
+
:preceding_version_uid => preceding_version_uid,
|
190
|
+
:commit_audit => audit,
|
191
|
+
:lifecycle_state => lifecycle_state,
|
192
|
+
:data => 'merged data',
|
193
|
+
:attestations => attestations,
|
194
|
+
:signature => 'dc3dbdad')
|
195
|
+
@versioned_object.latest_version.data.should == 'merged data'
|
196
|
+
end
|
197
|
+
|
198
|
+
it 'should be able to commit imported_version' do
|
199
|
+
contribution = stub(ObjectRef, :empty? => false, :type => 'CONTRIBUTION')
|
200
|
+
time_committed = DvDateTime.new(:value => '2009-11-09T23:42:18')
|
201
|
+
audit = stub(AuditDetails, :time_committed => time_committed)
|
202
|
+
uid = ObjectVersionID.new(:value => 'QRS::TUV::10')
|
203
|
+
preceding_version_uid = ObjectVersionID.new(:value => 'ABC::DEF::1')
|
204
|
+
defining_code = stub(CodePhrase, :code_string => '523')
|
205
|
+
lifecycle_state = stub(DvCodedText, :defining_code => defining_code)
|
206
|
+
attestations = stub(Array, :empty? => false)
|
207
|
+
original_version = OriginalVersion.new(:uid => uid,
|
208
|
+
:contribution => contribution,
|
209
|
+
:commit_audit => audit,
|
210
|
+
:preceding_version_uid => preceding_version_uid,
|
211
|
+
:data => 'original data',
|
212
|
+
:lifecycle_state => lifecycle_state,
|
213
|
+
:attestations => attestations)
|
214
|
+
@versioned_object.commit_imported_version(:contribution => contribution,
|
215
|
+
:commit_audit => audit,
|
216
|
+
:item => original_version)
|
217
|
+
@versioned_object.latest_version.commit_audit.time_committed.value.
|
218
|
+
should == '2009-11-09T23:42:18'
|
219
|
+
end
|
220
|
+
|
221
|
+
it 'should be able to commit attestation' do
|
222
|
+
attestation = stub(Attestation)
|
223
|
+
uid = ObjectVersionID.new(:value => 'GHI::JKL::2')
|
224
|
+
@versioned_object.commit_attestation(:attestation => attestation,
|
225
|
+
:uid => uid,
|
226
|
+
:signature => 'CDAEbad')
|
227
|
+
@versioned_object.version_with_id(uid).signature.
|
228
|
+
should == 'CDAEbad'
|
229
|
+
end
|
230
|
+
|
231
|
+
it 'should raise ArgumentError when time_created is nil' do
|
232
|
+
lambda {
|
233
|
+
@versioned_object.time_created = nil
|
234
|
+
}.should raise_error ArgumentError
|
235
|
+
end
|
236
|
+
|
237
|
+
it 'should raise ArgumentError when all_versions are nil' do
|
238
|
+
lambda {
|
239
|
+
@versioned_object.all_versions = nil
|
240
|
+
}.should raise_error ArgumentError
|
241
|
+
end
|
242
|
+
|
243
|
+
it 'should raise ArgumentError when is_original_version argument is nil' do
|
244
|
+
lambda {
|
245
|
+
@versioned_object.is_original_version?(nil)
|
246
|
+
}.should raise_error ArgumentError
|
247
|
+
end
|
248
|
+
|
249
|
+
it 'should not has time data' do
|
250
|
+
unexisted_time = DvDateTime.new(:value => '2009-11-10T00:43:59')
|
251
|
+
lambda {
|
252
|
+
@versioned_object.version_at_time(unexisted_time)
|
253
|
+
}.should raise_error ArgumentError
|
254
|
+
end
|
255
|
+
|
256
|
+
it 'should raise ArgumentError with nil argument to commit_attestations' do
|
257
|
+
lambda {
|
258
|
+
@versioned_object.commit_attestation(:attestation => nil)
|
259
|
+
}.should raise_error ArgumentError
|
260
|
+
end
|
261
|
+
|
262
|
+
it 'should raise ArgumentError with not orinigal version id' do
|
263
|
+
uid = ObjectVersionID.new(:value => 'ABC::DEF::1')
|
264
|
+
attestation = stub(Attestation)
|
265
|
+
lambda {
|
266
|
+
@versioned_object.commit_attestation(:attestation => attestation,
|
267
|
+
:uid => uid,
|
268
|
+
:signature => 'DEADBEAFE81')
|
269
|
+
}.should raise_error ArgumentError
|
270
|
+
end
|
271
|
+
|
272
|
+
it 'should raise ArgumentError with nil argument to version with id' do
|
273
|
+
lambda {
|
274
|
+
@versioned_object.version_with_id(nil)
|
275
|
+
}.should raise_error ArgumentError
|
276
|
+
end
|
277
|
+
|
278
|
+
it 'should raise ArgumentError with unexsited version with id ' do
|
279
|
+
uid = ObjectVersionID.new(:value => 'CBA::FED::1')
|
280
|
+
lambda {
|
281
|
+
@versioned_object.version_with_id(uid)
|
282
|
+
}.should raise_error ArgumentError
|
283
|
+
end
|
284
|
+
end
|