diff --git a/mod/lti/tests/generator/behat_mod_lti_generator.php b/mod/lti/tests/generator/behat_mod_lti_generator.php index b887525b954..ce48bc59f59 100644 --- a/mod/lti/tests/generator/behat_mod_lti_generator.php +++ b/mod/lti/tests/generator/behat_mod_lti_generator.php @@ -44,6 +44,7 @@ class behat_mod_lti_generator extends behat_generator_base { 'singular' => 'tool type', 'datagenerator' => 'tool_types', 'required' => ['baseurl'], + 'switchids' => ['lti_coursecategories' => 'lti_coursecategories'] ], 'course tools' => [ 'singular' => 'course tool', @@ -74,4 +75,24 @@ class behat_mod_lti_generator extends behat_generator_base { } return (int) $id; } + + /** + * Handles the switchid ['lti_coursecategories' => 'lti_coursecategories'] for restricting a tool to certain categories. + * + * @param string $idnumbers a comma-separated string containing the course category id numbers, e.g. 'cata, catb, catc'. + * @return string a comma-separated string containing the course category ids. + * @throws coding_exception if one or more of the categories is unable to be matched by its idnumber. + */ + protected function get_lti_coursecategories_id(string $idnumbers): string { + global $DB; + $categoryids = array_map('trim', explode(',', $idnumbers)); + + [$insql, $inparams] = $DB->get_in_or_equal($categoryids); + $ids = $DB->get_fieldset_sql("SELECT id FROM {course_categories} WHERE idnumber $insql", $inparams); + if (!$ids || count($ids) != count($categoryids)) { + throw new coding_exception("One or more course categories unable to be matched using idnumbers: $idnumbers"); + } + + return implode(',', $ids); + } }