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
|
<?php
namespace Icinga\Module\Director\Test;
use Icinga\Exception\IcingaException;
use Icinga\Module\Director\Data\Db\DbObject;
use Icinga\Module\Director\Db\Cache\PrefetchCache;
use Icinga\Module\Director\Import\Sync;
use Icinga\Module\Director\Objects\IcingaObject;
use Icinga\Module\Director\Objects\ImportSource;
use Icinga\Module\Director\Objects\SyncProperty;
use Icinga\Module\Director\Objects\SyncRule;
abstract class SyncTest extends BaseTestCase
{
protected $objectType;
protected $keyColumn;
/** @var ImportSource */
protected $source;
/** @var SyncRule */
protected $rule;
/** @var SyncProperty[] */
protected $properties = array();
/** @var Sync */
protected $sync;
public function setUp()
{
$this->source = ImportSource::create(array(
'source_name' => 'testimport',
'provider_class' => 'Icinga\\Module\\Director\\Test\\ImportSourceDummy',
'key_column' => $this->keyColumn,
));
$this->source->store($this->getDb());
$this->rule = SyncRule::create(array(
'rule_name' => 'testrule',
'object_type' => $this->objectType,
'update_policy' => 'merge',
'purge_existing' => 'n'
));
$this->rule->store($this->getDb());
$this->sync = new Sync($this->rule);
}
public function tearDown()
{
// properties should be deleted automatically
if ($this->rule !== null && $this->rule->hasBeenLoadedFromDb()) {
$this->rule->delete();
}
if ($this->source !== null && $this->source->hasBeenLoadedFromDb()) {
$this->source->delete();
}
// find objects created by this class and delete them
$db = $this->getDb();
$dummy = IcingaObject::createByType($this->objectType, array(), $db);
$query = $db->getDbAdapter()->select()
->from($dummy->getTableName())
->where('object_name LIKE ?', 'SYNCTEST_%');
/** @var IcingaObject $object */
foreach (IcingaObject::loadAllByType($this->objectType, $db, $query) as $object) {
$object->delete();
}
// make sure cache is clean for other tests
PrefetchCache::forget();
DbObject::clearAllPrefetchCaches();
}
/**
* @param array $rows
*
* @throws IcingaException
*/
protected function runImport($rows)
{
ImportSourceDummy::setRows($rows);
$this->source->runImport();
if ($this->source->get('import_state') !== 'in-sync') {
throw new IcingaException('Import failed: %s', $this->source->get('last_error_message'));
}
}
protected function setUpProperty($properties = array())
{
$properties = array_merge(array(
'rule_id' => $this->rule->id,
'source_id' => $this->source->id,
'merge_policy' => 'override',
), $properties);
$this->properties[] = $property = SyncProperty::create($properties);
$property->store($this->getDb());
}
}
|