├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── batteries.js ├── bin ├── OAuth.js ├── console_runner.js ├── lrs-test.js ├── rollupRules.js ├── testRunner.js └── update-batteries.js ├── local ├── super-request │ ├── .travis.yml │ ├── LICENSE-MIT │ ├── README.md │ ├── atlassian-ide-plugin.xml │ ├── index.js │ ├── lib │ │ └── cookieJar.js │ ├── package.json │ └── test │ │ ├── fixtures │ │ ├── test_cert.pem │ │ └── test_key.pem │ │ └── request.test.js └── supertest │ ├── .eslintrc │ ├── .travis.yml │ ├── History.md │ ├── LICENSE │ ├── Readme.md │ ├── index.js │ ├── lib │ ├── agent.js │ └── test.js │ ├── package.json │ └── test │ ├── .eslintrc │ ├── fixtures │ ├── test_cert.pem │ └── test_key.pem │ └── supertest.js ├── package.json ├── specConfig.js ├── test ├── .env ├── Multiplicity │ └── testing.js ├── Parameters │ └── testing.js ├── Untested │ └── testing.js ├── helper.js ├── multipartParser.js ├── redirect.js ├── references.json ├── templatingSelection.js ├── v1_0_2 │ ├── configs │ │ ├── activities.js │ │ ├── actors.js │ │ ├── agents.js │ │ ├── attachments.js │ │ ├── authorities.js │ │ ├── contexts.js │ │ ├── extensions.js │ │ ├── groups.js │ │ ├── languages.js │ │ ├── objects.js │ │ ├── results.js │ │ ├── statementrefs.js │ │ ├── statements.js │ │ ├── substatements.js │ │ ├── uuids.js │ │ └── verbs.js │ ├── document.js │ ├── non_templating.js │ ├── templates │ │ ├── activities │ │ │ ├── choice.json │ │ │ ├── choice_no_choices.json │ │ │ ├── default.json │ │ │ ├── fill_in.json │ │ │ ├── likert.json │ │ │ ├── likert_no_scale.json │ │ │ ├── long_fill_in.json │ │ │ ├── matching.json │ │ │ ├── matching_no_source.json │ │ │ ├── matching_no_target.json │ │ │ ├── matching_source.json │ │ │ ├── matching_target.json │ │ │ ├── no_definition.json │ │ │ ├── no_extensions.json │ │ │ ├── no_id.json │ │ │ ├── no_languages.json │ │ │ ├── numeric.json │ │ │ ├── other.json │ │ │ ├── performance.json │ │ │ ├── performance_no_steps.json │ │ │ ├── sequencing.json │ │ │ ├── sequencing_no_choices.json │ │ │ └── true_false.json │ │ ├── agents │ │ │ ├── account.json │ │ │ ├── account_no_homepage.json │ │ │ ├── account_no_name.json │ │ │ ├── default.json │ │ │ ├── mbox.json │ │ │ ├── mbox_sha1sum.json │ │ │ └── openid.json │ │ ├── attachments │ │ │ ├── basic_image_multipart_attachment_valid.part │ │ │ ├── basic_pdf_multipart_attachment_valid.part │ │ │ ├── basic_text_multipart_attachment_invalid_content_transfer_encoding.part │ │ │ ├── basic_text_multipart_attachment_invalid_first_part_content_type.part │ │ │ ├── basic_text_multipart_attachment_invalid_first_part_no_boundary.part │ │ │ ├── basic_text_multipart_attachment_invalid_no_content_transfer_encoding.part │ │ │ ├── basic_text_multipart_attachment_invalid_no_match_sha2.part │ │ │ ├── basic_text_multipart_attachment_invalid_no_x_experience_api_hash.part │ │ │ ├── basic_text_multipart_attachment_invalid_statement_parts.part │ │ │ └── basic_text_multipart_attachment_valid.part │ │ ├── contexts │ │ │ ├── category.json │ │ │ ├── default.json │ │ │ ├── grouping.json │ │ │ ├── instructor.json │ │ │ ├── no_extensions.json │ │ │ ├── no_platform.json │ │ │ ├── no_revision.json │ │ │ ├── other.json │ │ │ ├── parent.json │ │ │ └── team.json │ │ ├── groups │ │ │ ├── anonymous.json │ │ │ ├── anonymous_no_member.json │ │ │ ├── anonymous_two_member.json │ │ │ ├── authority_group.json │ │ │ ├── default.json │ │ │ ├── identified_account.json │ │ │ ├── identified_account_no_homepage.json │ │ │ ├── identified_account_no_member.json │ │ │ ├── identified_account_no_name.json │ │ │ ├── identified_mbox.json │ │ │ ├── identified_mbox_no_member.json │ │ │ ├── identified_mbox_sha1sum.json │ │ │ ├── identified_mbox_sha1sum_no_member.json │ │ │ ├── identified_openid.json │ │ │ └── identified_openid_no_member.json │ │ ├── results │ │ │ ├── default.json │ │ │ └── no_extensions.json │ │ ├── statements │ │ │ ├── actor.json │ │ │ ├── attachment.json │ │ │ ├── authority.json │ │ │ ├── context.json │ │ │ ├── default.json │ │ │ ├── multiple_actor.json │ │ │ ├── no_actor.json │ │ │ ├── no_object.json │ │ │ ├── no_verb.json │ │ │ ├── object_activity.json │ │ │ ├── object_actor.json │ │ │ ├── object_agent_default.json │ │ │ ├── object_group_default.json │ │ │ ├── object_statementref.json │ │ │ ├── object_statementref_no_id.json │ │ │ ├── object_substatement.json │ │ │ ├── object_substatement_default.json │ │ │ ├── result.json │ │ │ ├── verb.json │ │ │ └── voided.json │ │ ├── substatements │ │ │ ├── activity.json │ │ │ ├── actor.json │ │ │ ├── agent.json │ │ │ ├── agent_default.json │ │ │ ├── context.json │ │ │ ├── default.json │ │ │ ├── group.json │ │ │ ├── group_default.json │ │ │ ├── no_actor.json │ │ │ ├── no_object.json │ │ │ ├── no_verb.json │ │ │ ├── result.json │ │ │ ├── statementref.json │ │ │ ├── statementref_no_id.json │ │ │ └── verb.json │ │ └── verbs │ │ │ ├── default.json │ │ │ ├── no_display.json │ │ │ ├── no_id.json │ │ │ └── voided.json │ └── templating.js ├── v1_0_3 │ ├── Data2.2-FormattingRequirements.js │ ├── Data2.3-StatementLifecycle.js │ ├── Data2.4.1-IDProperty.js │ ├── Data2.4.2-ActorProperty.js │ ├── Data2.4.3-VerbProperty.js │ ├── Data2.4.4-ObjectProperty.js │ ├── Data2.4.5-ResultProperty.js │ ├── Data2.4.6-ContextProperty.js │ ├── Data2.4.7-TimestampProperty.js │ ├── Data2.4.8-StoredProperty.js │ ├── Data2.4.9-AuthorityProperty.js │ ├── E.Data2.4.10-VersionProperty.js │ ├── E.Data2.4.11-AttachmentsProperty.js │ ├── E.Data2.5-RetrievalofStatements.js │ ├── E.Data2.6-SignedStatements.js │ ├── E.Data4.0-SpecialDataTypesAndRules.js │ ├── H.Communication1.1-HeadRequestImplementation.js │ ├── H.Communication1.2-Headers.js │ ├── H.Communication1.3-AlternateRequestSyntax.js │ ├── H.Communication1.4-Encoding.js │ ├── H.Communication1.5-ContentTypes.js │ ├── H.Communication2.1-StatementResource.js │ ├── H.Communication2.2-DocumentResources.js │ ├── H.Communication2.3-StateResource.js │ ├── H.Communication2.4-AgentsResource.js │ ├── H.Communication2.5-ActivitiesResource.js │ ├── H.Communication2.6-AgentProfileResource.js │ ├── H.Communication2.7-ActivityProfileResource.js │ ├── H.Communication2.8-AboutResource.js │ ├── H.Communication3.1-Concurrency.js │ ├── H.Communication3.2-ErrorCodes.js │ ├── H.Communication3.3-Versioning.js │ ├── H.Communication4.0-Authentication.js │ ├── H.Communication4.0-Authentication.js.orig │ ├── configs │ │ ├── accountobjects.js │ │ ├── activities.js │ │ ├── actors.js │ │ ├── agents.js │ │ ├── attachments.js │ │ ├── authorities.js │ │ ├── contextactivities.js │ │ ├── contexts.js │ │ ├── durations.js │ │ ├── extensions.js │ │ ├── formatting.js │ │ ├── groups.js │ │ ├── ifis.js │ │ ├── languages.js │ │ ├── objects.js │ │ ├── results.js │ │ ├── scores.js │ │ ├── statementrefs.js │ │ ├── substatements.js │ │ ├── timestamp_property.js │ │ ├── timestamps.js │ │ ├── uuids.js │ │ ├── verbs.js │ │ ├── verify.js │ │ ├── version.js │ │ └── voiding.js │ └── templates │ │ ├── activities │ │ ├── choice.json │ │ ├── default.json │ │ ├── description_invalid.json │ │ ├── fill_in.json │ │ ├── interaction_type_invalid_iri.json │ │ ├── interaction_type_invalid_numeric.json │ │ ├── interaction_type_invalid_object.json │ │ ├── interaction_type_invalid_string.json │ │ ├── language_maps_valid_description.json │ │ ├── language_maps_valid_name.json │ │ ├── likert.json │ │ ├── likert_valid_language_map.json │ │ ├── long_fill_in.json │ │ ├── matching.json │ │ ├── matching_language_map.json │ │ ├── matching_source.json │ │ ├── matching_target.json │ │ ├── name_invalid.json │ │ ├── no_definition.json │ │ ├── no_extensions.json │ │ ├── no_id.json │ │ ├── no_languages.json │ │ ├── no_objectType.json │ │ ├── numeric.json │ │ ├── numeric_description.json │ │ ├── numeric_name.json │ │ ├── other.json │ │ ├── performance.json │ │ ├── sequencing.json │ │ ├── string_description.json │ │ ├── string_name.json │ │ └── true_false.json │ │ ├── agents │ │ ├── account.json │ │ ├── account_no_homepage.json │ │ ├── account_no_name.json │ │ ├── default.json │ │ ├── mbox.json │ │ ├── mbox_sha1sum.json │ │ └── openid.json │ │ ├── attachments │ │ ├── .gitattributes │ │ ├── basic_image_p2.jpeg │ │ ├── simple_text1.txt │ │ ├── simple_text2.txt │ │ └── simple_text3.txt │ │ ├── contexts │ │ ├── all_activities.json │ │ ├── category.json │ │ ├── default.json │ │ ├── grouping.json │ │ ├── instructor.json │ │ ├── invalid_activity.json │ │ ├── no_extensions.json │ │ ├── no_platform.json │ │ ├── no_revision.json │ │ ├── other.json │ │ ├── parent.json │ │ └── team.json │ │ ├── groups │ │ ├── anonymous.json │ │ ├── anonymous_no_member.json │ │ ├── anonymous_two_member.json │ │ ├── authority_group.json │ │ ├── default.json │ │ ├── identified_account.json │ │ ├── identified_account_no_homepage.json │ │ ├── identified_account_no_member.json │ │ ├── identified_account_no_name.json │ │ ├── identified_mbox.json │ │ ├── identified_mbox_no_member.json │ │ ├── identified_mbox_sha1sum.json │ │ ├── identified_mbox_sha1sum_no_member.json │ │ ├── identified_openid.json │ │ └── identified_openid_no_member.json │ │ ├── results │ │ ├── default.json │ │ └── no_extensions.json │ │ ├── statements │ │ ├── actor.json │ │ ├── attachment.json │ │ ├── authority.json │ │ ├── context.json │ │ ├── context_sans_objectType.json │ │ ├── default.json │ │ ├── multiple_actor.json │ │ ├── no_actor.json │ │ ├── no_object.json │ │ ├── no_verb.json │ │ ├── object_activity.json │ │ ├── object_actor.json │ │ ├── object_agent_default.json │ │ ├── object_group_default.json │ │ ├── object_statementref.json │ │ ├── object_statementref_no_id.json │ │ ├── object_substatement.json │ │ ├── object_substatement_default.json │ │ ├── result.json │ │ ├── unicode.json │ │ ├── verb.json │ │ └── voiding.json │ │ ├── substatements │ │ ├── activity.json │ │ ├── activity_definition_description.json │ │ ├── activity_definition_description_invalid.json │ │ ├── activity_definition_name.json │ │ ├── activity_definition_name_invalid.json │ │ ├── actor.json │ │ ├── agent.json │ │ ├── agent_default.json │ │ ├── context.json │ │ ├── context_invalid_language_map.json │ │ ├── context_valid_language_map.json │ │ ├── default.json │ │ ├── group.json │ │ ├── group_default.json │ │ ├── interaction_component_invalid_language_map.json │ │ ├── interaction_component_valid_language_map.json │ │ ├── no_actor.json │ │ ├── no_object.json │ │ ├── no_verb.json │ │ ├── result.json │ │ ├── statementref.json │ │ ├── statementref_no_id.json │ │ ├── verb.json │ │ ├── verb_invalid.json │ │ └── verb_valid.json │ │ └── verbs │ │ ├── default.json │ │ ├── no_display.json │ │ ├── no_id.json │ │ └── voided.json └── v2_0 │ ├── 4.1.3-Content-Types.js │ ├── 4.1.4-Concurrency.js │ ├── 4.1.6.1-Statement-Resource.js │ ├── 4.1.6.2-State-Resource.js │ ├── 4.1.6.3-Agents-Resource.js │ ├── 4.1.6.4-Activity-Resource.js │ ├── 4.1.6.5-Agent-Profile-Resource.js │ ├── 4.1.6.6-Activity-Profile-Resource.js │ ├── 4.1.6.7-About-Resource.js │ ├── 4.2.2.1-Actor-Requirements.js │ ├── 4.2.2.2-Verb-Requirements.js │ ├── 4.2.2.3-Object-Requirements.js │ ├── 4.2.2.4-Result-Requirements.js │ ├── 4.2.2.5-Context-Requirements.js │ ├── 4.2.2.6-Attachment-Requirements.js │ ├── 4.2.4.2-Authority-Requirements.js │ ├── 4.2.4.2-ID-Requirements.js │ ├── 4.2.4.2-Stored-Requirements.js │ ├── 4.2.4.2-Timestamp-Requirements.js │ ├── 4.2.4.3-Version-Requirements.js │ ├── 4.2.5-Statement-Voiding.js │ ├── 4.2.7-Additional-Requirements-for-Data-Types.js │ ├── Data2.2-FormattingRequirements.js │ ├── E.Data2.5-RetrievalofStatements.js │ ├── E.Data2.6-SignedStatements.js │ ├── E.Data4.0-SpecialDataTypesAndRules.js │ ├── H.Communication1.1-HeadRequestImplementation.js │ ├── H.Communication1.2-Headers.js │ ├── H.Communication1.3-AlternateRequestSyntax.js │ ├── H.Communication1.4-Encoding.js │ ├── H.Communication2.2-DocumentResources.js │ ├── H.Communication3.2-ErrorCodes.js │ ├── H.Communication3.3-Versioning.js │ ├── H.Communication4.0-Authentication.js │ ├── configs │ ├── accountobjects.js │ ├── activities.js │ ├── actors.js │ ├── agents.js │ ├── attachments.js │ ├── authorities.js │ ├── contextactivities.js │ ├── contextagents.js │ ├── contextgroups.js │ ├── contexts.js │ ├── durations.js │ ├── extensions.js │ ├── formatting.js │ ├── groups.js │ ├── ifis.js │ ├── languages.js │ ├── objects.js │ ├── results.js │ ├── scores.js │ ├── statementrefs.js │ ├── substatements.js │ ├── timestamp_property.js │ ├── timestamps.js │ ├── uuids.js │ ├── verbs.js │ ├── verify.js │ ├── version.js │ └── voiding.js │ ├── templates │ ├── activities │ │ ├── choice.json │ │ ├── default.json │ │ ├── description_invalid.json │ │ ├── fill_in.json │ │ ├── interaction_type_invalid_iri.json │ │ ├── interaction_type_invalid_numeric.json │ │ ├── interaction_type_invalid_object.json │ │ ├── interaction_type_invalid_string.json │ │ ├── language_maps_valid_description.json │ │ ├── language_maps_valid_name.json │ │ ├── likert.json │ │ ├── likert_valid_language_map.json │ │ ├── long_fill_in.json │ │ ├── matching.json │ │ ├── matching_language_map.json │ │ ├── matching_source.json │ │ ├── matching_target.json │ │ ├── name_invalid.json │ │ ├── no_definition.json │ │ ├── no_extensions.json │ │ ├── no_id.json │ │ ├── no_languages.json │ │ ├── no_objectType.json │ │ ├── numeric.json │ │ ├── numeric_description.json │ │ ├── numeric_name.json │ │ ├── other.json │ │ ├── performance.json │ │ ├── sequencing.json │ │ ├── string_description.json │ │ ├── string_name.json │ │ └── true_false.json │ ├── agents │ │ ├── account.json │ │ ├── account_no_homepage.json │ │ ├── account_no_name.json │ │ ├── default.json │ │ ├── mbox.json │ │ ├── mbox_sha1sum.json │ │ └── openid.json │ ├── attachments │ │ ├── .gitattributes │ │ ├── basic_image_p2.jpeg │ │ ├── simple_text1.txt │ │ ├── simple_text2.txt │ │ └── simple_text3.txt │ ├── contexts │ │ ├── all_activities.json │ │ ├── category.json │ │ ├── context_agents.json │ │ ├── context_groups.json │ │ ├── default.json │ │ ├── grouping.json │ │ ├── instructor.json │ │ ├── invalid_activity.json │ │ ├── no_extensions.json │ │ ├── no_platform.json │ │ ├── no_revision.json │ │ ├── other.json │ │ ├── parent.json │ │ └── team.json │ ├── groups │ │ ├── anonymous.json │ │ ├── anonymous_no_member.json │ │ ├── anonymous_two_member.json │ │ ├── authority_group.json │ │ ├── default.json │ │ ├── identified_account.json │ │ ├── identified_account_no_homepage.json │ │ ├── identified_account_no_member.json │ │ ├── identified_account_no_name.json │ │ ├── identified_mbox.json │ │ ├── identified_mbox_no_member.json │ │ ├── identified_mbox_sha1sum.json │ │ ├── identified_mbox_sha1sum_no_member.json │ │ ├── identified_openid.json │ │ └── identified_openid_no_member.json │ ├── results │ │ ├── default.json │ │ └── no_extensions.json │ ├── statements │ │ ├── actor.json │ │ ├── attachment.json │ │ ├── authority.json │ │ ├── context.json │ │ ├── context_sans_objectType.json │ │ ├── default.json │ │ ├── multiple_actor.json │ │ ├── no_actor.json │ │ ├── no_object.json │ │ ├── no_verb.json │ │ ├── object_activity.json │ │ ├── object_actor.json │ │ ├── object_agent_default.json │ │ ├── object_group_default.json │ │ ├── object_statementref.json │ │ ├── object_statementref_no_id.json │ │ ├── object_substatement.json │ │ ├── object_substatement_default.json │ │ ├── result.json │ │ ├── unicode.json │ │ ├── verb.json │ │ └── voiding.json │ ├── substatements │ │ ├── activity.json │ │ ├── activity_definition_description.json │ │ ├── activity_definition_description_invalid.json │ │ ├── activity_definition_name.json │ │ ├── activity_definition_name_invalid.json │ │ ├── actor.json │ │ ├── agent.json │ │ ├── agent_default.json │ │ ├── context.json │ │ ├── context_invalid_language_map.json │ │ ├── context_valid_language_map.json │ │ ├── default.json │ │ ├── group.json │ │ ├── group_default.json │ │ ├── interaction_component_invalid_language_map.json │ │ ├── interaction_component_valid_language_map.json │ │ ├── no_actor.json │ │ ├── no_object.json │ │ ├── no_verb.json │ │ ├── result.json │ │ ├── statementref.json │ │ ├── statementref_no_id.json │ │ ├── verb.json │ │ ├── verb_invalid.json │ │ └── verb_valid.json │ └── verbs │ │ ├── default.json │ │ ├── no_display.json │ │ ├── no_id.json │ │ └── voided.json │ └── util │ └── requests.js └── version.js /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/README.md -------------------------------------------------------------------------------- /batteries.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/batteries.js -------------------------------------------------------------------------------- /bin/OAuth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/bin/OAuth.js -------------------------------------------------------------------------------- /bin/console_runner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/bin/console_runner.js -------------------------------------------------------------------------------- /bin/lrs-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/bin/lrs-test.js -------------------------------------------------------------------------------- /bin/rollupRules.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/bin/rollupRules.js -------------------------------------------------------------------------------- /bin/testRunner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/bin/testRunner.js -------------------------------------------------------------------------------- /bin/update-batteries.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/bin/update-batteries.js -------------------------------------------------------------------------------- /local/super-request/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/local/super-request/.travis.yml -------------------------------------------------------------------------------- /local/super-request/LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/local/super-request/LICENSE-MIT -------------------------------------------------------------------------------- /local/super-request/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/local/super-request/README.md -------------------------------------------------------------------------------- /local/super-request/atlassian-ide-plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/local/super-request/atlassian-ide-plugin.xml -------------------------------------------------------------------------------- /local/super-request/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/local/super-request/index.js -------------------------------------------------------------------------------- /local/super-request/lib/cookieJar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/local/super-request/lib/cookieJar.js -------------------------------------------------------------------------------- /local/super-request/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/local/super-request/package.json -------------------------------------------------------------------------------- /local/super-request/test/fixtures/test_cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/local/super-request/test/fixtures/test_cert.pem -------------------------------------------------------------------------------- /local/super-request/test/fixtures/test_key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/local/super-request/test/fixtures/test_key.pem -------------------------------------------------------------------------------- /local/super-request/test/request.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/local/super-request/test/request.test.js -------------------------------------------------------------------------------- /local/supertest/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/local/supertest/.eslintrc -------------------------------------------------------------------------------- /local/supertest/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/local/supertest/.travis.yml -------------------------------------------------------------------------------- /local/supertest/History.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/local/supertest/History.md -------------------------------------------------------------------------------- /local/supertest/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/local/supertest/LICENSE -------------------------------------------------------------------------------- /local/supertest/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/local/supertest/Readme.md -------------------------------------------------------------------------------- /local/supertest/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/local/supertest/index.js -------------------------------------------------------------------------------- /local/supertest/lib/agent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/local/supertest/lib/agent.js -------------------------------------------------------------------------------- /local/supertest/lib/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/local/supertest/lib/test.js -------------------------------------------------------------------------------- /local/supertest/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/local/supertest/package.json -------------------------------------------------------------------------------- /local/supertest/test/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/local/supertest/test/.eslintrc -------------------------------------------------------------------------------- /local/supertest/test/fixtures/test_cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/local/supertest/test/fixtures/test_cert.pem -------------------------------------------------------------------------------- /local/supertest/test/fixtures/test_key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/local/supertest/test/fixtures/test_key.pem -------------------------------------------------------------------------------- /local/supertest/test/supertest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/local/supertest/test/supertest.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/package.json -------------------------------------------------------------------------------- /specConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/specConfig.js -------------------------------------------------------------------------------- /test/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/.env -------------------------------------------------------------------------------- /test/Multiplicity/testing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/Multiplicity/testing.js -------------------------------------------------------------------------------- /test/Parameters/testing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/Parameters/testing.js -------------------------------------------------------------------------------- /test/Untested/testing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/Untested/testing.js -------------------------------------------------------------------------------- /test/helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/helper.js -------------------------------------------------------------------------------- /test/multipartParser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/multipartParser.js -------------------------------------------------------------------------------- /test/redirect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/redirect.js -------------------------------------------------------------------------------- /test/references.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/references.json -------------------------------------------------------------------------------- /test/templatingSelection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/templatingSelection.js -------------------------------------------------------------------------------- /test/v1_0_2/configs/activities.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_2/configs/activities.js -------------------------------------------------------------------------------- /test/v1_0_2/configs/actors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_2/configs/actors.js -------------------------------------------------------------------------------- /test/v1_0_2/configs/agents.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_2/configs/agents.js -------------------------------------------------------------------------------- /test/v1_0_2/configs/attachments.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_2/configs/attachments.js -------------------------------------------------------------------------------- /test/v1_0_2/configs/authorities.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_2/configs/authorities.js -------------------------------------------------------------------------------- /test/v1_0_2/configs/contexts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_2/configs/contexts.js -------------------------------------------------------------------------------- /test/v1_0_2/configs/extensions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_2/configs/extensions.js -------------------------------------------------------------------------------- /test/v1_0_2/configs/groups.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_2/configs/groups.js -------------------------------------------------------------------------------- /test/v1_0_2/configs/languages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_2/configs/languages.js -------------------------------------------------------------------------------- /test/v1_0_2/configs/objects.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_2/configs/objects.js -------------------------------------------------------------------------------- /test/v1_0_2/configs/results.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_2/configs/results.js -------------------------------------------------------------------------------- /test/v1_0_2/configs/statementrefs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_2/configs/statementrefs.js -------------------------------------------------------------------------------- /test/v1_0_2/configs/statements.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_2/configs/statements.js -------------------------------------------------------------------------------- /test/v1_0_2/configs/substatements.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_2/configs/substatements.js -------------------------------------------------------------------------------- /test/v1_0_2/configs/uuids.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_2/configs/uuids.js -------------------------------------------------------------------------------- /test/v1_0_2/configs/verbs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_2/configs/verbs.js -------------------------------------------------------------------------------- /test/v1_0_2/document.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_2/document.js -------------------------------------------------------------------------------- /test/v1_0_2/non_templating.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_2/non_templating.js -------------------------------------------------------------------------------- /test/v1_0_2/templates/activities/choice.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_2/templates/activities/choice.json -------------------------------------------------------------------------------- /test/v1_0_2/templates/activities/choice_no_choices.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_2/templates/activities/choice_no_choices.json -------------------------------------------------------------------------------- /test/v1_0_2/templates/activities/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_2/templates/activities/default.json -------------------------------------------------------------------------------- /test/v1_0_2/templates/activities/fill_in.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_2/templates/activities/fill_in.json -------------------------------------------------------------------------------- /test/v1_0_2/templates/activities/likert.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_2/templates/activities/likert.json -------------------------------------------------------------------------------- /test/v1_0_2/templates/activities/likert_no_scale.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_2/templates/activities/likert_no_scale.json -------------------------------------------------------------------------------- /test/v1_0_2/templates/activities/long_fill_in.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_2/templates/activities/long_fill_in.json -------------------------------------------------------------------------------- /test/v1_0_2/templates/activities/matching.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_2/templates/activities/matching.json -------------------------------------------------------------------------------- /test/v1_0_2/templates/activities/matching_no_source.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_2/templates/activities/matching_no_source.json -------------------------------------------------------------------------------- /test/v1_0_2/templates/activities/matching_no_target.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_2/templates/activities/matching_no_target.json -------------------------------------------------------------------------------- /test/v1_0_2/templates/activities/matching_source.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_2/templates/activities/matching_source.json -------------------------------------------------------------------------------- /test/v1_0_2/templates/activities/matching_target.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_2/templates/activities/matching_target.json -------------------------------------------------------------------------------- /test/v1_0_2/templates/activities/no_definition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_2/templates/activities/no_definition.json -------------------------------------------------------------------------------- /test/v1_0_2/templates/activities/no_extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_2/templates/activities/no_extensions.json -------------------------------------------------------------------------------- /test/v1_0_2/templates/activities/no_id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_2/templates/activities/no_id.json -------------------------------------------------------------------------------- /test/v1_0_2/templates/activities/no_languages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_2/templates/activities/no_languages.json -------------------------------------------------------------------------------- /test/v1_0_2/templates/activities/numeric.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_2/templates/activities/numeric.json -------------------------------------------------------------------------------- /test/v1_0_2/templates/activities/other.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_2/templates/activities/other.json -------------------------------------------------------------------------------- /test/v1_0_2/templates/activities/performance.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_2/templates/activities/performance.json -------------------------------------------------------------------------------- /test/v1_0_2/templates/activities/performance_no_steps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_2/templates/activities/performance_no_steps.json -------------------------------------------------------------------------------- /test/v1_0_2/templates/activities/sequencing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_2/templates/activities/sequencing.json -------------------------------------------------------------------------------- /test/v1_0_2/templates/activities/sequencing_no_choices.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_2/templates/activities/sequencing_no_choices.json -------------------------------------------------------------------------------- /test/v1_0_2/templates/activities/true_false.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_2/templates/activities/true_false.json -------------------------------------------------------------------------------- /test/v1_0_2/templates/agents/account.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_2/templates/agents/account.json -------------------------------------------------------------------------------- /test/v1_0_2/templates/agents/account_no_homepage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_2/templates/agents/account_no_homepage.json -------------------------------------------------------------------------------- /test/v1_0_2/templates/agents/account_no_name.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_2/templates/agents/account_no_name.json -------------------------------------------------------------------------------- /test/v1_0_2/templates/agents/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_2/templates/agents/default.json -------------------------------------------------------------------------------- /test/v1_0_2/templates/agents/mbox.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_2/templates/agents/mbox.json -------------------------------------------------------------------------------- /test/v1_0_2/templates/agents/mbox_sha1sum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_2/templates/agents/mbox_sha1sum.json -------------------------------------------------------------------------------- /test/v1_0_2/templates/agents/openid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_2/templates/agents/openid.json -------------------------------------------------------------------------------- /test/v1_0_2/templates/attachments/basic_image_multipart_attachment_valid.part: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_2/templates/attachments/basic_image_multipart_attachment_valid.part -------------------------------------------------------------------------------- /test/v1_0_2/templates/attachments/basic_pdf_multipart_attachment_valid.part: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_2/templates/attachments/basic_pdf_multipart_attachment_valid.part -------------------------------------------------------------------------------- /test/v1_0_2/templates/attachments/basic_text_multipart_attachment_invalid_content_transfer_encoding.part: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_2/templates/attachments/basic_text_multipart_attachment_invalid_content_transfer_encoding.part -------------------------------------------------------------------------------- /test/v1_0_2/templates/attachments/basic_text_multipart_attachment_invalid_first_part_content_type.part: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_2/templates/attachments/basic_text_multipart_attachment_invalid_first_part_content_type.part -------------------------------------------------------------------------------- /test/v1_0_2/templates/attachments/basic_text_multipart_attachment_invalid_first_part_no_boundary.part: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_2/templates/attachments/basic_text_multipart_attachment_invalid_first_part_no_boundary.part -------------------------------------------------------------------------------- /test/v1_0_2/templates/attachments/basic_text_multipart_attachment_invalid_no_content_transfer_encoding.part: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_2/templates/attachments/basic_text_multipart_attachment_invalid_no_content_transfer_encoding.part -------------------------------------------------------------------------------- /test/v1_0_2/templates/attachments/basic_text_multipart_attachment_invalid_no_match_sha2.part: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_2/templates/attachments/basic_text_multipart_attachment_invalid_no_match_sha2.part -------------------------------------------------------------------------------- /test/v1_0_2/templates/attachments/basic_text_multipart_attachment_invalid_no_x_experience_api_hash.part: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_2/templates/attachments/basic_text_multipart_attachment_invalid_no_x_experience_api_hash.part -------------------------------------------------------------------------------- /test/v1_0_2/templates/attachments/basic_text_multipart_attachment_invalid_statement_parts.part: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_2/templates/attachments/basic_text_multipart_attachment_invalid_statement_parts.part -------------------------------------------------------------------------------- /test/v1_0_2/templates/attachments/basic_text_multipart_attachment_valid.part: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_2/templates/attachments/basic_text_multipart_attachment_valid.part -------------------------------------------------------------------------------- /test/v1_0_2/templates/contexts/category.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_2/templates/contexts/category.json -------------------------------------------------------------------------------- /test/v1_0_2/templates/contexts/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_2/templates/contexts/default.json -------------------------------------------------------------------------------- /test/v1_0_2/templates/contexts/grouping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_2/templates/contexts/grouping.json -------------------------------------------------------------------------------- /test/v1_0_2/templates/contexts/instructor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_2/templates/contexts/instructor.json -------------------------------------------------------------------------------- /test/v1_0_2/templates/contexts/no_extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_2/templates/contexts/no_extensions.json -------------------------------------------------------------------------------- /test/v1_0_2/templates/contexts/no_platform.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_2/templates/contexts/no_platform.json -------------------------------------------------------------------------------- /test/v1_0_2/templates/contexts/no_revision.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_2/templates/contexts/no_revision.json -------------------------------------------------------------------------------- /test/v1_0_2/templates/contexts/other.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_2/templates/contexts/other.json -------------------------------------------------------------------------------- /test/v1_0_2/templates/contexts/parent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_2/templates/contexts/parent.json -------------------------------------------------------------------------------- /test/v1_0_2/templates/contexts/team.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_2/templates/contexts/team.json -------------------------------------------------------------------------------- /test/v1_0_2/templates/groups/anonymous.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_2/templates/groups/anonymous.json -------------------------------------------------------------------------------- /test/v1_0_2/templates/groups/anonymous_no_member.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_2/templates/groups/anonymous_no_member.json -------------------------------------------------------------------------------- /test/v1_0_2/templates/groups/anonymous_two_member.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_2/templates/groups/anonymous_two_member.json -------------------------------------------------------------------------------- /test/v1_0_2/templates/groups/authority_group.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_2/templates/groups/authority_group.json -------------------------------------------------------------------------------- /test/v1_0_2/templates/groups/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_2/templates/groups/default.json -------------------------------------------------------------------------------- /test/v1_0_2/templates/groups/identified_account.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_2/templates/groups/identified_account.json -------------------------------------------------------------------------------- /test/v1_0_2/templates/groups/identified_account_no_homepage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_2/templates/groups/identified_account_no_homepage.json -------------------------------------------------------------------------------- /test/v1_0_2/templates/groups/identified_account_no_member.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_2/templates/groups/identified_account_no_member.json -------------------------------------------------------------------------------- /test/v1_0_2/templates/groups/identified_account_no_name.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_2/templates/groups/identified_account_no_name.json -------------------------------------------------------------------------------- /test/v1_0_2/templates/groups/identified_mbox.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_2/templates/groups/identified_mbox.json -------------------------------------------------------------------------------- /test/v1_0_2/templates/groups/identified_mbox_no_member.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_2/templates/groups/identified_mbox_no_member.json -------------------------------------------------------------------------------- /test/v1_0_2/templates/groups/identified_mbox_sha1sum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_2/templates/groups/identified_mbox_sha1sum.json -------------------------------------------------------------------------------- /test/v1_0_2/templates/groups/identified_mbox_sha1sum_no_member.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_2/templates/groups/identified_mbox_sha1sum_no_member.json -------------------------------------------------------------------------------- /test/v1_0_2/templates/groups/identified_openid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_2/templates/groups/identified_openid.json -------------------------------------------------------------------------------- /test/v1_0_2/templates/groups/identified_openid_no_member.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_2/templates/groups/identified_openid_no_member.json -------------------------------------------------------------------------------- /test/v1_0_2/templates/results/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_2/templates/results/default.json -------------------------------------------------------------------------------- /test/v1_0_2/templates/results/no_extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_2/templates/results/no_extensions.json -------------------------------------------------------------------------------- /test/v1_0_2/templates/statements/actor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_2/templates/statements/actor.json -------------------------------------------------------------------------------- /test/v1_0_2/templates/statements/attachment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_2/templates/statements/attachment.json -------------------------------------------------------------------------------- /test/v1_0_2/templates/statements/authority.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_2/templates/statements/authority.json -------------------------------------------------------------------------------- /test/v1_0_2/templates/statements/context.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_2/templates/statements/context.json -------------------------------------------------------------------------------- /test/v1_0_2/templates/statements/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_2/templates/statements/default.json -------------------------------------------------------------------------------- /test/v1_0_2/templates/statements/multiple_actor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_2/templates/statements/multiple_actor.json -------------------------------------------------------------------------------- /test/v1_0_2/templates/statements/no_actor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_2/templates/statements/no_actor.json -------------------------------------------------------------------------------- /test/v1_0_2/templates/statements/no_object.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_2/templates/statements/no_object.json -------------------------------------------------------------------------------- /test/v1_0_2/templates/statements/no_verb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_2/templates/statements/no_verb.json -------------------------------------------------------------------------------- /test/v1_0_2/templates/statements/object_activity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_2/templates/statements/object_activity.json -------------------------------------------------------------------------------- /test/v1_0_2/templates/statements/object_actor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_2/templates/statements/object_actor.json -------------------------------------------------------------------------------- /test/v1_0_2/templates/statements/object_agent_default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_2/templates/statements/object_agent_default.json -------------------------------------------------------------------------------- /test/v1_0_2/templates/statements/object_group_default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_2/templates/statements/object_group_default.json -------------------------------------------------------------------------------- /test/v1_0_2/templates/statements/object_statementref.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_2/templates/statements/object_statementref.json -------------------------------------------------------------------------------- /test/v1_0_2/templates/statements/object_statementref_no_id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_2/templates/statements/object_statementref_no_id.json -------------------------------------------------------------------------------- /test/v1_0_2/templates/statements/object_substatement.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_2/templates/statements/object_substatement.json -------------------------------------------------------------------------------- /test/v1_0_2/templates/statements/object_substatement_default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_2/templates/statements/object_substatement_default.json -------------------------------------------------------------------------------- /test/v1_0_2/templates/statements/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_2/templates/statements/result.json -------------------------------------------------------------------------------- /test/v1_0_2/templates/statements/verb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_2/templates/statements/verb.json -------------------------------------------------------------------------------- /test/v1_0_2/templates/statements/voided.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_2/templates/statements/voided.json -------------------------------------------------------------------------------- /test/v1_0_2/templates/substatements/activity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_2/templates/substatements/activity.json -------------------------------------------------------------------------------- /test/v1_0_2/templates/substatements/actor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_2/templates/substatements/actor.json -------------------------------------------------------------------------------- /test/v1_0_2/templates/substatements/agent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_2/templates/substatements/agent.json -------------------------------------------------------------------------------- /test/v1_0_2/templates/substatements/agent_default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_2/templates/substatements/agent_default.json -------------------------------------------------------------------------------- /test/v1_0_2/templates/substatements/context.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_2/templates/substatements/context.json -------------------------------------------------------------------------------- /test/v1_0_2/templates/substatements/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_2/templates/substatements/default.json -------------------------------------------------------------------------------- /test/v1_0_2/templates/substatements/group.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_2/templates/substatements/group.json -------------------------------------------------------------------------------- /test/v1_0_2/templates/substatements/group_default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_2/templates/substatements/group_default.json -------------------------------------------------------------------------------- /test/v1_0_2/templates/substatements/no_actor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_2/templates/substatements/no_actor.json -------------------------------------------------------------------------------- /test/v1_0_2/templates/substatements/no_object.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_2/templates/substatements/no_object.json -------------------------------------------------------------------------------- /test/v1_0_2/templates/substatements/no_verb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_2/templates/substatements/no_verb.json -------------------------------------------------------------------------------- /test/v1_0_2/templates/substatements/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_2/templates/substatements/result.json -------------------------------------------------------------------------------- /test/v1_0_2/templates/substatements/statementref.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_2/templates/substatements/statementref.json -------------------------------------------------------------------------------- /test/v1_0_2/templates/substatements/statementref_no_id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_2/templates/substatements/statementref_no_id.json -------------------------------------------------------------------------------- /test/v1_0_2/templates/substatements/verb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_2/templates/substatements/verb.json -------------------------------------------------------------------------------- /test/v1_0_2/templates/verbs/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_2/templates/verbs/default.json -------------------------------------------------------------------------------- /test/v1_0_2/templates/verbs/no_display.json: -------------------------------------------------------------------------------- 1 | { 2 | "id": "http://adlnet.gov/expapi/verbs/attended" 3 | } -------------------------------------------------------------------------------- /test/v1_0_2/templates/verbs/no_id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_2/templates/verbs/no_id.json -------------------------------------------------------------------------------- /test/v1_0_2/templates/verbs/voided.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_2/templates/verbs/voided.json -------------------------------------------------------------------------------- /test/v1_0_2/templating.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_2/templating.js -------------------------------------------------------------------------------- /test/v1_0_3/Data2.2-FormattingRequirements.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_3/Data2.2-FormattingRequirements.js -------------------------------------------------------------------------------- /test/v1_0_3/Data2.3-StatementLifecycle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_3/Data2.3-StatementLifecycle.js -------------------------------------------------------------------------------- /test/v1_0_3/Data2.4.1-IDProperty.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_3/Data2.4.1-IDProperty.js -------------------------------------------------------------------------------- /test/v1_0_3/Data2.4.2-ActorProperty.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_3/Data2.4.2-ActorProperty.js -------------------------------------------------------------------------------- /test/v1_0_3/Data2.4.3-VerbProperty.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_3/Data2.4.3-VerbProperty.js -------------------------------------------------------------------------------- /test/v1_0_3/Data2.4.4-ObjectProperty.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_3/Data2.4.4-ObjectProperty.js -------------------------------------------------------------------------------- /test/v1_0_3/Data2.4.5-ResultProperty.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_3/Data2.4.5-ResultProperty.js -------------------------------------------------------------------------------- /test/v1_0_3/Data2.4.6-ContextProperty.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_3/Data2.4.6-ContextProperty.js -------------------------------------------------------------------------------- /test/v1_0_3/Data2.4.7-TimestampProperty.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_3/Data2.4.7-TimestampProperty.js -------------------------------------------------------------------------------- /test/v1_0_3/Data2.4.8-StoredProperty.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_3/Data2.4.8-StoredProperty.js -------------------------------------------------------------------------------- /test/v1_0_3/Data2.4.9-AuthorityProperty.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_3/Data2.4.9-AuthorityProperty.js -------------------------------------------------------------------------------- /test/v1_0_3/E.Data2.4.10-VersionProperty.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_3/E.Data2.4.10-VersionProperty.js -------------------------------------------------------------------------------- /test/v1_0_3/E.Data2.4.11-AttachmentsProperty.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_3/E.Data2.4.11-AttachmentsProperty.js -------------------------------------------------------------------------------- /test/v1_0_3/E.Data2.5-RetrievalofStatements.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_3/E.Data2.5-RetrievalofStatements.js -------------------------------------------------------------------------------- /test/v1_0_3/E.Data2.6-SignedStatements.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_3/E.Data2.6-SignedStatements.js -------------------------------------------------------------------------------- /test/v1_0_3/E.Data4.0-SpecialDataTypesAndRules.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_3/E.Data4.0-SpecialDataTypesAndRules.js -------------------------------------------------------------------------------- /test/v1_0_3/H.Communication1.1-HeadRequestImplementation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_3/H.Communication1.1-HeadRequestImplementation.js -------------------------------------------------------------------------------- /test/v1_0_3/H.Communication1.2-Headers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_3/H.Communication1.2-Headers.js -------------------------------------------------------------------------------- /test/v1_0_3/H.Communication1.3-AlternateRequestSyntax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_3/H.Communication1.3-AlternateRequestSyntax.js -------------------------------------------------------------------------------- /test/v1_0_3/H.Communication1.4-Encoding.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_3/H.Communication1.4-Encoding.js -------------------------------------------------------------------------------- /test/v1_0_3/H.Communication1.5-ContentTypes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_3/H.Communication1.5-ContentTypes.js -------------------------------------------------------------------------------- /test/v1_0_3/H.Communication2.1-StatementResource.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_3/H.Communication2.1-StatementResource.js -------------------------------------------------------------------------------- /test/v1_0_3/H.Communication2.2-DocumentResources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_3/H.Communication2.2-DocumentResources.js -------------------------------------------------------------------------------- /test/v1_0_3/H.Communication2.3-StateResource.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_3/H.Communication2.3-StateResource.js -------------------------------------------------------------------------------- /test/v1_0_3/H.Communication2.4-AgentsResource.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_3/H.Communication2.4-AgentsResource.js -------------------------------------------------------------------------------- /test/v1_0_3/H.Communication2.5-ActivitiesResource.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_3/H.Communication2.5-ActivitiesResource.js -------------------------------------------------------------------------------- /test/v1_0_3/H.Communication2.6-AgentProfileResource.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_3/H.Communication2.6-AgentProfileResource.js -------------------------------------------------------------------------------- /test/v1_0_3/H.Communication2.7-ActivityProfileResource.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_3/H.Communication2.7-ActivityProfileResource.js -------------------------------------------------------------------------------- /test/v1_0_3/H.Communication2.8-AboutResource.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_3/H.Communication2.8-AboutResource.js -------------------------------------------------------------------------------- /test/v1_0_3/H.Communication3.1-Concurrency.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_3/H.Communication3.1-Concurrency.js -------------------------------------------------------------------------------- /test/v1_0_3/H.Communication3.2-ErrorCodes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_3/H.Communication3.2-ErrorCodes.js -------------------------------------------------------------------------------- /test/v1_0_3/H.Communication3.3-Versioning.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_3/H.Communication3.3-Versioning.js -------------------------------------------------------------------------------- /test/v1_0_3/H.Communication4.0-Authentication.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_3/H.Communication4.0-Authentication.js -------------------------------------------------------------------------------- /test/v1_0_3/H.Communication4.0-Authentication.js.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_3/H.Communication4.0-Authentication.js.orig -------------------------------------------------------------------------------- /test/v1_0_3/configs/accountobjects.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_3/configs/accountobjects.js -------------------------------------------------------------------------------- /test/v1_0_3/configs/activities.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_3/configs/activities.js -------------------------------------------------------------------------------- /test/v1_0_3/configs/actors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_3/configs/actors.js -------------------------------------------------------------------------------- /test/v1_0_3/configs/agents.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_3/configs/agents.js -------------------------------------------------------------------------------- /test/v1_0_3/configs/attachments.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_3/configs/attachments.js -------------------------------------------------------------------------------- /test/v1_0_3/configs/authorities.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_3/configs/authorities.js -------------------------------------------------------------------------------- /test/v1_0_3/configs/contextactivities.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_3/configs/contextactivities.js -------------------------------------------------------------------------------- /test/v1_0_3/configs/contexts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_3/configs/contexts.js -------------------------------------------------------------------------------- /test/v1_0_3/configs/durations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_3/configs/durations.js -------------------------------------------------------------------------------- /test/v1_0_3/configs/extensions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_3/configs/extensions.js -------------------------------------------------------------------------------- /test/v1_0_3/configs/formatting.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_3/configs/formatting.js -------------------------------------------------------------------------------- /test/v1_0_3/configs/groups.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_3/configs/groups.js -------------------------------------------------------------------------------- /test/v1_0_3/configs/ifis.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_3/configs/ifis.js -------------------------------------------------------------------------------- /test/v1_0_3/configs/languages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_3/configs/languages.js -------------------------------------------------------------------------------- /test/v1_0_3/configs/objects.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_3/configs/objects.js -------------------------------------------------------------------------------- /test/v1_0_3/configs/results.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_3/configs/results.js -------------------------------------------------------------------------------- /test/v1_0_3/configs/scores.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_3/configs/scores.js -------------------------------------------------------------------------------- /test/v1_0_3/configs/statementrefs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_3/configs/statementrefs.js -------------------------------------------------------------------------------- /test/v1_0_3/configs/substatements.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_3/configs/substatements.js -------------------------------------------------------------------------------- /test/v1_0_3/configs/timestamp_property.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_3/configs/timestamp_property.js -------------------------------------------------------------------------------- /test/v1_0_3/configs/timestamps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_3/configs/timestamps.js -------------------------------------------------------------------------------- /test/v1_0_3/configs/uuids.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_3/configs/uuids.js -------------------------------------------------------------------------------- /test/v1_0_3/configs/verbs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_3/configs/verbs.js -------------------------------------------------------------------------------- /test/v1_0_3/configs/verify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_3/configs/verify.js -------------------------------------------------------------------------------- /test/v1_0_3/configs/version.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_3/configs/version.js -------------------------------------------------------------------------------- /test/v1_0_3/configs/voiding.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_3/configs/voiding.js -------------------------------------------------------------------------------- /test/v1_0_3/templates/activities/choice.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_3/templates/activities/choice.json -------------------------------------------------------------------------------- /test/v1_0_3/templates/activities/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_3/templates/activities/default.json -------------------------------------------------------------------------------- /test/v1_0_3/templates/activities/description_invalid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_3/templates/activities/description_invalid.json -------------------------------------------------------------------------------- /test/v1_0_3/templates/activities/fill_in.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_3/templates/activities/fill_in.json -------------------------------------------------------------------------------- /test/v1_0_3/templates/activities/interaction_type_invalid_iri.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_3/templates/activities/interaction_type_invalid_iri.json -------------------------------------------------------------------------------- /test/v1_0_3/templates/activities/interaction_type_invalid_numeric.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_3/templates/activities/interaction_type_invalid_numeric.json -------------------------------------------------------------------------------- /test/v1_0_3/templates/activities/interaction_type_invalid_object.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_3/templates/activities/interaction_type_invalid_object.json -------------------------------------------------------------------------------- /test/v1_0_3/templates/activities/interaction_type_invalid_string.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_3/templates/activities/interaction_type_invalid_string.json -------------------------------------------------------------------------------- /test/v1_0_3/templates/activities/language_maps_valid_description.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_3/templates/activities/language_maps_valid_description.json -------------------------------------------------------------------------------- /test/v1_0_3/templates/activities/language_maps_valid_name.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_3/templates/activities/language_maps_valid_name.json -------------------------------------------------------------------------------- /test/v1_0_3/templates/activities/likert.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_3/templates/activities/likert.json -------------------------------------------------------------------------------- /test/v1_0_3/templates/activities/likert_valid_language_map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_3/templates/activities/likert_valid_language_map.json -------------------------------------------------------------------------------- /test/v1_0_3/templates/activities/long_fill_in.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_3/templates/activities/long_fill_in.json -------------------------------------------------------------------------------- /test/v1_0_3/templates/activities/matching.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_3/templates/activities/matching.json -------------------------------------------------------------------------------- /test/v1_0_3/templates/activities/matching_language_map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_3/templates/activities/matching_language_map.json -------------------------------------------------------------------------------- /test/v1_0_3/templates/activities/matching_source.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_3/templates/activities/matching_source.json -------------------------------------------------------------------------------- /test/v1_0_3/templates/activities/matching_target.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_3/templates/activities/matching_target.json -------------------------------------------------------------------------------- /test/v1_0_3/templates/activities/name_invalid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_3/templates/activities/name_invalid.json -------------------------------------------------------------------------------- /test/v1_0_3/templates/activities/no_definition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_3/templates/activities/no_definition.json -------------------------------------------------------------------------------- /test/v1_0_3/templates/activities/no_extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_3/templates/activities/no_extensions.json -------------------------------------------------------------------------------- /test/v1_0_3/templates/activities/no_id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_3/templates/activities/no_id.json -------------------------------------------------------------------------------- /test/v1_0_3/templates/activities/no_languages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_3/templates/activities/no_languages.json -------------------------------------------------------------------------------- /test/v1_0_3/templates/activities/no_objectType.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_3/templates/activities/no_objectType.json -------------------------------------------------------------------------------- /test/v1_0_3/templates/activities/numeric.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_3/templates/activities/numeric.json -------------------------------------------------------------------------------- /test/v1_0_3/templates/activities/numeric_description.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_3/templates/activities/numeric_description.json -------------------------------------------------------------------------------- /test/v1_0_3/templates/activities/numeric_name.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_3/templates/activities/numeric_name.json -------------------------------------------------------------------------------- /test/v1_0_3/templates/activities/other.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_3/templates/activities/other.json -------------------------------------------------------------------------------- /test/v1_0_3/templates/activities/performance.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_3/templates/activities/performance.json -------------------------------------------------------------------------------- /test/v1_0_3/templates/activities/sequencing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_3/templates/activities/sequencing.json -------------------------------------------------------------------------------- /test/v1_0_3/templates/activities/string_description.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_3/templates/activities/string_description.json -------------------------------------------------------------------------------- /test/v1_0_3/templates/activities/string_name.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_3/templates/activities/string_name.json -------------------------------------------------------------------------------- /test/v1_0_3/templates/activities/true_false.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_3/templates/activities/true_false.json -------------------------------------------------------------------------------- /test/v1_0_3/templates/agents/account.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_3/templates/agents/account.json -------------------------------------------------------------------------------- /test/v1_0_3/templates/agents/account_no_homepage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_3/templates/agents/account_no_homepage.json -------------------------------------------------------------------------------- /test/v1_0_3/templates/agents/account_no_name.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_3/templates/agents/account_no_name.json -------------------------------------------------------------------------------- /test/v1_0_3/templates/agents/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_3/templates/agents/default.json -------------------------------------------------------------------------------- /test/v1_0_3/templates/agents/mbox.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_3/templates/agents/mbox.json -------------------------------------------------------------------------------- /test/v1_0_3/templates/agents/mbox_sha1sum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_3/templates/agents/mbox_sha1sum.json -------------------------------------------------------------------------------- /test/v1_0_3/templates/agents/openid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_3/templates/agents/openid.json -------------------------------------------------------------------------------- /test/v1_0_3/templates/attachments/.gitattributes: -------------------------------------------------------------------------------- 1 | *.part text eol=crlf -------------------------------------------------------------------------------- /test/v1_0_3/templates/attachments/basic_image_p2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_3/templates/attachments/basic_image_p2.jpeg -------------------------------------------------------------------------------- /test/v1_0_3/templates/attachments/simple_text1.txt: -------------------------------------------------------------------------------- 1 | here is a simple attachment -------------------------------------------------------------------------------- /test/v1_0_3/templates/attachments/simple_text2.txt: -------------------------------------------------------------------------------- 1 | here is another simple attachment -------------------------------------------------------------------------------- /test/v1_0_3/templates/attachments/simple_text3.txt: -------------------------------------------------------------------------------- 1 | here is a third attachment -------------------------------------------------------------------------------- /test/v1_0_3/templates/contexts/all_activities.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_3/templates/contexts/all_activities.json -------------------------------------------------------------------------------- /test/v1_0_3/templates/contexts/category.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_3/templates/contexts/category.json -------------------------------------------------------------------------------- /test/v1_0_3/templates/contexts/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_3/templates/contexts/default.json -------------------------------------------------------------------------------- /test/v1_0_3/templates/contexts/grouping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_3/templates/contexts/grouping.json -------------------------------------------------------------------------------- /test/v1_0_3/templates/contexts/instructor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_3/templates/contexts/instructor.json -------------------------------------------------------------------------------- /test/v1_0_3/templates/contexts/invalid_activity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_3/templates/contexts/invalid_activity.json -------------------------------------------------------------------------------- /test/v1_0_3/templates/contexts/no_extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_3/templates/contexts/no_extensions.json -------------------------------------------------------------------------------- /test/v1_0_3/templates/contexts/no_platform.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_3/templates/contexts/no_platform.json -------------------------------------------------------------------------------- /test/v1_0_3/templates/contexts/no_revision.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_3/templates/contexts/no_revision.json -------------------------------------------------------------------------------- /test/v1_0_3/templates/contexts/other.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_3/templates/contexts/other.json -------------------------------------------------------------------------------- /test/v1_0_3/templates/contexts/parent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_3/templates/contexts/parent.json -------------------------------------------------------------------------------- /test/v1_0_3/templates/contexts/team.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_3/templates/contexts/team.json -------------------------------------------------------------------------------- /test/v1_0_3/templates/groups/anonymous.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_3/templates/groups/anonymous.json -------------------------------------------------------------------------------- /test/v1_0_3/templates/groups/anonymous_no_member.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_3/templates/groups/anonymous_no_member.json -------------------------------------------------------------------------------- /test/v1_0_3/templates/groups/anonymous_two_member.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_3/templates/groups/anonymous_two_member.json -------------------------------------------------------------------------------- /test/v1_0_3/templates/groups/authority_group.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_3/templates/groups/authority_group.json -------------------------------------------------------------------------------- /test/v1_0_3/templates/groups/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_3/templates/groups/default.json -------------------------------------------------------------------------------- /test/v1_0_3/templates/groups/identified_account.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_3/templates/groups/identified_account.json -------------------------------------------------------------------------------- /test/v1_0_3/templates/groups/identified_account_no_homepage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_3/templates/groups/identified_account_no_homepage.json -------------------------------------------------------------------------------- /test/v1_0_3/templates/groups/identified_account_no_member.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_3/templates/groups/identified_account_no_member.json -------------------------------------------------------------------------------- /test/v1_0_3/templates/groups/identified_account_no_name.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_3/templates/groups/identified_account_no_name.json -------------------------------------------------------------------------------- /test/v1_0_3/templates/groups/identified_mbox.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_3/templates/groups/identified_mbox.json -------------------------------------------------------------------------------- /test/v1_0_3/templates/groups/identified_mbox_no_member.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_3/templates/groups/identified_mbox_no_member.json -------------------------------------------------------------------------------- /test/v1_0_3/templates/groups/identified_mbox_sha1sum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_3/templates/groups/identified_mbox_sha1sum.json -------------------------------------------------------------------------------- /test/v1_0_3/templates/groups/identified_mbox_sha1sum_no_member.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_3/templates/groups/identified_mbox_sha1sum_no_member.json -------------------------------------------------------------------------------- /test/v1_0_3/templates/groups/identified_openid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_3/templates/groups/identified_openid.json -------------------------------------------------------------------------------- /test/v1_0_3/templates/groups/identified_openid_no_member.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_3/templates/groups/identified_openid_no_member.json -------------------------------------------------------------------------------- /test/v1_0_3/templates/results/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_3/templates/results/default.json -------------------------------------------------------------------------------- /test/v1_0_3/templates/results/no_extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_3/templates/results/no_extensions.json -------------------------------------------------------------------------------- /test/v1_0_3/templates/statements/actor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_3/templates/statements/actor.json -------------------------------------------------------------------------------- /test/v1_0_3/templates/statements/attachment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_3/templates/statements/attachment.json -------------------------------------------------------------------------------- /test/v1_0_3/templates/statements/authority.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_3/templates/statements/authority.json -------------------------------------------------------------------------------- /test/v1_0_3/templates/statements/context.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_3/templates/statements/context.json -------------------------------------------------------------------------------- /test/v1_0_3/templates/statements/context_sans_objectType.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_3/templates/statements/context_sans_objectType.json -------------------------------------------------------------------------------- /test/v1_0_3/templates/statements/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_3/templates/statements/default.json -------------------------------------------------------------------------------- /test/v1_0_3/templates/statements/multiple_actor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_3/templates/statements/multiple_actor.json -------------------------------------------------------------------------------- /test/v1_0_3/templates/statements/no_actor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_3/templates/statements/no_actor.json -------------------------------------------------------------------------------- /test/v1_0_3/templates/statements/no_object.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_3/templates/statements/no_object.json -------------------------------------------------------------------------------- /test/v1_0_3/templates/statements/no_verb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_3/templates/statements/no_verb.json -------------------------------------------------------------------------------- /test/v1_0_3/templates/statements/object_activity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_3/templates/statements/object_activity.json -------------------------------------------------------------------------------- /test/v1_0_3/templates/statements/object_actor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_3/templates/statements/object_actor.json -------------------------------------------------------------------------------- /test/v1_0_3/templates/statements/object_agent_default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_3/templates/statements/object_agent_default.json -------------------------------------------------------------------------------- /test/v1_0_3/templates/statements/object_group_default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_3/templates/statements/object_group_default.json -------------------------------------------------------------------------------- /test/v1_0_3/templates/statements/object_statementref.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_3/templates/statements/object_statementref.json -------------------------------------------------------------------------------- /test/v1_0_3/templates/statements/object_statementref_no_id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_3/templates/statements/object_statementref_no_id.json -------------------------------------------------------------------------------- /test/v1_0_3/templates/statements/object_substatement.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_3/templates/statements/object_substatement.json -------------------------------------------------------------------------------- /test/v1_0_3/templates/statements/object_substatement_default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_3/templates/statements/object_substatement_default.json -------------------------------------------------------------------------------- /test/v1_0_3/templates/statements/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_3/templates/statements/result.json -------------------------------------------------------------------------------- /test/v1_0_3/templates/statements/unicode.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_3/templates/statements/unicode.json -------------------------------------------------------------------------------- /test/v1_0_3/templates/statements/verb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_3/templates/statements/verb.json -------------------------------------------------------------------------------- /test/v1_0_3/templates/statements/voiding.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_3/templates/statements/voiding.json -------------------------------------------------------------------------------- /test/v1_0_3/templates/substatements/activity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_3/templates/substatements/activity.json -------------------------------------------------------------------------------- /test/v1_0_3/templates/substatements/activity_definition_description.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_3/templates/substatements/activity_definition_description.json -------------------------------------------------------------------------------- /test/v1_0_3/templates/substatements/activity_definition_description_invalid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_3/templates/substatements/activity_definition_description_invalid.json -------------------------------------------------------------------------------- /test/v1_0_3/templates/substatements/activity_definition_name.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_3/templates/substatements/activity_definition_name.json -------------------------------------------------------------------------------- /test/v1_0_3/templates/substatements/activity_definition_name_invalid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_3/templates/substatements/activity_definition_name_invalid.json -------------------------------------------------------------------------------- /test/v1_0_3/templates/substatements/actor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_3/templates/substatements/actor.json -------------------------------------------------------------------------------- /test/v1_0_3/templates/substatements/agent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_3/templates/substatements/agent.json -------------------------------------------------------------------------------- /test/v1_0_3/templates/substatements/agent_default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_3/templates/substatements/agent_default.json -------------------------------------------------------------------------------- /test/v1_0_3/templates/substatements/context.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_3/templates/substatements/context.json -------------------------------------------------------------------------------- /test/v1_0_3/templates/substatements/context_invalid_language_map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_3/templates/substatements/context_invalid_language_map.json -------------------------------------------------------------------------------- /test/v1_0_3/templates/substatements/context_valid_language_map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_3/templates/substatements/context_valid_language_map.json -------------------------------------------------------------------------------- /test/v1_0_3/templates/substatements/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_3/templates/substatements/default.json -------------------------------------------------------------------------------- /test/v1_0_3/templates/substatements/group.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_3/templates/substatements/group.json -------------------------------------------------------------------------------- /test/v1_0_3/templates/substatements/group_default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_3/templates/substatements/group_default.json -------------------------------------------------------------------------------- /test/v1_0_3/templates/substatements/interaction_component_invalid_language_map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_3/templates/substatements/interaction_component_invalid_language_map.json -------------------------------------------------------------------------------- /test/v1_0_3/templates/substatements/interaction_component_valid_language_map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_3/templates/substatements/interaction_component_valid_language_map.json -------------------------------------------------------------------------------- /test/v1_0_3/templates/substatements/no_actor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_3/templates/substatements/no_actor.json -------------------------------------------------------------------------------- /test/v1_0_3/templates/substatements/no_object.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_3/templates/substatements/no_object.json -------------------------------------------------------------------------------- /test/v1_0_3/templates/substatements/no_verb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_3/templates/substatements/no_verb.json -------------------------------------------------------------------------------- /test/v1_0_3/templates/substatements/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_3/templates/substatements/result.json -------------------------------------------------------------------------------- /test/v1_0_3/templates/substatements/statementref.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_3/templates/substatements/statementref.json -------------------------------------------------------------------------------- /test/v1_0_3/templates/substatements/statementref_no_id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_3/templates/substatements/statementref_no_id.json -------------------------------------------------------------------------------- /test/v1_0_3/templates/substatements/verb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_3/templates/substatements/verb.json -------------------------------------------------------------------------------- /test/v1_0_3/templates/substatements/verb_invalid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_3/templates/substatements/verb_invalid.json -------------------------------------------------------------------------------- /test/v1_0_3/templates/substatements/verb_valid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_3/templates/substatements/verb_valid.json -------------------------------------------------------------------------------- /test/v1_0_3/templates/verbs/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_3/templates/verbs/default.json -------------------------------------------------------------------------------- /test/v1_0_3/templates/verbs/no_display.json: -------------------------------------------------------------------------------- 1 | { 2 | "id": "http://adlnet.gov/expapi/verbs/attended" 3 | } -------------------------------------------------------------------------------- /test/v1_0_3/templates/verbs/no_id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_3/templates/verbs/no_id.json -------------------------------------------------------------------------------- /test/v1_0_3/templates/verbs/voided.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v1_0_3/templates/verbs/voided.json -------------------------------------------------------------------------------- /test/v2_0/4.1.3-Content-Types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v2_0/4.1.3-Content-Types.js -------------------------------------------------------------------------------- /test/v2_0/4.1.4-Concurrency.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v2_0/4.1.4-Concurrency.js -------------------------------------------------------------------------------- /test/v2_0/4.1.6.1-Statement-Resource.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v2_0/4.1.6.1-Statement-Resource.js -------------------------------------------------------------------------------- /test/v2_0/4.1.6.2-State-Resource.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v2_0/4.1.6.2-State-Resource.js -------------------------------------------------------------------------------- /test/v2_0/4.1.6.3-Agents-Resource.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v2_0/4.1.6.3-Agents-Resource.js -------------------------------------------------------------------------------- /test/v2_0/4.1.6.4-Activity-Resource.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v2_0/4.1.6.4-Activity-Resource.js -------------------------------------------------------------------------------- /test/v2_0/4.1.6.5-Agent-Profile-Resource.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v2_0/4.1.6.5-Agent-Profile-Resource.js -------------------------------------------------------------------------------- /test/v2_0/4.1.6.6-Activity-Profile-Resource.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v2_0/4.1.6.6-Activity-Profile-Resource.js -------------------------------------------------------------------------------- /test/v2_0/4.1.6.7-About-Resource.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v2_0/4.1.6.7-About-Resource.js -------------------------------------------------------------------------------- /test/v2_0/4.2.2.1-Actor-Requirements.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v2_0/4.2.2.1-Actor-Requirements.js -------------------------------------------------------------------------------- /test/v2_0/4.2.2.2-Verb-Requirements.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v2_0/4.2.2.2-Verb-Requirements.js -------------------------------------------------------------------------------- /test/v2_0/4.2.2.3-Object-Requirements.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v2_0/4.2.2.3-Object-Requirements.js -------------------------------------------------------------------------------- /test/v2_0/4.2.2.4-Result-Requirements.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v2_0/4.2.2.4-Result-Requirements.js -------------------------------------------------------------------------------- /test/v2_0/4.2.2.5-Context-Requirements.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v2_0/4.2.2.5-Context-Requirements.js -------------------------------------------------------------------------------- /test/v2_0/4.2.2.6-Attachment-Requirements.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v2_0/4.2.2.6-Attachment-Requirements.js -------------------------------------------------------------------------------- /test/v2_0/4.2.4.2-Authority-Requirements.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v2_0/4.2.4.2-Authority-Requirements.js -------------------------------------------------------------------------------- /test/v2_0/4.2.4.2-ID-Requirements.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v2_0/4.2.4.2-ID-Requirements.js -------------------------------------------------------------------------------- /test/v2_0/4.2.4.2-Stored-Requirements.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v2_0/4.2.4.2-Stored-Requirements.js -------------------------------------------------------------------------------- /test/v2_0/4.2.4.2-Timestamp-Requirements.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v2_0/4.2.4.2-Timestamp-Requirements.js -------------------------------------------------------------------------------- /test/v2_0/4.2.4.3-Version-Requirements.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v2_0/4.2.4.3-Version-Requirements.js -------------------------------------------------------------------------------- /test/v2_0/4.2.5-Statement-Voiding.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v2_0/4.2.5-Statement-Voiding.js -------------------------------------------------------------------------------- /test/v2_0/4.2.7-Additional-Requirements-for-Data-Types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v2_0/4.2.7-Additional-Requirements-for-Data-Types.js -------------------------------------------------------------------------------- /test/v2_0/Data2.2-FormattingRequirements.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v2_0/Data2.2-FormattingRequirements.js -------------------------------------------------------------------------------- /test/v2_0/E.Data2.5-RetrievalofStatements.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v2_0/E.Data2.5-RetrievalofStatements.js -------------------------------------------------------------------------------- /test/v2_0/E.Data2.6-SignedStatements.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v2_0/E.Data2.6-SignedStatements.js -------------------------------------------------------------------------------- /test/v2_0/E.Data4.0-SpecialDataTypesAndRules.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v2_0/E.Data4.0-SpecialDataTypesAndRules.js -------------------------------------------------------------------------------- /test/v2_0/H.Communication1.1-HeadRequestImplementation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v2_0/H.Communication1.1-HeadRequestImplementation.js -------------------------------------------------------------------------------- /test/v2_0/H.Communication1.2-Headers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v2_0/H.Communication1.2-Headers.js -------------------------------------------------------------------------------- /test/v2_0/H.Communication1.3-AlternateRequestSyntax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v2_0/H.Communication1.3-AlternateRequestSyntax.js -------------------------------------------------------------------------------- /test/v2_0/H.Communication1.4-Encoding.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v2_0/H.Communication1.4-Encoding.js -------------------------------------------------------------------------------- /test/v2_0/H.Communication2.2-DocumentResources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v2_0/H.Communication2.2-DocumentResources.js -------------------------------------------------------------------------------- /test/v2_0/H.Communication3.2-ErrorCodes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v2_0/H.Communication3.2-ErrorCodes.js -------------------------------------------------------------------------------- /test/v2_0/H.Communication3.3-Versioning.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v2_0/H.Communication3.3-Versioning.js -------------------------------------------------------------------------------- /test/v2_0/H.Communication4.0-Authentication.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v2_0/H.Communication4.0-Authentication.js -------------------------------------------------------------------------------- /test/v2_0/configs/accountobjects.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v2_0/configs/accountobjects.js -------------------------------------------------------------------------------- /test/v2_0/configs/activities.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v2_0/configs/activities.js -------------------------------------------------------------------------------- /test/v2_0/configs/actors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v2_0/configs/actors.js -------------------------------------------------------------------------------- /test/v2_0/configs/agents.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v2_0/configs/agents.js -------------------------------------------------------------------------------- /test/v2_0/configs/attachments.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v2_0/configs/attachments.js -------------------------------------------------------------------------------- /test/v2_0/configs/authorities.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v2_0/configs/authorities.js -------------------------------------------------------------------------------- /test/v2_0/configs/contextactivities.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v2_0/configs/contextactivities.js -------------------------------------------------------------------------------- /test/v2_0/configs/contextagents.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v2_0/configs/contextagents.js -------------------------------------------------------------------------------- /test/v2_0/configs/contextgroups.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v2_0/configs/contextgroups.js -------------------------------------------------------------------------------- /test/v2_0/configs/contexts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v2_0/configs/contexts.js -------------------------------------------------------------------------------- /test/v2_0/configs/durations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v2_0/configs/durations.js -------------------------------------------------------------------------------- /test/v2_0/configs/extensions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v2_0/configs/extensions.js -------------------------------------------------------------------------------- /test/v2_0/configs/formatting.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v2_0/configs/formatting.js -------------------------------------------------------------------------------- /test/v2_0/configs/groups.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v2_0/configs/groups.js -------------------------------------------------------------------------------- /test/v2_0/configs/ifis.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v2_0/configs/ifis.js -------------------------------------------------------------------------------- /test/v2_0/configs/languages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v2_0/configs/languages.js -------------------------------------------------------------------------------- /test/v2_0/configs/objects.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v2_0/configs/objects.js -------------------------------------------------------------------------------- /test/v2_0/configs/results.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v2_0/configs/results.js -------------------------------------------------------------------------------- /test/v2_0/configs/scores.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v2_0/configs/scores.js -------------------------------------------------------------------------------- /test/v2_0/configs/statementrefs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v2_0/configs/statementrefs.js -------------------------------------------------------------------------------- /test/v2_0/configs/substatements.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v2_0/configs/substatements.js -------------------------------------------------------------------------------- /test/v2_0/configs/timestamp_property.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v2_0/configs/timestamp_property.js -------------------------------------------------------------------------------- /test/v2_0/configs/timestamps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v2_0/configs/timestamps.js -------------------------------------------------------------------------------- /test/v2_0/configs/uuids.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v2_0/configs/uuids.js -------------------------------------------------------------------------------- /test/v2_0/configs/verbs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v2_0/configs/verbs.js -------------------------------------------------------------------------------- /test/v2_0/configs/verify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v2_0/configs/verify.js -------------------------------------------------------------------------------- /test/v2_0/configs/version.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v2_0/configs/version.js -------------------------------------------------------------------------------- /test/v2_0/configs/voiding.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v2_0/configs/voiding.js -------------------------------------------------------------------------------- /test/v2_0/templates/activities/choice.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v2_0/templates/activities/choice.json -------------------------------------------------------------------------------- /test/v2_0/templates/activities/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v2_0/templates/activities/default.json -------------------------------------------------------------------------------- /test/v2_0/templates/activities/description_invalid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v2_0/templates/activities/description_invalid.json -------------------------------------------------------------------------------- /test/v2_0/templates/activities/fill_in.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v2_0/templates/activities/fill_in.json -------------------------------------------------------------------------------- /test/v2_0/templates/activities/interaction_type_invalid_iri.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v2_0/templates/activities/interaction_type_invalid_iri.json -------------------------------------------------------------------------------- /test/v2_0/templates/activities/interaction_type_invalid_numeric.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v2_0/templates/activities/interaction_type_invalid_numeric.json -------------------------------------------------------------------------------- /test/v2_0/templates/activities/interaction_type_invalid_object.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v2_0/templates/activities/interaction_type_invalid_object.json -------------------------------------------------------------------------------- /test/v2_0/templates/activities/interaction_type_invalid_string.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v2_0/templates/activities/interaction_type_invalid_string.json -------------------------------------------------------------------------------- /test/v2_0/templates/activities/language_maps_valid_description.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v2_0/templates/activities/language_maps_valid_description.json -------------------------------------------------------------------------------- /test/v2_0/templates/activities/language_maps_valid_name.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v2_0/templates/activities/language_maps_valid_name.json -------------------------------------------------------------------------------- /test/v2_0/templates/activities/likert.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v2_0/templates/activities/likert.json -------------------------------------------------------------------------------- /test/v2_0/templates/activities/likert_valid_language_map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v2_0/templates/activities/likert_valid_language_map.json -------------------------------------------------------------------------------- /test/v2_0/templates/activities/long_fill_in.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v2_0/templates/activities/long_fill_in.json -------------------------------------------------------------------------------- /test/v2_0/templates/activities/matching.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v2_0/templates/activities/matching.json -------------------------------------------------------------------------------- /test/v2_0/templates/activities/matching_language_map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v2_0/templates/activities/matching_language_map.json -------------------------------------------------------------------------------- /test/v2_0/templates/activities/matching_source.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v2_0/templates/activities/matching_source.json -------------------------------------------------------------------------------- /test/v2_0/templates/activities/matching_target.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v2_0/templates/activities/matching_target.json -------------------------------------------------------------------------------- /test/v2_0/templates/activities/name_invalid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v2_0/templates/activities/name_invalid.json -------------------------------------------------------------------------------- /test/v2_0/templates/activities/no_definition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v2_0/templates/activities/no_definition.json -------------------------------------------------------------------------------- /test/v2_0/templates/activities/no_extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v2_0/templates/activities/no_extensions.json -------------------------------------------------------------------------------- /test/v2_0/templates/activities/no_id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v2_0/templates/activities/no_id.json -------------------------------------------------------------------------------- /test/v2_0/templates/activities/no_languages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v2_0/templates/activities/no_languages.json -------------------------------------------------------------------------------- /test/v2_0/templates/activities/no_objectType.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v2_0/templates/activities/no_objectType.json -------------------------------------------------------------------------------- /test/v2_0/templates/activities/numeric.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v2_0/templates/activities/numeric.json -------------------------------------------------------------------------------- /test/v2_0/templates/activities/numeric_description.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v2_0/templates/activities/numeric_description.json -------------------------------------------------------------------------------- /test/v2_0/templates/activities/numeric_name.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v2_0/templates/activities/numeric_name.json -------------------------------------------------------------------------------- /test/v2_0/templates/activities/other.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v2_0/templates/activities/other.json -------------------------------------------------------------------------------- /test/v2_0/templates/activities/performance.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v2_0/templates/activities/performance.json -------------------------------------------------------------------------------- /test/v2_0/templates/activities/sequencing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v2_0/templates/activities/sequencing.json -------------------------------------------------------------------------------- /test/v2_0/templates/activities/string_description.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v2_0/templates/activities/string_description.json -------------------------------------------------------------------------------- /test/v2_0/templates/activities/string_name.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v2_0/templates/activities/string_name.json -------------------------------------------------------------------------------- /test/v2_0/templates/activities/true_false.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v2_0/templates/activities/true_false.json -------------------------------------------------------------------------------- /test/v2_0/templates/agents/account.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v2_0/templates/agents/account.json -------------------------------------------------------------------------------- /test/v2_0/templates/agents/account_no_homepage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v2_0/templates/agents/account_no_homepage.json -------------------------------------------------------------------------------- /test/v2_0/templates/agents/account_no_name.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v2_0/templates/agents/account_no_name.json -------------------------------------------------------------------------------- /test/v2_0/templates/agents/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v2_0/templates/agents/default.json -------------------------------------------------------------------------------- /test/v2_0/templates/agents/mbox.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v2_0/templates/agents/mbox.json -------------------------------------------------------------------------------- /test/v2_0/templates/agents/mbox_sha1sum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v2_0/templates/agents/mbox_sha1sum.json -------------------------------------------------------------------------------- /test/v2_0/templates/agents/openid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v2_0/templates/agents/openid.json -------------------------------------------------------------------------------- /test/v2_0/templates/attachments/.gitattributes: -------------------------------------------------------------------------------- 1 | *.part text eol=crlf -------------------------------------------------------------------------------- /test/v2_0/templates/attachments/basic_image_p2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v2_0/templates/attachments/basic_image_p2.jpeg -------------------------------------------------------------------------------- /test/v2_0/templates/attachments/simple_text1.txt: -------------------------------------------------------------------------------- 1 | here is a simple attachment -------------------------------------------------------------------------------- /test/v2_0/templates/attachments/simple_text2.txt: -------------------------------------------------------------------------------- 1 | here is another simple attachment -------------------------------------------------------------------------------- /test/v2_0/templates/attachments/simple_text3.txt: -------------------------------------------------------------------------------- 1 | here is a third attachment -------------------------------------------------------------------------------- /test/v2_0/templates/contexts/all_activities.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v2_0/templates/contexts/all_activities.json -------------------------------------------------------------------------------- /test/v2_0/templates/contexts/category.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v2_0/templates/contexts/category.json -------------------------------------------------------------------------------- /test/v2_0/templates/contexts/context_agents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v2_0/templates/contexts/context_agents.json -------------------------------------------------------------------------------- /test/v2_0/templates/contexts/context_groups.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v2_0/templates/contexts/context_groups.json -------------------------------------------------------------------------------- /test/v2_0/templates/contexts/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v2_0/templates/contexts/default.json -------------------------------------------------------------------------------- /test/v2_0/templates/contexts/grouping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v2_0/templates/contexts/grouping.json -------------------------------------------------------------------------------- /test/v2_0/templates/contexts/instructor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v2_0/templates/contexts/instructor.json -------------------------------------------------------------------------------- /test/v2_0/templates/contexts/invalid_activity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v2_0/templates/contexts/invalid_activity.json -------------------------------------------------------------------------------- /test/v2_0/templates/contexts/no_extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v2_0/templates/contexts/no_extensions.json -------------------------------------------------------------------------------- /test/v2_0/templates/contexts/no_platform.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v2_0/templates/contexts/no_platform.json -------------------------------------------------------------------------------- /test/v2_0/templates/contexts/no_revision.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v2_0/templates/contexts/no_revision.json -------------------------------------------------------------------------------- /test/v2_0/templates/contexts/other.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v2_0/templates/contexts/other.json -------------------------------------------------------------------------------- /test/v2_0/templates/contexts/parent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v2_0/templates/contexts/parent.json -------------------------------------------------------------------------------- /test/v2_0/templates/contexts/team.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v2_0/templates/contexts/team.json -------------------------------------------------------------------------------- /test/v2_0/templates/groups/anonymous.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v2_0/templates/groups/anonymous.json -------------------------------------------------------------------------------- /test/v2_0/templates/groups/anonymous_no_member.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v2_0/templates/groups/anonymous_no_member.json -------------------------------------------------------------------------------- /test/v2_0/templates/groups/anonymous_two_member.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v2_0/templates/groups/anonymous_two_member.json -------------------------------------------------------------------------------- /test/v2_0/templates/groups/authority_group.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v2_0/templates/groups/authority_group.json -------------------------------------------------------------------------------- /test/v2_0/templates/groups/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v2_0/templates/groups/default.json -------------------------------------------------------------------------------- /test/v2_0/templates/groups/identified_account.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v2_0/templates/groups/identified_account.json -------------------------------------------------------------------------------- /test/v2_0/templates/groups/identified_account_no_homepage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v2_0/templates/groups/identified_account_no_homepage.json -------------------------------------------------------------------------------- /test/v2_0/templates/groups/identified_account_no_member.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v2_0/templates/groups/identified_account_no_member.json -------------------------------------------------------------------------------- /test/v2_0/templates/groups/identified_account_no_name.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v2_0/templates/groups/identified_account_no_name.json -------------------------------------------------------------------------------- /test/v2_0/templates/groups/identified_mbox.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v2_0/templates/groups/identified_mbox.json -------------------------------------------------------------------------------- /test/v2_0/templates/groups/identified_mbox_no_member.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v2_0/templates/groups/identified_mbox_no_member.json -------------------------------------------------------------------------------- /test/v2_0/templates/groups/identified_mbox_sha1sum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v2_0/templates/groups/identified_mbox_sha1sum.json -------------------------------------------------------------------------------- /test/v2_0/templates/groups/identified_mbox_sha1sum_no_member.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v2_0/templates/groups/identified_mbox_sha1sum_no_member.json -------------------------------------------------------------------------------- /test/v2_0/templates/groups/identified_openid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v2_0/templates/groups/identified_openid.json -------------------------------------------------------------------------------- /test/v2_0/templates/groups/identified_openid_no_member.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v2_0/templates/groups/identified_openid_no_member.json -------------------------------------------------------------------------------- /test/v2_0/templates/results/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v2_0/templates/results/default.json -------------------------------------------------------------------------------- /test/v2_0/templates/results/no_extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v2_0/templates/results/no_extensions.json -------------------------------------------------------------------------------- /test/v2_0/templates/statements/actor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v2_0/templates/statements/actor.json -------------------------------------------------------------------------------- /test/v2_0/templates/statements/attachment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v2_0/templates/statements/attachment.json -------------------------------------------------------------------------------- /test/v2_0/templates/statements/authority.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v2_0/templates/statements/authority.json -------------------------------------------------------------------------------- /test/v2_0/templates/statements/context.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v2_0/templates/statements/context.json -------------------------------------------------------------------------------- /test/v2_0/templates/statements/context_sans_objectType.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v2_0/templates/statements/context_sans_objectType.json -------------------------------------------------------------------------------- /test/v2_0/templates/statements/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v2_0/templates/statements/default.json -------------------------------------------------------------------------------- /test/v2_0/templates/statements/multiple_actor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v2_0/templates/statements/multiple_actor.json -------------------------------------------------------------------------------- /test/v2_0/templates/statements/no_actor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v2_0/templates/statements/no_actor.json -------------------------------------------------------------------------------- /test/v2_0/templates/statements/no_object.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v2_0/templates/statements/no_object.json -------------------------------------------------------------------------------- /test/v2_0/templates/statements/no_verb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v2_0/templates/statements/no_verb.json -------------------------------------------------------------------------------- /test/v2_0/templates/statements/object_activity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v2_0/templates/statements/object_activity.json -------------------------------------------------------------------------------- /test/v2_0/templates/statements/object_actor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v2_0/templates/statements/object_actor.json -------------------------------------------------------------------------------- /test/v2_0/templates/statements/object_agent_default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v2_0/templates/statements/object_agent_default.json -------------------------------------------------------------------------------- /test/v2_0/templates/statements/object_group_default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v2_0/templates/statements/object_group_default.json -------------------------------------------------------------------------------- /test/v2_0/templates/statements/object_statementref.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v2_0/templates/statements/object_statementref.json -------------------------------------------------------------------------------- /test/v2_0/templates/statements/object_statementref_no_id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v2_0/templates/statements/object_statementref_no_id.json -------------------------------------------------------------------------------- /test/v2_0/templates/statements/object_substatement.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v2_0/templates/statements/object_substatement.json -------------------------------------------------------------------------------- /test/v2_0/templates/statements/object_substatement_default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v2_0/templates/statements/object_substatement_default.json -------------------------------------------------------------------------------- /test/v2_0/templates/statements/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v2_0/templates/statements/result.json -------------------------------------------------------------------------------- /test/v2_0/templates/statements/unicode.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v2_0/templates/statements/unicode.json -------------------------------------------------------------------------------- /test/v2_0/templates/statements/verb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v2_0/templates/statements/verb.json -------------------------------------------------------------------------------- /test/v2_0/templates/statements/voiding.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v2_0/templates/statements/voiding.json -------------------------------------------------------------------------------- /test/v2_0/templates/substatements/activity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v2_0/templates/substatements/activity.json -------------------------------------------------------------------------------- /test/v2_0/templates/substatements/activity_definition_description.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v2_0/templates/substatements/activity_definition_description.json -------------------------------------------------------------------------------- /test/v2_0/templates/substatements/activity_definition_description_invalid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v2_0/templates/substatements/activity_definition_description_invalid.json -------------------------------------------------------------------------------- /test/v2_0/templates/substatements/activity_definition_name.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v2_0/templates/substatements/activity_definition_name.json -------------------------------------------------------------------------------- /test/v2_0/templates/substatements/activity_definition_name_invalid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v2_0/templates/substatements/activity_definition_name_invalid.json -------------------------------------------------------------------------------- /test/v2_0/templates/substatements/actor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v2_0/templates/substatements/actor.json -------------------------------------------------------------------------------- /test/v2_0/templates/substatements/agent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v2_0/templates/substatements/agent.json -------------------------------------------------------------------------------- /test/v2_0/templates/substatements/agent_default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v2_0/templates/substatements/agent_default.json -------------------------------------------------------------------------------- /test/v2_0/templates/substatements/context.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v2_0/templates/substatements/context.json -------------------------------------------------------------------------------- /test/v2_0/templates/substatements/context_invalid_language_map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v2_0/templates/substatements/context_invalid_language_map.json -------------------------------------------------------------------------------- /test/v2_0/templates/substatements/context_valid_language_map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v2_0/templates/substatements/context_valid_language_map.json -------------------------------------------------------------------------------- /test/v2_0/templates/substatements/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v2_0/templates/substatements/default.json -------------------------------------------------------------------------------- /test/v2_0/templates/substatements/group.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v2_0/templates/substatements/group.json -------------------------------------------------------------------------------- /test/v2_0/templates/substatements/group_default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v2_0/templates/substatements/group_default.json -------------------------------------------------------------------------------- /test/v2_0/templates/substatements/interaction_component_invalid_language_map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v2_0/templates/substatements/interaction_component_invalid_language_map.json -------------------------------------------------------------------------------- /test/v2_0/templates/substatements/interaction_component_valid_language_map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v2_0/templates/substatements/interaction_component_valid_language_map.json -------------------------------------------------------------------------------- /test/v2_0/templates/substatements/no_actor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v2_0/templates/substatements/no_actor.json -------------------------------------------------------------------------------- /test/v2_0/templates/substatements/no_object.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v2_0/templates/substatements/no_object.json -------------------------------------------------------------------------------- /test/v2_0/templates/substatements/no_verb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v2_0/templates/substatements/no_verb.json -------------------------------------------------------------------------------- /test/v2_0/templates/substatements/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v2_0/templates/substatements/result.json -------------------------------------------------------------------------------- /test/v2_0/templates/substatements/statementref.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v2_0/templates/substatements/statementref.json -------------------------------------------------------------------------------- /test/v2_0/templates/substatements/statementref_no_id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v2_0/templates/substatements/statementref_no_id.json -------------------------------------------------------------------------------- /test/v2_0/templates/substatements/verb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v2_0/templates/substatements/verb.json -------------------------------------------------------------------------------- /test/v2_0/templates/substatements/verb_invalid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v2_0/templates/substatements/verb_invalid.json -------------------------------------------------------------------------------- /test/v2_0/templates/substatements/verb_valid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v2_0/templates/substatements/verb_valid.json -------------------------------------------------------------------------------- /test/v2_0/templates/verbs/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v2_0/templates/verbs/default.json -------------------------------------------------------------------------------- /test/v2_0/templates/verbs/no_display.json: -------------------------------------------------------------------------------- 1 | { 2 | "id": "http://adlnet.gov/expapi/verbs/attended" 3 | } -------------------------------------------------------------------------------- /test/v2_0/templates/verbs/no_id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v2_0/templates/verbs/no_id.json -------------------------------------------------------------------------------- /test/v2_0/templates/verbs/voided.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v2_0/templates/verbs/voided.json -------------------------------------------------------------------------------- /test/v2_0/util/requests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/test/v2_0/util/requests.js -------------------------------------------------------------------------------- /version.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlnet/lrs-conformance-test-suite/HEAD/version.js --------------------------------------------------------------------------------