use of com.thoughtworks.go.domain.feed.FeedEntries in project gocd by gocd.
the class StageServiceIntegrationTest method shouldLoadStageAuthorsAndMingleCards_forFirstPageOfFeed.
@Test
public void shouldLoadStageAuthorsAndMingleCards_forFirstPageOfFeed() throws Exception {
MingleConfig upstreamMingle = new MingleConfig("https://mingle.gingle/when/single", "jingle");
MingleConfig downstreamMingle = new MingleConfig("https://downstream-mingle", "go");
PipelineConfig downstream = setup2DependentInstances(upstreamMingle, downstreamMingle);
FeedEntries feed = stageService.feed(downstream.name().toString(), new Username(new CaseInsensitiveString("loser")));
assertStageEntryAuthorAndMingleCards(upstreamMingle, downstreamMingle, feed);
}
use of com.thoughtworks.go.domain.feed.FeedEntries in project gocd by gocd.
the class StageServiceIntegrationTest method shouldLoadStageAuthorsAndMingleCards_forSubsequentPages.
@Test
public void shouldLoadStageAuthorsAndMingleCards_forSubsequentPages() throws Exception {
MingleConfig upstreamMingle = new MingleConfig("https://mingle.gingle/when/single", "jingle");
MingleConfig downstreamMingle = new MingleConfig("https://downstream-mingle", "go");
PipelineConfig downstream = setup2DependentInstances(upstreamMingle, downstreamMingle);
FeedEntries feed = stageService.feedBefore(Integer.MAX_VALUE, downstream.name().toString(), new Username(new CaseInsensitiveString("loser")));
assertStageEntryAuthorAndMingleCards(upstreamMingle, downstreamMingle, feed);
}
use of com.thoughtworks.go.domain.feed.FeedEntries in project gocd by gocd.
the class StageServiceTest method findCompletedStagesFor_shouldNotCacheTheResultPerPipelineForFeedsBeforeAGivenID.
@Test
public void findCompletedStagesFor_shouldNotCacheTheResultPerPipelineForFeedsBeforeAGivenID() {
Date updateDate = new Date();
when(stageDao.findCompletedStagesFor("cruise", FeedModifier.Before, 1L, 25)).thenReturn(asList(stageFeedEntry("cruise", updateDate))).thenReturn(asList(stageFeedEntry("cruise", updateDate)));
// Setup Mingle Config
MingleConfig mingleConfig = new MingleConfig("http://foo.bar:7019/baz/", "go-project");
when(goConfigService.currentCruiseConfig()).thenReturn(cruiseConfigWithMingle("cruise", mingleConfig));
// Setup card numbers
Map<Long, List<ModificationForPipeline>> expectedMap = new HashMap<>();
expectedMap.put(1L, asList(new ModificationForPipeline(new PipelineId("cruise", 1L), ModificationsMother.checkinWithComment("revision", "#123 hello wolrd", updateDate), "Svn", "fooBarBaaz")));
when(changesetService.modificationsOfPipelines(asList(1L), "cruise", Username.ANONYMOUS)).thenReturn(expectedMap);
StageService service = new StageService(stageDao, null, null, null, null, null, changesetService, goConfigService, transactionTemplate, transactionSynchronizationManager, new StubGoCache(transactionSynchronizationManager));
FeedEntry expected = stageFeedEntry("cruise", updateDate);
FeedEntries feedEntries = service.feedBefore(1L, "cruise", Username.ANONYMOUS);
assertThat(feedEntries, is(new FeedEntries(asList(expected))));
assertThat(feedEntries.get(0).getAuthors(), is(asList(new Author(ModificationsMother.MOD_USER_COMMITTER, ModificationsMother.EMAIL_ADDRESS))));
assertThat(feedEntries.get(0).getMingleCards(), is(asList(new MingleCard(mingleConfig, "123"))));
feedEntries = service.feedBefore(1L, "cruise", Username.ANONYMOUS);
assertThat(feedEntries, is(new FeedEntries(asList(expected))));
assertThat(feedEntries.get(0).getAuthors(), is(asList(new Author(ModificationsMother.MOD_USER_COMMITTER, ModificationsMother.EMAIL_ADDRESS))));
assertThat(feedEntries.get(0).getMingleCards(), is(asList(new MingleCard(mingleConfig, "123"))));
verify(stageDao, times(2)).findCompletedStagesFor("cruise", FeedModifier.Before, 1L, 25);
verifyNoMoreInteractions(stageDao);
}
use of com.thoughtworks.go.domain.feed.FeedEntries in project gocd by gocd.
the class StageServiceTest method findCompletedStagesFor_shouldInvalidateCacheOnCompletionOfAStage.
@Test
public void findCompletedStagesFor_shouldInvalidateCacheOnCompletionOfAStage() {
Date updateDate = new Date();
when(stageDao.findCompletedStagesFor("cruise", FeedModifier.Latest, -1, 25)).thenReturn(asList(stageFeedEntry("cruise", updateDate))).thenReturn(asList(stageFeedEntry("cruise", updateDate)));
MingleConfig mingleConfig = new MingleConfig("http://foo.bar:7019/baz/", "go-project");
when(goConfigService.currentCruiseConfig()).thenReturn(cruiseConfigWithMingle("cruise", mingleConfig));
Map<Long, List<ModificationForPipeline>> expectedMap = new HashMap<>();
expectedMap.put(1L, asList(new ModificationForPipeline(new PipelineId("cruise", 1L), ModificationsMother.checkinWithComment("revision", "#123 hello wolrd", updateDate), "Svn", "fooBarBaaz")));
when(changesetService.modificationsOfPipelines(asList(1L), "cruise", Username.ANONYMOUS)).thenReturn(expectedMap);
StageService service = new StageService(stageDao, null, null, null, null, null, changesetService, goConfigService, transactionTemplate, transactionSynchronizationManager, new StubGoCache(transactionSynchronizationManager));
FeedEntry expected = stageFeedEntry("cruise", updateDate);
// Should cache
FeedEntries feedEntries = service.feed("cruise", Username.ANONYMOUS);
assertThat(feedEntries, is(new FeedEntries(asList(expected))));
assertThat(feedEntries.get(0).getAuthors(), is(asList(new Author(ModificationsMother.MOD_USER_COMMITTER, ModificationsMother.EMAIL_ADDRESS))));
assertThat(feedEntries.get(0).getMingleCards(), is(asList(new MingleCard(mingleConfig, "123"))));
Stage stage = StageMother.createPassedStage("cruise", 1, "stage", 1, "job", updateDate);
stage.setIdentifier(new StageIdentifier("cruise", 1, "stage", String.valueOf(1)));
// Should remove from the cache
service.updateResult(stage);
// Should retrieve from db again.
feedEntries = service.feed("cruise", Username.ANONYMOUS);
assertThat(feedEntries, is(new FeedEntries(asList(expected))));
assertThat(feedEntries.get(0).getAuthors(), is(asList(new Author(ModificationsMother.MOD_USER_COMMITTER, ModificationsMother.EMAIL_ADDRESS))));
assertThat(feedEntries.get(0).getMingleCards(), is(asList(new MingleCard(mingleConfig, "123"))));
verify(stageDao, times(2)).findCompletedStagesFor("cruise", FeedModifier.Latest, -1, 25);
verify(changesetService, times(2)).modificationsOfPipelines(asList(1L), "cruise", Username.ANONYMOUS);
verifyNoMoreInteractions(changesetService);
}
use of com.thoughtworks.go.domain.feed.FeedEntries in project gocd by gocd.
the class FeedService method stagesXml.
public Document stagesXml(Username username, String pipelineName, Integer pipelineCounter, String baseUrl) {
if (!goConfigService.hasPipelineNamed(new CaseInsensitiveString(pipelineName))) {
throw new RecordNotFoundException(EntityType.Pipeline, pipelineName);
}
if (!securityService.hasViewPermissionForPipeline(username, pipelineName)) {
throw new NotAuthorizedException(NOT_AUTHORIZED_TO_VIEW_PIPELINE);
}
FeedEntries feedEntries = stageService.findStageFeedBy(pipelineName, pipelineCounter, FeedModifier.Before, username);
FeedEntriesRepresenter representable = new FeedEntriesRepresenter(pipelineName, feedEntries);
return xmlApiService.write(representable, baseUrl);
}
Aggregations