when(agent.getConfiguration()).thenReturn(agentConfig);
Map<String, Object> tmp = new HashMap<String, Object>();
tmp.put(AgentConfig.PROTOCOL_HTTP_HEADERS, new String[] {"CQ-Action:{action}", "CQ-Handle:{path}",
"CQ-Path: {path}"});
hierarchicalProperties = new ValueMapDecorator(tmp);
tmp = new HashMap<String, Object>();
tmp.put(AgentConfig.PROTOCOL_HTTP_HEADERS, new String[] {"CQ-Action:{action}", "CQ-Handle:{path}",
"CQ-Path: {path}", "CQ-Action-Scope: ResourceOnly"});
resourceOnlyProperties = new ValueMapDecorator(tmp);
tmp = new HashMap<String, Object>();
tmp.put(AgentConfig.PROTOCOL_HTTP_HEADERS, new String[] {"Foo-Action:{action}", "Foo-Handle:{path}",
"Foo-Path: {path}"});
invalidProperties = new ValueMapDecorator(tmp);
}