test
This commit is contained in:
parent
5b81c8e03c
commit
2b9d775347
|
@ -277,6 +277,26 @@ class ImporterTest extends PHPUnit_Framework_TestCase {
|
||||||
$tasks = $importer->getTasks($lines);
|
$tasks = $importer->getTasks($lines);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Change entry with modify changetype and add operation.
|
||||||
|
*/
|
||||||
|
public function testChangeModifyAddInvalid() {
|
||||||
|
$lines = array(
|
||||||
|
"version: 1",
|
||||||
|
"",
|
||||||
|
"dn: uid=test,dc=example,dc=com",
|
||||||
|
"changeType: modify",
|
||||||
|
"add: uid",
|
||||||
|
"uid: uid1",
|
||||||
|
"invalid: uid2"
|
||||||
|
);
|
||||||
|
|
||||||
|
$this->setExpectedException(LAMException::class, 'uid=test,dc=example,dc=com');
|
||||||
|
|
||||||
|
$importer = new Importer();
|
||||||
|
$tasks = $importer->getTasks($lines);
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Change entry with modify changetype and add operation.
|
* Change entry with modify changetype and add operation.
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Reference in New Issue