/**
* Test that project level permissions apply to child configurations as well.
*/
@Bug(9293)
public void testConfigurationACL() throws Exception {
hudson.setAuthorizationStrategy(new ProjectMatrixAuthorizationStrategy());
MatrixProject mp = createMatrixProject();
mp.setAxes(new AxisList(new Axis("foo", "a", "b")));
MatrixConfiguration mc = mp.getItem("foo=a");
assertNotNull(mc);
SecurityContextHolder.clearContext();