weekly release 5.0dev
[moodle.git] / calendar / tests / action_event_test.php
blob55d4c5cd0e42a051e3ead9a789394ba4e31f3ef4
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 * Action 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 namespace core_calendar;
27 use core_calendar\local\event\entities\action_event;
28 use core_calendar\local\event\value_objects\action;
29 use core_calendar\local\event\value_objects\event_description;
30 use core_calendar\local\event\value_objects\event_times;
31 use core_calendar\local\event\entities\event_collection_interface;
32 use core_calendar\local\event\entities\event_interface;
34 defined('MOODLE_INTERNAL') || die;
36 /**
37 * Action event testcase.
39 * @package core_calendar
40 * @category test
41 * @copyright 2017 Cameron Ball <cameron@cameron1729.xyz>
42 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
44 class action_event_test extends \advanced_testcase {
45 /**
46 * Test event class getters.
48 * @dataProvider getters_testcases()
49 * @param array $constructorparams Associative array of constructor parameters.
51 public function test_getters($constructorparams): void {
52 $event = new action_event(
53 $constructorparams['event'],
54 $constructorparams['action']
57 foreach ($constructorparams as $name => $value) {
58 if ($name !== 'event') {
59 $this->assertEquals($event->{'get_' . $name}(), $value);
64 /**
65 * Test cases for getters test.
67 public function getters_testcases() {
68 return [
69 'Dataset 1' => [
70 'constructorparams' => [
71 'event' => new core_calendar_action_event_test_event(),
72 'action' => new action(
73 'action 1',
74 new \moodle_url('http://example.com'),
76 true
80 'Dataset 2' => [
81 'constructorparams' => [
82 'event' => new core_calendar_action_event_test_event(),
83 'action' => new action(
84 'action 2',
85 new \moodle_url('http://example.com'),
87 false
95 /**
96 * Test event.
98 * @copyright 2017 Cameron Ball <cameron@cameron1729.xyz>
99 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
101 class core_calendar_action_event_test_event implements event_interface {
103 public function get_id() {
104 return 1729;
107 public function get_name() {
108 return 'Jeff';
111 public function get_description() {
112 return new event_description('asdf', 1);
115 public function get_location() {
116 return 'Cube office';
119 public function get_category() {
120 return new \stdClass();
123 public function get_course() {
124 return new \stdClass();
127 public function get_course_module() {
128 return new \stdClass();
131 public function get_group() {
132 return new \stdClass();
135 public function get_user() {
136 return new \stdClass();
139 public function get_type() {
140 return 'asdf';
143 public function get_times() {
144 return new event_times(
145 (new \DateTimeImmutable())->setTimestamp(-386380800),
146 (new \DateTimeImmutable())->setTimestamp(115776000),
147 (new \DateTimeImmutable())->setTimestamp(115776000),
148 (new \DateTimeImmutable())->setTimestamp(time())
152 public function get_repeats() {
153 return new core_calendar_action_event_test_event_collection();
156 public function get_subscription() {
157 return new \stdClass();
160 public function is_visible() {
161 return true;
165 * Component
166 * @return string|null
168 public function get_component() {
169 return null;
174 * Test event collection.
176 * @copyright 2017 Cameron Ball <cameron@cameron1729.xyz>
177 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
179 class core_calendar_action_event_test_event_collection implements event_collection_interface {
181 * @var array
183 protected $events;
186 * core_calendar_action_event_test_event_collection constructor.
188 public function __construct() {
189 $this->events = [
190 'not really an event hahaha',
191 'also not really. gottem.'
195 public function get_id() {
196 return 1729;
199 public function get_num() {
200 return 2;
203 public function getIterator(): \Traversable {
204 foreach ($this->events as $event) {
205 yield $event;