-
Notifications
You must be signed in to change notification settings - Fork 283
Expand file tree
/
Copy pathQueryTest.php
More file actions
190 lines (161 loc) · 4.67 KB
/
QueryTest.php
File metadata and controls
190 lines (161 loc) · 4.67 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
<?php
/**
* Copyright (C) 2018 Dennis Lassiter
*
* This file is part of iTop.
*
* iTop is free software; you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* iTop is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with iTop. If not, see <http://www.gnu.org/licenses/>
*
*/
namespace Combodo\iTop\Test\UnitTest\Application\Search;
use Combodo\iTop\Test\UnitTest\ItopDataTestCase;
use MetaModel;
use Query;
use QueryOQL;
use utils;
/**
* This test creates call export on requests and check request usage counter.
*
* Transaction are disabled to avoid data inconsistency between test and call to export (outside test scope)
* All objects created in this test will be deleted by the test.
*
* @group iTopQuery
*/
class QueryTest extends ItopDataTestCase
{
// disable transaction to avoid data inconsistency between test and call to export (outside test scope)
public const USE_TRANSACTION = false;
// user for exportation process
public const USER = 'dani2';
public const PASSWORD = '1TopCombodo+';
private $oUser;
/** @inheritDoc */
public function setUp(): void
{
parent::setUp();
$this->SetNonPublicStaticProperty(utils::class, 'sAbsoluteUrlAppRootCache', null);
// create export user
$this->CreateExportUser();
}
/**
* Create new user for export authentication purpose.
*/
private function CreateExportUser()
{
$oAdminProfile = MetaModel::GetObjectFromOQL("SELECT URP_Profiles WHERE name = :name", ['name' => 'Administrator'], true);
$this->oUser = $this->CreateUser(self::USER, $oAdminProfile->GetKey(), self::PASSWORD);
}
/**
* Create an OQL query to list Person objects.
*
* @param string $sName query name
* @param string $sDescription query description
* @param string $sOql query oql phrase
* @param string|null $sFields fields to export
*/
private function CreateQueryOQL(string $sName, string $sDescription, string $sOql, string $sFields = null): QueryOQL
{
$oQuery = new QueryOQL();
$oQuery->Set('name', $sName);
$oQuery->Set('description', $sDescription);
$oQuery->Set('oql', $sOql);
if ($sFields != null) {
$oQuery->Set('fields', $sFields);
}
$oQuery->DBInsert();
$this->assertFalse($oQuery->IsNew());
return $oQuery;
}
/**
* Test query export V1 usage.
*
* @param string $sDescription query description
* @param string $sOql query oql phrase
*
* @dataProvider getQueryProvider
*/
public function testQueryExportV1Usage(string $sDescription, string $sOql)
{
// create query OQL
$oQuery = $this->CreateQueryOQL($this->dataName(), $sDescription, $sOql);
// call export service
$this->CallExportService($oQuery);
// reload to update counter (done by export process)
$oQuery->Reload();
// extract counter
$iResult = $oQuery->Get('export_count');
// delete the query
$oQuery->DBDelete();
// test
$this->assertEquals(1, $iResult);
}
/**
* Test query export V2 usage.
*
* @param string $sDescription query description
* @param string $sOql query oql phrase
*
* @dataProvider getQueryProvider
*/
public function testQueryExportV2Usage(string $sDescription, string $sOql)
{
// create query OQL
$oQuery = $this->CreateQueryOQL($this->dataName(), $sDescription, $sOql, 'first_name');
// call export service
$this->CallExportService($oQuery);
// reload to update counter (done by export process)
$oQuery->Reload();
// extract counter
$iResult = $oQuery->Get('export_count');
// delete the query
$oQuery->DBDelete();
// test
$this->assertEquals(1, $iResult);
}
/**
* Data provide for test.
*
* @return array
*/
public function getQueryProvider()
{
return [
'Export #1' => ['query without params', 'SELECT Person'],
'Export #2' => ['query with params', "SELECT Person WHERE first_name LIKE 'B%'"],
];
}
/**
* Call export for given query object.
*
* @param \Query $oQuery
*
* @return bool|string
*/
private function CallExportService(Query $oQuery)
{
// compute request url
$url = $oQuery->GetExportUrl();
$aCurlOptions = [
CURLOPT_HTTPAUTH => CURLAUTH_BASIC,
CURLOPT_USERPWD => self::USER.':'.self::PASSWORD,
];
return $this->CallItopUrl($url, [], $aCurlOptions);
}
/** @inheritDoc */
protected function tearDown(): void
{
$this->oUser->DBDelete();
parent::tearDown();
}
}