ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
TestSetupAgent.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
21 namespace ILIAS\Test\Setup;
22 
31 
33 {
35 
36  public function getUpdateObjective(?Config $config = null): Objective
37  {
38  return new ObjectiveCollection(
39  'Database is updated for ILIAS\Test',
40  false,
42  new Test9DBUpdateSteps()
43  ),
46  ),
48  'tst_history_read',
49  'View History in Tests',
50  'object',
51  7200,
52  ['tst']
53  ),
55  );
56  }
57 
58  public function getStatusObjective(Storage $storage): Objective
59  {
60  return new ObjectiveCollection(
61  'ILIAS\Test',
62  true,
64  $storage,
65  new Test9DBUpdateSteps()
66  ),
68  $storage,
70  )
71  );
72  }
73 
74  public function hasConfig(): bool
75  {
76  return false;
77  }
78 
80  {
81  throw new \LogicException("Agent has no config.");
82  }
83 
84  public function getInstallObjective(?Config $config = null): Objective
85  {
86  return new NullObjective();
87  }
88 
89  public function getBuildObjective(): Objective
90  {
91  return new NullObjective();
92  }
93 
94  public function getMigrations(): array
95  {
96  return [
98  ];
99  }
100 }
A objective collection is a objective that is achieved once all subobjectives are achieved...
An agent that just doesn&#39;t do a thing.
Definition: NullAgent.php:34
An objective is a desired state of the system that is supposed to be created by the setup...
Definition: Objective.php:30
A non-objective, nothing to do to achieve it...
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
getUpdateObjective(?Config $config=null)
getInstallObjective(?Config $config=null)
A transformation is a function from one datatype to another.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
A configuration for the setup.
Definition: Config.php:26
getStatusObjective(Storage $storage)