-
Notifications
You must be signed in to change notification settings - Fork 103
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rewrite behat tests to be more efficient.
- Loading branch information
Showing
9 changed files
with
331 additions
and
169 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,218 @@ | ||
<?php | ||
// This file is part of Moodle - http://moodle.org/ | ||
// | ||
// Moodle is free software: you can redistribute it and/or modify | ||
// it under the terms of the GNU General Public License as published by | ||
// the Free Software Foundation, either version 3 of the License, or | ||
// (at your option) any later version. | ||
// | ||
// Moodle is distributed in the hope that it will be useful, | ||
// but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
// GNU General Public License for more details. | ||
// | ||
// You should have received a copy of the GNU General Public License | ||
// along with Moodle. If not, see <http://www.gnu.org/licenses/>. | ||
|
||
/** | ||
* Behat steps for the custom SQL report. | ||
* | ||
* All these steps include the phrase 'custom SQL report'. | ||
* | ||
* @package report_customsql | ||
* @copyright 2019 The Open University | ||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later | ||
*/ | ||
|
||
// NOTE: no MOODLE_INTERNAL test because this file is required by Behat. | ||
|
||
require_once(__DIR__ . '/../../../../lib/behat/behat_base.php'); | ||
|
||
use Behat\Gherkin\Node\PyStringNode as PyStringNode; | ||
use Behat\Gherkin\Node\TableNode; | ||
|
||
|
||
/** | ||
* Behat steps for the the custom SQL report. | ||
* | ||
* All these steps include the phrase 'custom SQL report'. | ||
*/ | ||
class behat_report_customsql extends behat_base { | ||
|
||
/** | ||
* Create a new report in the database. | ||
* | ||
* For example | ||
* Given the following custom sql report exists: | ||
* | name | Test report | | ||
* | querysql | SELECT * FROM {config} | | ||
* | category | Miscellaneous | | ||
* | ||
* if present, category name is looked up in the database to get the id. | ||
* @Given /^the following custom sql report exists:$/ | ||
* @param TableNode $data Supplied data | ||
*/ | ||
public function the_following_custom_sql_report_exists(TableNode $data) { | ||
global $DB; | ||
$report = $data->getRowsHash(); | ||
|
||
// Report name. | ||
if (isset($report['name'])) { | ||
$report['displayname'] = $report['name']; | ||
unset($report['name']); | ||
} else { | ||
throw new Exception('A report name must be given.'); | ||
} | ||
|
||
// Description (defaults to blank). | ||
if (!isset($report['description'])) { | ||
$report['description'] = ''; | ||
} | ||
if (!isset($report['descriptionformat'])) { | ||
$report['descriptionformat'] = FORMAT_HTML; | ||
} | ||
|
||
// Query SQL. | ||
if (!isset($report['querysql'])) { | ||
throw new Exception('The report SQL must be given as querysql.'); | ||
} | ||
|
||
// Category. | ||
if (isset($report['category'])) { | ||
$report['categoryid'] = $this->get_category_id_by_name($report['category']); | ||
unset($report['category']); | ||
} else { | ||
$report['categoryid'] = $this->get_category_id_by_name( | ||
get_string('defaultcategory', 'report_customsql')); | ||
} | ||
|
||
// Capability. | ||
if (isset($report['capability']) && | ||
!in_array($report['capability'], report_customsql_capability_options())) { | ||
throw new Exception('Capability ' . $report['capability'] . ' is not a valid choice.'); | ||
} else { | ||
$report['capability'] = 'moodle/site:config'; | ||
} | ||
|
||
// Capability. | ||
if (isset($report['runable']) && | ||
!in_array($report['runable'], report_customsql_runable_options())) { | ||
throw new Exception('Invalid runable value ' . $report['capability'] . '.'); | ||
} else { | ||
$report['runable'] = 'manual'; | ||
} | ||
|
||
$DB->insert_record('report_customsql_queries', (object) $report); | ||
} | ||
|
||
/** | ||
* Create a new report in the database. | ||
* | ||
* For example | ||
* Given the custom sql report "Test report" exists with SQL: | ||
* """ | ||
* SELECT * | ||
* FROM {config} | ||
* """ | ||
* | ||
* Creates a report in the default category with long SQL. | ||
* | ||
* @Given /^the custom sql report "(?P<REPORT_NAME>[^"]*)" exists with SQL:$/ | ||
* @param string $reportname the name of the report to go to. | ||
* @param PyStringNode $querysql The query SQL | ||
*/ | ||
public function the_custom_sql_report_x_exists(string $reportname, PyStringNode $querysql) { | ||
global $DB; | ||
$report = [ | ||
'displayname' => $reportname, | ||
'description' => '', | ||
'descriptionformat' => FORMAT_HTML, | ||
'querysql' => (string)$querysql, | ||
'categoryid' => $this->get_category_id_by_name( | ||
get_string('defaultcategory', 'report_customsql')), | ||
'capability' => 'moodle/site:config', | ||
'runable' => 'manual', | ||
]; | ||
|
||
$DB->insert_record('report_customsql_queries', (object) $report); | ||
} | ||
|
||
/** | ||
* Create a new report category in the database. | ||
* | ||
* @Given /^the custom sql report category "(?P<CATEGORY_NAME>[^"]*)" exists:$/ | ||
* @param string $name the name of the category to create. | ||
*/ | ||
public function the_custom_sql_report_cateogry_exists(string $name) { | ||
global $DB; | ||
$DB->insert_record('report_customsql_categories', (object) ['name' => $name]); | ||
} | ||
|
||
/** | ||
* Views a report. | ||
* | ||
* Goes straight to the URL $CFG->wwwroot/report/customsql/view.php?id=123 | ||
* | ||
* @When /^I view the "(?P<REPORT_NAME>[^"]*)" custom sql report$/ | ||
* @param string $reportname the name of the report to go to. | ||
*/ | ||
public function i_view_the_x_custom_sql_report(string $reportname) { | ||
$report = $this->get_report_by_name($reportname); | ||
$this->getSession()->visit($this->locate_path('/report/customsql/view.php?id=' . $report->id)); | ||
} | ||
|
||
/** | ||
* Simulates going directly to a report with certain parameters in the URL. | ||
* | ||
* For example: | ||
* When I view the "Frog" custom sql report with these URL parameters: | ||
* | frogname | freddy | | ||
* | colour | green | | ||
* this goes to the URL $CFG->wwwroot/report/customsql/view.php?id=123&frogname=freddy&colour=green. | ||
* | ||
* @When /^I view the "(?P<REPORT_NAME>[^"]*)" custom sql report with these URL parameters:$/ | ||
* @param string $reportname the name of the report to go to. | ||
* @param TableNode $data two columns, name and value, params to add to the URL. | ||
*/ | ||
public function i_view_the_x_custom_sql_report_with_these_url_parameters(string $reportname, TableNode $data) { | ||
$report = $this->get_report_by_name($reportname); | ||
|
||
$queryparams = ['id=' . $report->id]; | ||
foreach ($data->getRows() as $rowdata) { | ||
if (count($rowdata) != 2) { | ||
throw new Exception('Table of params must have two values in each row, query parameter name and value.'); | ||
} | ||
|
||
$name = clean_param($rowdata[0], PARAM_ALPHANUMEXT); | ||
if ($name !== $rowdata[0]) { | ||
throw new Exception('Parameter names must match PARAM_ALPHANUMEXT.'); | ||
} | ||
$queryparams[] = $name . '=' . urlencode($rowdata[1]); | ||
} | ||
|
||
$this->getSession()->visit($this->locate_path('/report/customsql/view.php?id=' . | ||
implode('&', $queryparams))); | ||
} | ||
|
||
/** | ||
* Find a report by name and get all the details. | ||
* | ||
* @param string $reportname the report name to find. | ||
* @return stdClass the report data | ||
*/ | ||
protected function get_report_by_name(string $reportname): stdClass { | ||
global $DB; | ||
return $DB->get_record('report_customsql_queries', ['displayname' => $reportname], '*', MUST_EXIST); | ||
} | ||
|
||
/** | ||
* Find a category by name and return its id. | ||
* | ||
* @param string $name the category name to find. | ||
* @return int the category id. | ||
*/ | ||
protected function get_category_id_by_name(string $name): int { | ||
global $DB; | ||
return $DB->get_field('report_customsql_categories', 'id', ['name' => $name], MUST_EXIST); | ||
} | ||
} |
Oops, something went wrong.