use of com.thoughtworks.go.server.materials.postcommit.PostCommitHookImplementer in project gocd by gocd.
the class MaterialUpdateServiceTest method shouldReturnImplementerOfSvnPostCommitHookAndPerformMaterialUpdate_WhenInvokingPostCommitHookMaterialUpdate.
@Test
public void shouldReturnImplementerOfSvnPostCommitHookAndPerformMaterialUpdate_WhenInvokingPostCommitHookMaterialUpdate() {
final HashMap params = new HashMap();
params.put(MaterialUpdateService.TYPE, "svn");
when(goConfigService.isUserAdmin(username)).thenReturn(true);
final CruiseConfig cruiseConfig = new BasicCruiseConfig(PipelineConfigMother.createGroup("groupName", "pipeline1", "pipeline2"));
when(goConfigService.currentCruiseConfig()).thenReturn(cruiseConfig);
when(postCommitHookMaterialType.toType("svn")).thenReturn(validMaterialType);
final PostCommitHookImplementer svnPostCommitHookImplementer = mock(PostCommitHookImplementer.class);
final Material svnMaterial = mock(Material.class);
when(svnPostCommitHookImplementer.prune(anySet(), eq(params))).thenReturn(new HashSet(Arrays.asList(svnMaterial)));
when(validMaterialType.getImplementer()).thenReturn(svnPostCommitHookImplementer);
service.notifyMaterialsForUpdate(username, params, result);
verify(svnPostCommitHookImplementer).prune(anySet(), eq(params));
Mockito.verify(queue, times(1)).post(matchMaterialUpdateMessage(svnMaterial));
HttpLocalizedOperationResult acceptedResult = new HttpLocalizedOperationResult();
acceptedResult.accepted(LocalizedMessage.string("MATERIAL_SCHEDULE_NOTIFICATION_ACCEPTED"));
assertThat(result, is(acceptedResult));
}
use of com.thoughtworks.go.server.materials.postcommit.PostCommitHookImplementer in project gocd by gocd.
the class MaterialUpdateServiceTest method shouldReturn404WhenThereAreNoMaterialsToSchedule_WhenInvokingPostCommitHookMaterialUpdate.
@Test
public void shouldReturn404WhenThereAreNoMaterialsToSchedule_WhenInvokingPostCommitHookMaterialUpdate() {
when(goConfigService.isUserAdmin(username)).thenReturn(true);
PostCommitHookMaterialType materialType = mock(PostCommitHookMaterialType.class);
when(postCommitHookMaterialType.toType("type")).thenReturn(materialType);
PostCommitHookImplementer hookImplementer = mock(PostCommitHookImplementer.class);
when(materialType.getImplementer()).thenReturn(hookImplementer);
when(materialType.isKnown()).thenReturn(true);
CruiseConfig config = mock(BasicCruiseConfig.class);
when(goConfigService.currentCruiseConfig()).thenReturn(config);
when(config.getGroups()).thenReturn(new PipelineGroups());
when(hookImplementer.prune(anySet(), anyMap())).thenReturn(new HashSet<Material>());
final HashMap params = new HashMap();
params.put(MaterialUpdateService.TYPE, "type");
service.notifyMaterialsForUpdate(username, params, result);
HttpLocalizedOperationResult operationResult = new HttpLocalizedOperationResult();
operationResult.notFound(LocalizedMessage.string("MATERIAL_SUITABLE_FOR_NOTIFICATION_NOT_FOUND"), HealthStateType.general(HealthStateScope.GLOBAL));
assertThat(result, is(operationResult));
verify(hookImplementer).prune(anySet(), anyMap());
}
use of com.thoughtworks.go.server.materials.postcommit.PostCommitHookImplementer in project gocd by gocd.
the class MaterialUpdateService method notifyMaterialsForUpdate.
public void notifyMaterialsForUpdate(Username username, Object params, HttpLocalizedOperationResult result) {
if (!goConfigService.isUserAdmin(username)) {
result.forbidden("Unauthorized to access this API.", HealthStateType.forbidden());
return;
}
final Map attributes = (Map) params;
if (attributes.containsKey(MaterialUpdateService.TYPE)) {
PostCommitHookMaterialType materialType = postCommitHookMaterialType.toType((String) attributes.get(MaterialUpdateService.TYPE));
if (!materialType.isKnown()) {
result.badRequest("The request could not be understood by Go Server due to malformed syntax. The client SHOULD NOT repeat the request without modifications.");
return;
}
final PostCommitHookImplementer materialTypeImplementer = materialType.getImplementer();
final CruiseConfig cruiseConfig = goConfigService.currentCruiseConfig();
Set<Material> allUniquePostCommitSchedulableMaterials = materialConfigConverter.toMaterials(cruiseConfig.getAllUniquePostCommitSchedulableMaterials());
resolveSecretForSvnMaterials(allUniquePostCommitSchedulableMaterials);
final Set<Material> prunedMaterialList = materialTypeImplementer.prune(allUniquePostCommitSchedulableMaterials, attributes);
if (prunedMaterialList.isEmpty()) {
result.notFound("Unable to find material. Materials must be configured not to poll for new changes before they can be used with the notification mechanism.", HealthStateType.general(HealthStateScope.GLOBAL));
return;
}
for (Material material : prunedMaterialList) {
updateMaterial(material);
}
result.accepted("The material is now scheduled for an update. Please check relevant pipeline(s) for status.");
} else {
result.badRequest("The request could not be understood by Go Server due to malformed syntax. The client SHOULD NOT repeat the request without modifications.");
}
}
Aggregations