aboutsummaryrefslogtreecommitdiff
path: root/tests/external_test.php
diff options
context:
space:
mode:
authorValentin Popov <info@valentineus.link>2019-05-10 21:43:32 +0300
committerValentin Popov <info@valentineus.link>2019-05-10 21:43:32 +0300
commit0cbc05d52b18d06193b703c4eaced40b6f497d2d (patch)
tree48b629c7d05ceaa721dc390d8e0ece0a4e780367 /tests/external_test.php
parentae2f31261d8aa6019adcd618dc214c90d7b818bb (diff)
downloadlocal_webhooks-0cbc05d52b18d06193b703c4eaced40b6f497d2d.tar.xz
local_webhooks-0cbc05d52b18d06193b703c4eaced40b6f497d2d.zip
Added exact other tests
Signed-off-by: Valentin Popov <info@valentineus.link>
Diffstat (limited to 'tests/external_test.php')
-rw-r--r--tests/external_test.php47
1 files changed, 37 insertions, 10 deletions
diff --git a/tests/external_test.php b/tests/external_test.php
index 2a9be98..5f646a9 100644
--- a/tests/external_test.php
+++ b/tests/external_test.php
@@ -32,28 +32,56 @@ use local_webhooks\local\record;
*/
final class local_webhooks_external_testcase extends externallib_advanced_testcase {
/**
+ * Generate random an event's list.
+ *
+ * @return array
+ *
+ * @throws \ReflectionException
+ */
+ private static function get_random_events(): array {
+ $result = array_rand(api::get_events(), random_int(2, 10));
+
+ return is_array($result) ? $result : [];
+ }
+
+ /**
+ * Generate a random record.
+ *
+ * @return \local_webhooks\local\record
+ *
+ * @throws \ReflectionException
+ */
+ private static function get_random_record(): record {
+ $record = new record();
+
+ $record->events = self::get_random_events();
+ $record->header = 'application/json';
+ $record->name = uniqid('', false);
+ $record->point = 'http://example.org/' . urlencode($record->name);
+ $record->status = true;
+ $record->token = generate_uuid();
+
+ return $record;
+ }
+
+ /**
* 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() {
self::setAdminUser();
$this->resetAfterTest();
- $record = new record();
- $record->events = array_rand(api::get_events(), random_int(2, 10));
- $record->header = 'application/json';
- $record->name = 'Example name';
- $record->point = 'http://example.org/';
- $record->status = true;
- $record->token = generate_uuid();
-
// Creating a new record.
- $record->id = api::create_service($record);
+ $record = self::get_random_record();
+ $record->id = api::add_service($record);
$return = local_webhooks_external::get_service($record->id);
$return = external_api::clean_returnvalue(local_webhooks_external::get_service_returns(), $return);
@@ -70,7 +98,6 @@ final class local_webhooks_external_testcase extends externallib_advanced_testca
// Testing an event's list.
self::assertInternalType('array', $return['events']);
self::assertNotCount(0, $return['events']);
-
foreach ($return['events'] as $event) {
self::assertContains($event, $record->events);
}