| | |
| | | |
| | | |
| | | /** |
| | | * Tests a simple modify operation using the --noop client-side option. |
| | | * Tests a simple modify operation using the --dry-run client-side option. |
| | | * |
| | | * @throws Exception If an unexpected problem occurs. |
| | | */ |
| | |
| | | "-p", String.valueOf(TestCaseUtils.getServerLdapPort()), |
| | | "-D", "cn=Directory Manager", |
| | | "-w", "password", |
| | | "--noop", |
| | | "--dry-run", |
| | | "-f", modifyFilePath |
| | | }; |
| | | |
| | |
| | | |
| | | |
| | | /** |
| | | * Tests a simple add operation using the --noop client-side option. |
| | | * Tests a simple add operation using the --dry-run client-side option. |
| | | * |
| | | * @throws Exception If an unexpected problem occurs. |
| | | */ |
| | |
| | | "-p", String.valueOf(TestCaseUtils.getServerLdapPort()), |
| | | "-D", "cn=Directory Manager", |
| | | "-w", "password", |
| | | "--noop", |
| | | "--dry-run", |
| | | "-f", path |
| | | }; |
| | | |
| | |
| | | |
| | | |
| | | /** |
| | | * Tests a simple delete operation using the --noop client-side option. |
| | | * Tests a simple delete operation using the --dry-run client-side option. |
| | | * |
| | | * @throws Exception If an unexpected problem occurs. |
| | | */ |
| | |
| | | "-p", String.valueOf(TestCaseUtils.getServerLdapPort()), |
| | | "-D", "cn=Directory Manager", |
| | | "-w", "password", |
| | | "--noop", |
| | | "--dry-run", |
| | | "-f", path |
| | | }; |
| | | |
| | |
| | | |
| | | |
| | | /** |
| | | * Tests a simple modify DN operation using the --noop client-side option. |
| | | * Tests a simple modify DN operation using the --dry-run client-side option. |
| | | * |
| | | * @throws Exception If an unexpected problem occurs. |
| | | */ |
| | |
| | | "-p", String.valueOf(TestCaseUtils.getServerLdapPort()), |
| | | "-D", "cn=Directory Manager", |
| | | "-w", "password", |
| | | "--noop", |
| | | "--dry-run", |
| | | "-f", path |
| | | }; |
| | | |