ILIAS  Release_4_0_x_branch Revision 61816
 All Data Structures Namespaces Files Functions Variables Groups Pages
ilTrackingTest.php
Go to the documentation of this file.
1 <?php
2 /*
3  +-----------------------------------------------------------------------------+
4  | ILIAS open source |
5  +-----------------------------------------------------------------------------+
6  | Copyright (c) 1998-2006 ILIAS open source, University of Cologne |
7  | |
8  | This program is free software; you can redistribute it and/or |
9  | modify it under the terms of the GNU General Public License |
10  | as published by the Free Software Foundation; either version 2 |
11  | of the License, or (at your option) any later version. |
12  | |
13  | This program is distributed in the hope that it will be useful, |
14  | but WITHOUT ANY WARRANTY; without even the implied warranty of |
15  | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
16  | GNU General Public License for more details. |
17  | |
18  | You should have received a copy of the GNU General Public License |
19  | along with this program; if not, write to the Free Software |
20  | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
21  +-----------------------------------------------------------------------------+
22 */
23 
34 {
35  protected $backupGlobals = FALSE;
36 
37  protected function setUp()
38  {
39  include_once("./Services/PHPUnit/classes/class.ilUnitUtil.php");
41  }
42 
48  public function testChangeEvent()
49  {
50  global $ilUser;
51 
52  include_once './Services/Tracking/classes/class.ilChangeEvent.php';
55 
56  $res = ilChangeEvent::_lookupUncaughtWriteEvents(9,$ilUser->getId());
57  $res = ilChangeEvent::_lookupChangeState(9,$ilUser->getId());
58  $res = ilChangeEvent::_lookupInsideChangeState(9,$ilUser->getId());
59  }
60 
64  public function testLPObjectSettings()
65  {
66  include_once './Services/Tracking/classes/class.ilLPObjSettings.php';
67 
69  $settings = new ilLPObjSettings(9999);
70  $settings->setMode(127);
71  $settings->obj_type = "xxx";
72  $settings->insert();
73 
74  $type = $settings->getObjType();
75  $this->assertEquals($type,'xxx');
76 
77  $settings->setVisits(10);
78  $settings->update();
79  $visits = $settings->getVisits();
80  $this->assertEquals($visits,10);
81 
82  $settings->cloneSettings(9998);
84 
85  $settings = new ilLPObjSettings(9998);
86  $type = $settings->getObjType();
87  $this->assertEquals($type,'xxx');
88 
90  }
91 
97  public function testLPMarks()
98  {
99  include_once './Services/Tracking/classes/class.ilLPMarks.php';
100  include_once './Services/Tracking/classes/class.ilLPStatusManual.php';
101 
102  $marks = new ilLPMarks(999,888);
103  $marks->setMark('Gut');
104  $marks->setComment('Weiter so');
105  $marks->setCompleted(true);
106  $marks->update();
107 
108  $marks = new ilLPMarks(999,888);
109  $mark = $marks->getMark();
110  $this->assertEquals($mark,'Gut');
111 
113  $this->assertEquals($comment,'Weiter so');
114 
115  $completed = ilLPStatusManual::_getCompleted(999);
116  $this->assertEquals(array(888),$completed);
117 
119  }
120 
125  public function testLPFilter()
126  {
127  include_once './Services/Tracking/classes/class.ilLPFilter.php';
128 
129  $filter = new ilLPFilter(9999);
130  $filter->setHidden(array(1));
131  $filter->update();
132 
133  $filter = new ilLPFilter(9999);
134  $f = $filter->getHidden();
135  $this->assertEquals($f,array(1));
136 
137  ilLPFilter::_delete(9999);
138  }
139 
144  public function testLPCollections()
145  {
146  include_once './Services/Tracking/classes/class.ilLPCollections.php';
147 
148  $coll = new ilLPCollections(999);
149  $coll->add(888);
150  $coll->delete(888);
151  $coll->add(777);
153  }
154 }
155 ?>