Merge branch 'MDL-36754-master' of git://github.com/andrewnicols/moodle
[moodle.git] / calendar / tests / event_test.php
blob3a70913c635d6f3f22df5762389a69c70b3a2177
1 <?php
2 // This file is part of Moodle - http://moodle.org/
3 //
4 // Moodle is free software: you can redistribute it and/or modify
5 // it under the terms of the GNU General Public License as published by
6 // the Free Software Foundation, either version 3 of the License, or
7 // (at your option) any later version.
8 //
9 // Moodle is distributed in the hope that it will be useful,
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 // GNU General Public License for more details.
14 // You should have received a copy of the GNU General Public License
15 // along with Moodle. If not, see <http://www.gnu.org/licenses/>.
17 /**
18 * Event tests.
20 * @package core_calendar
21 * @copyright 2017 Cameron Ball <cameron@cameron1729.xyz>
22 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
25 defined('MOODLE_INTERNAL') || die();
27 use core_calendar\local\event\entities\event;
28 use core_calendar\local\event\proxies\std_proxy;
29 use core_calendar\local\event\proxies\coursecat_proxy;
30 use core_calendar\local\event\value_objects\event_description;
31 use core_calendar\local\event\value_objects\event_times;
32 use core_calendar\local\event\entities\event_collection_interface;
34 /**
35 * Event testcase.
37 * @copyright 2017 Cameron Ball <cameron@cameron1729.xyz>
38 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
40 class core_calendar_event_testcase extends advanced_testcase {
41 /**
42 * Test event class getters.
44 * @dataProvider getters_testcases()
45 * @param array $constructorparams Associative array of constructor parameters.
47 public function test_getters($constructorparams) {
48 $event = new event(
49 $constructorparams['id'],
50 $constructorparams['name'],
51 $constructorparams['description'],
52 $constructorparams['category'],
53 $constructorparams['course'],
54 $constructorparams['group'],
55 $constructorparams['user'],
56 $constructorparams['repeats'],
57 $constructorparams['course_module'],
58 $constructorparams['type'],
59 $constructorparams['times'],
60 $constructorparams['visible'],
61 $constructorparams['subscription'],
62 $constructorparams['location']
65 foreach ($constructorparams as $name => $value) {
66 if ($name !== 'visible') {
67 $this->assertEquals($event->{'get_' . $name}(), $value);
71 $this->assertEquals($event->is_visible(), $constructorparams['visible']);
74 /**
75 * Test cases for getters test.
77 public function getters_testcases() {
78 $lamecallable = function($id) {
79 return (object)['id' => $id];
82 return [
83 'Dataset 1' => [
84 'constructorparams' => [
85 'id' => 1,
86 'name' => 'Test event 1',
87 'description' => new event_description('asdf', 1),
88 'category' => new coursecat_proxy(0),
89 'course' => new std_proxy(1, $lamecallable),
90 'group' => new std_proxy(1, $lamecallable),
91 'user' => new std_proxy(1, $lamecallable),
92 'repeats' => new core_calendar_event_test_event_collection(),
93 'course_module' => new std_proxy(1, $lamecallable),
94 'type' => 'dunno what this actually is meant to be',
95 'times' => new event_times(
96 (new \DateTimeImmutable())->setTimestamp(-386380800),
97 (new \DateTimeImmutable())->setTimestamp(115776000),
98 (new \DateTimeImmutable())->setTimestamp(115776000),
99 (new \DateTimeImmutable())->setTimestamp(time())
101 'visible' => true,
102 'subscription' => new std_proxy(1, $lamecallable),
103 'location' => 'Test',
111 * Test event class.
113 * @copyright 2017 Cameron Ball <cameron@cameron1729.xyz>
114 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
116 class core_calendar_event_test_event_collection implements event_collection_interface {
118 * @var array $events Array of events.
120 protected $events;
123 * Constructor.
125 public function __construct() {
126 $this->events = [
127 'not really an event hahaha',
128 'also not really. gottem.'
132 public function get_id() {
133 return 1729;
136 public function get_num() {
137 return 2;
140 public function getIterator() {
141 foreach ($this->events as $event) {
142 yield $event;