|
25 | 25 | import java.util.Map;
|
26 | 26 | import java.util.Set;
|
27 | 27 |
|
28 |
| -import static org.mockito.Matchers.any; |
29 |
| -import static org.mockito.Matchers.anyString; |
30 |
| -import static org.mockito.Matchers.eq; |
| 28 | +import static org.mockito.Matchers.*; |
31 | 29 | import static org.mockito.Mockito.*;
|
| 30 | +import static org.testng.Assert.assertEquals; |
32 | 31 | import static org.testng.Assert.assertNotNull;
|
33 | 32 |
|
34 | 33 | /**
|
@@ -61,7 +60,59 @@ public void testForkRepositoriesFound() throws Exception {
|
61 | 60 | all.loadDockerfileGithubUtil(dockerfileGitHubUtil);
|
62 | 61 | all.forkRepositoriesFound(ArrayListMultimap.create(), ArrayListMultimap.create(), contentsWithImage, "image");
|
63 | 62 |
|
64 |
| - Mockito.verify(dockerfileGitHubUtil, times(1)).closeOutdatedPullRequestAndFork(any()); |
| 63 | + Mockito.verify(dockerfileGitHubUtil, times(3)).closeOutdatedPullRequestAndFork(any()); |
| 64 | + } |
| 65 | + |
| 66 | + @Test |
| 67 | + public void testForkRepositoriesFound_unableToforkRepo() throws Exception { |
| 68 | + /** |
| 69 | + * Suppose we have multiple dockerfiles that need to updated in a repo and we fail to fork such repo, |
| 70 | + * we should not add those repos to pathToDockerfilesInParentRepo. |
| 71 | + */ |
| 72 | + DockerfileGitHubUtil dockerfileGitHubUtil = mock(DockerfileGitHubUtil.class); |
| 73 | + |
| 74 | + GHRepository contentRepo1 = mock(GHRepository.class); |
| 75 | + when(contentRepo1.getFullName()).thenReturn("1"); |
| 76 | + |
| 77 | + GHRepository contentRepo2 = mock(GHRepository.class); |
| 78 | + // Say we have multiple dockerfiles to be updated in repo "1" |
| 79 | + when(contentRepo2.getFullName()).thenReturn("1"); |
| 80 | + |
| 81 | + GHRepository contentRepo3 = mock(GHRepository.class); |
| 82 | + when(contentRepo3.getFullName()).thenReturn("2"); |
| 83 | + |
| 84 | + GHContent content1 = mock(GHContent.class); |
| 85 | + when(content1.getOwner()).thenReturn(contentRepo1); |
| 86 | + when(content1.getPath()).thenReturn("1"); // path to 1st dockerfile in repo "1" |
| 87 | + |
| 88 | + GHContent content2 = mock(GHContent.class); |
| 89 | + when(content2.getOwner()).thenReturn(contentRepo2); |
| 90 | + when(content2.getPath()).thenReturn("2"); // path to 2st dockerfile in repo "1" |
| 91 | + |
| 92 | + GHContent content3 = mock(GHContent.class); |
| 93 | + when(content3.getOwner()).thenReturn(contentRepo3); |
| 94 | + when(content3.getPath()).thenReturn("3"); |
| 95 | + |
| 96 | + PagedSearchIterable<GHContent> contentsWithImage = mock(PagedSearchIterable.class); |
| 97 | + |
| 98 | + PagedIterator<GHContent> contentsWithImageIterator = mock(PagedIterator.class); |
| 99 | + when(contentsWithImageIterator.hasNext()).thenReturn(true, true, true, false); |
| 100 | + when(contentsWithImageIterator.next()).thenReturn(content1, content2, content3, null); |
| 101 | + when(contentsWithImage.iterator()).thenReturn(contentsWithImageIterator); |
| 102 | + when(dockerfileGitHubUtil.closeOutdatedPullRequestAndFork(contentRepo1)).thenReturn(null); // repo1 is unforkable |
| 103 | + when(dockerfileGitHubUtil.closeOutdatedPullRequestAndFork(contentRepo2)).thenReturn(null); // repo1 is unforkable |
| 104 | + when(dockerfileGitHubUtil.closeOutdatedPullRequestAndFork(contentRepo3)).thenReturn(new GHRepository()); |
| 105 | + |
| 106 | + All all = new All(); |
| 107 | + all.loadDockerfileGithubUtil(dockerfileGitHubUtil); |
| 108 | + Multimap<String, String> pathToDockerfilesInParentRepo = ArrayListMultimap.create(); |
| 109 | + Multimap<String, String> imagesFoundInParentRepo = ArrayListMultimap.create(); |
| 110 | + all.forkRepositoriesFound(pathToDockerfilesInParentRepo, imagesFoundInParentRepo, contentsWithImage, "image"); |
| 111 | + |
| 112 | + // Since repo "1" is unforkable, we only added repo "2" to pathToDockerfilesInParentRepo |
| 113 | + assertEquals(pathToDockerfilesInParentRepo.size(), 1); |
| 114 | + assertEquals(imagesFoundInParentRepo.size(), 1); |
| 115 | + Mockito.verify(dockerfileGitHubUtil, times(3)).closeOutdatedPullRequestAndFork(any()); |
65 | 116 | }
|
66 | 117 |
|
67 | 118 | @Test
|
|
0 commit comments