*/
@Ignore("TODO: JBAS-9020: Archive deployments are not yet implemented")
@Test
public void testContent() throws OperationFailedException {
final DeploymentAddHandler handler = DeploymentAddHandler.createForStandalone(contentRepository);
final OperationContext context = Mockito.mock(OperationContext.class);
Mockito.when(context.getResult()).thenReturn(new ModelNode());
Mockito.when(context.readModelForUpdate(PathAddress.EMPTY_ADDRESS)).thenReturn(new ModelNode());
Mockito.when(context.getProcessType()).thenReturn(ProcessType.STANDALONE_SERVER);
Mockito.when(context.getRunningMode()).thenReturn(RunningMode.NORMAL);
Mockito.when(context.isNormalServer()).thenReturn(true);
final ModelNode operation = new ModelNode();
//operation.get("address").setEmptyList().get(0).get("deployment").set("test.war");
operation.get("address").get(0).setExpression("deployment", "test.war");
operation.get("content").get(0).get("archive").set(true);
operation.get("content").get(0).get("path").set("test.war");