2 // This file is part of Moodle - http://moodle.org/
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.
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/>.
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;
37 * Action event testcase.
39 * @package core_calendar
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
{
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);
65 * Test cases for getters test.
67 public function getters_testcases() {
70 'constructorparams' => [
71 'event' => new core_calendar_action_event_test_event(),
72 'action' => new action(
74 new \
moodle_url('http://example.com'),
81 'constructorparams' => [
82 'event' => new core_calendar_action_event_test_event(),
83 'action' => new action(
85 new \
moodle_url('http://example.com'),
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() {
107 public function get_name() {
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() {
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() {
166 * @return string|null
168 public function get_component() {
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
{
186 * core_calendar_action_event_test_event_collection constructor.
188 public function __construct() {
190 'not really an event hahaha',
191 'also not really. gottem.'
195 public function get_id() {
199 public function get_num() {
203 public function getIterator(): \Traversable
{
204 foreach ($this->events
as $event) {