Add HostSyncTest to test for basic Sync behavior

This commit is contained in:
Markus Frosch 2017-08-30 09:23:06 +02:00 committed by Thomas Gelf
parent 0d00d5d97b
commit e9aa161ce4
1 changed files with 144 additions and 0 deletions

View File

@ -0,0 +1,144 @@
<?php
namespace Tests\Icinga\Module\Director\IcingaConfig;
use Icinga\Module\Director\Objects\IcingaObject;
use Icinga\Module\Director\Test\SyncTest;
class HostSyncTest extends SyncTest
{
protected $objectType = 'host';
protected $keyColumn = 'host';
public function testSimpleSync()
{
$this->runImport(array(
array(
'host' => 'SYNCTEST_simple',
'address' => '127.0.0.1',
'os' => 'Linux'
)
));
$this->setUpProperty(array(
'source_expression' => '${host}',
'destination_field' => 'object_name',
));
$this->setUpProperty(array(
'source_expression' => '${address}',
'destination_field' => 'address',
));
$this->setUpProperty(array(
'source_expression' => '${os}',
'destination_field' => 'vars.os',
));
$this->assertTrue($this->sync->hasModifications(), 'Should have modifications pending');
$this->assertGreaterThan(0, $this->sync->apply(), 'Should successfully apply at least 1 update');
$this->assertFalse($this->sync->hasModifications(), 'Should not have modifications pending after sync');
}
public function testSyncWithoutData()
{
$this->runImport(array());
$this->setUpProperty(array(
'source_expression' => '${host}',
'destination_field' => 'object_name',
));
$this->assertFalse($this->sync->hasModifications(), 'Should not have modifications pending');
}
public function testSyncFilteredData()
{
$this->runImport(array(
array(
'host' => 'SYNCTEST_filtered_in',
'address' => '127.0.0.1',
'os' => 'Linux'
),
array(
'host' => 'SYNCTEST_filtered_out',
'address' => '127.0.0.1',
'os' => null
),
array(
'host' => 'SYNCTEST_filtered_in_unusedfield',
'address' => '127.0.0.1',
'os' => null,
'other' => '1'
),
array(
'host' => 'SYNCTEST_filtered_in_unusedfield_propfilter',
'address' => '127.0.0.1',
'os' => null,
'other' => '1',
'magic' => '2',
)
));
$this->rule->set('filter_expression', 'other!=|os=Linux');
$this->rule->store();
$this->setUpProperty(array(
'source_expression' => '${host}',
'destination_field' => 'object_name',
));
$this->setUpProperty(array(
'source_expression' => '${address}',
'destination_field' => 'address',
));
$this->setUpProperty(array(
'source_expression' => 'test-${other}',
'destination_field' => 'vars.other',
'filter_expression' => 'magic!='
));
$modifications = array();
/** @var IcingaObject $mod */
foreach ($this->sync->getExpectedModifications() as $mod) {
$name = $mod->object_name;
$modifications[$name] = $mod;
$this->assertEquals(
'127.0.0.1',
$mod->get('address'),
$name . ': address should not be synced'
);
$this->assertNull($mod->get('vars.os'), $name . ': vars.os should not be synced');
if ($name === 'SYNCTEST_filtered_in_unusedfield_propfilter') {
$this->assertEquals(
'test-1',
$mod->get('vars.other'),
$name . ': vars.other should not be synced'
);
} else {
$this->assertNull($mod->get('vars.other'), $name . ': vars.other should not be synced');
}
}
$this->assertArrayHasKey(
'SYNCTEST_filtered_in',
$modifications,
'SYNCTEST_filtered_in should be modified'
);
$this->assertArrayNotHasKey(
'SYNCTEST_filtered_out',
$modifications,
'SYNCTEST_filtered_out should be synced'
);
$this->assertArrayHasKey(
'SYNCTEST_filtered_in_unusedfield',
$modifications,
'SYNCTEST_filtered_in_unusedfield should be modified'
);
$this->assertArrayHasKey(
'SYNCTEST_filtered_in_unusedfield_propfilter',
$modifications,
'SYNCTEST_filtered_in_unusedfield_propfilter should be modified'
);
}
}