aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/api_test.php2
-rw-r--r--tests/external_test.php50
2 files changed, 45 insertions, 7 deletions
diff --git a/tests/api_test.php b/tests/api_test.php
index c2a2f80..5bca6ab 100644
--- a/tests/api_test.php
+++ b/tests/api_test.php
@@ -122,10 +122,10 @@ final class local_webhooks_api_testcase extends advanced_testcase {
self::assertCount(0, $DB->get_records(LW_TABLE_EVENTS));
self::assertCount(0, $DB->get_records(LW_TABLE_SERVICES));
- // Testing correct delete record of the record's list.
$ids = [];
$total = random_int(5, 20);
+ // Testing correct delete record of the record's list.
for ($i = 0; $i < $total; $i++) {
$record = self::get_random_record();
$ids[] = api::add_service($record);
diff --git a/tests/external_test.php b/tests/external_test.php
index ea2b362..517f370 100644
--- a/tests/external_test.php
+++ b/tests/external_test.php
@@ -65,7 +65,7 @@ final class local_webhooks_external_testcase extends externallib_advanced_testca
}
/**
- * Testing external get record's data.
+ * Testing the external delete service.
*
* @throws \ReflectionException
* @throws \coding_exception
@@ -74,10 +74,50 @@ final class local_webhooks_external_testcase extends externallib_advanced_testca
* @throws \invalid_response_exception
* @throws \restricted_context_exception
*/
- public function test_get_service() {
+ public function test_deleting() {
+ $this->resetAfterTest();
self::setAdminUser();
+ // Testing correct delete record of the database.
+ $record = self::get_random_record();
+ $record->id = api::add_service($record);
+
+ $return = local_webhooks_external::del_service($record->id);
+ $return = external_api::clean_returnvalue(local_webhooks_external::del_service_returns(), $return);
+
+ self::assertEquals(0, api::get_total_count());
+ self::assertInternalType('bool', $return);
+
+ $ids = [];
+ $total = random_int(5, 20);
+
+ // Testing correct delete record of the record's list.
+ for ($i = 0; $i < $total; $i++) {
+ $record = self::get_random_record();
+ $ids[] = api::add_service($record);
+ }
+
+ self::assertEquals(count($ids), api::get_total_count());
+ $return = local_webhooks_external::del_service($ids[array_rand($ids, 1)]);
+ $return = external_api::clean_returnvalue(local_webhooks_external::del_service_returns(), $return);
+
+ self::assertEquals(count($ids) - 1, api::get_total_count());
+ self::assertInternalType('bool', $return);
+ }
+
+ /**
+ * Testing external get record's data.
+ *
+ * @throws \ReflectionException
+ * @throws \coding_exception
+ * @throws \dml_exception
+ * @throws \invalid_parameter_exception
+ * @throws \invalid_response_exception
+ * @throws \restricted_context_exception
+ */
+ public function test_get_service() {
$this->resetAfterTest();
+ self::setAdminUser();
// Creating a new record.
$record = self::get_random_record();
@@ -114,9 +154,8 @@ final class local_webhooks_external_testcase extends externallib_advanced_testca
* @throws \restricted_context_exception
*/
public function test_get_services() {
- self::setAdminUser();
-
$this->resetAfterTest();
+ self::setAdminUser();
$records = [];
$total = random_int(5, 10);
@@ -168,9 +207,8 @@ final class local_webhooks_external_testcase extends externallib_advanced_testca
* @throws \restricted_context_exception
*/
public function test_get_services_with_conditions() {
- self::setAdminUser();
-
$this->resetAfterTest();
+ self::setAdminUser();
$records = [];
$total = random_int(5, 10);