Java Code Examples for com.google.api.services.cloudresourcemanager.CloudResourceManager.Projects#List
The following examples show how to use
com.google.api.services.cloudresourcemanager.CloudResourceManager.Projects#List .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: ProjectRepositoryTest.java From google-cloud-eclipse with Apache License 2.0 | 6 votes |
@Test public void testGetProjects_pagination() throws IOException, ProjectRepositoryException { Projects.List list = initializeListRequest(); ListProjectsResponse response1 = new ListProjectsResponse(); response1.setProjects(Collections.singletonList(project)); response1.setNextPageToken("a token"); ListProjectsResponse response2 = new ListProjectsResponse(); Project project2 = new Project(); project2.setName("project 2").setProjectId("project_2"); response2.setProjects(Collections.singletonList(project2)); when(list.execute()).thenReturn(response1, response2); List<GcpProject> gcpProjects = repository.getProjects(mock(Credential.class)); assertThat(gcpProjects.size(), is(2)); GcpProject gcpProject = gcpProjects.get(0); assertThat(gcpProject.getName(), is("projectName")); assertThat(gcpProject.getId(), is("projectId")); GcpProject gcpProject2 = gcpProjects.get(1); assertThat(gcpProject2.getName(), is("project 2")); assertThat(gcpProject2.getId(), is("project_2")); }
Example 2
Source File: MiniSelectorTest.java From google-cloud-eclipse with Apache License 2.0 | 6 votes |
private void mockProjectsList(Credential credential, GcpProject... gcpProjects) { Projects projectsApi = mock(Projects.class); Projects.List listApi = mock(Projects.List.class); List<Project> projectsList = new ArrayList<>(); for (GcpProject gcpProject : gcpProjects) { Project project = new Project(); project.setName(gcpProject.getName()); project.setProjectId(gcpProject.getId()); projectsList.add(project); } ListProjectsResponse response = new ListProjectsResponse(); response.setProjects(projectsList); try { doReturn(projectsApi).when(apiFactory).newProjectsApi(credential); doReturn(listApi).when(listApi).setPageSize(any(Integer.class)); doReturn(listApi).when(projectsApi).list(); doReturn(response).when(listApi).execute(); } catch (IOException ex) { fail(ex.toString()); } }
Example 3
Source File: RunOptionsDefaultsComponentTest.java From google-cloud-eclipse with Apache License 2.0 | 6 votes |
private void mockProjectList(Credential credential, GcpProject... gcpProjects) throws IOException { Projects projectsApi = mock(Projects.class); Projects.List listApi = mock(Projects.List.class); List<Project> projectsList = new ArrayList<>(); for (GcpProject gcpProject : gcpProjects) { Project project = new Project(); // cannot mock final classes project.setName(gcpProject.getName()); project.setProjectId(gcpProject.getId()); projectsList.add(project); } ListProjectsResponse response = new ListProjectsResponse(); // cannot mock final classes response.setProjects(projectsList); doReturn(projectsApi).when(apiFactory).newProjectsApi(credential); doReturn(listApi).when(listApi).setPageSize(anyInt()); doReturn(listApi).when(projectsApi).list(); doReturn(response).when(listApi).execute(); }
Example 4
Source File: LiveProjectSource.java From policyscanner with Apache License 2.0 | 5 votes |
private boolean refreshProjects(String nextPageToken) throws IOException { ListProjectsResponse projectListResponse; Projects.List projectsList; try { projectsList = GCPProject.getProjectsApiStub().list(); if (nextPageToken != null) { projectsList = projectsList.setPageToken(nextPageToken); } if (source.getOrgId() != null) { projectsList = projectsList .setFilter("parent.type:organization parent.id:" + source.getOrgId()); } projectListResponse = projectsList.execute(); } catch (GeneralSecurityException gse) { throw new IOException("Cannot get projects. Access denied"); } List<Project> projects = projectListResponse.getProjects(); for (Project project : projects) { String orgId = null; if (project.getParent() != null) { orgId = project.getParent().getId(); } if (project.getLifecycleState() == null || project.getLifecycleState().startsWith(DELETE_PREFIX)) { continue; } this.projects.add(new GCPProject(project.getProjectId(), orgId, project.getName())); } this.nextPageToken = projectListResponse.getNextPageToken(); return !this.projects.isEmpty(); }
Example 5
Source File: ProjectRepositoryTest.java From google-cloud-eclipse with Apache License 2.0 | 5 votes |
@Test(expected = ProjectRepositoryException.class) public void testGetProjects_exceptionInRequest() throws IOException, ProjectRepositoryException { Projects.List list = initializeListRequest(); when(list.execute()).thenThrow(new IOException("test exception")); repository.getProjects(mock(Credential.class)); }
Example 6
Source File: ProjectRepositoryTest.java From google-cloud-eclipse with Apache License 2.0 | 5 votes |
@Test public void testGetProjects_successful() throws IOException, ProjectRepositoryException { Projects.List list = initializeListRequest(); ListProjectsResponse response = new ListProjectsResponse(); response.setProjects(Collections.singletonList(project)); when(list.execute()).thenReturn(response); List<GcpProject> gcpProjects = repository.getProjects(mock(Credential.class)); assertNotNull(gcpProjects); assertThat(gcpProjects.size(), is(1)); GcpProject gcpProject = gcpProjects.get(0); assertThat(gcpProject.getName(), is("projectName")); assertThat(gcpProject.getId(), is("projectId")); }
Example 7
Source File: ProjectRepositoryTest.java From google-cloud-eclipse with Apache License 2.0 | 5 votes |
@Test public void testGetProjects_null() throws IOException, ProjectRepositoryException { Projects.List list = initializeListRequest(); ListProjectsResponse response = new ListProjectsResponse(); response.setProjects(null); when(list.execute()).thenReturn(response); List<GcpProject> gcpProjects = repository.getProjects(mock(Credential.class)); assertNotNull(gcpProjects); }
Example 8
Source File: ProjectRepositoryTest.java From google-cloud-eclipse with Apache License 2.0 | 5 votes |
@Test public void testGetProjects_onlyDeletedProjectsReturned() throws IOException, ProjectRepositoryException { Projects.List list = initializeListRequest(); ListProjectsResponse response = new ListProjectsResponse(); response.setProjects(Collections.singletonList(project)); project.setLifecycleState("DELETE_REQUESTED"); when(list.execute()).thenReturn(response); List<GcpProject> gcpProjects = repository.getProjects(mock(Credential.class)); assertNotNull(gcpProjects); assertTrue(gcpProjects.isEmpty()); }
Example 9
Source File: ProjectRepositoryTest.java From google-cloud-eclipse with Apache License 2.0 | 5 votes |
private Projects.List initializeListRequest() throws IOException { Projects projects = mock(Projects.class); when(apiFactory.newProjectsApi(any(Credential.class))).thenReturn(projects); Projects.List list = mock(Projects.List.class); when(projects.list()).thenReturn(list); when(list.setPageSize(anyInt())).thenReturn(list); when(list.setPageToken(anyString())).thenReturn(list); return list; }
Example 10
Source File: ProjectRepository.java From google-cloud-eclipse with Apache License 2.0 | 5 votes |
/** * @return all active projects the account identified by {@code credential} has access to * @throws ProjectRepositoryException if an error happens while communicating with the backend */ public List<GcpProject> getProjects(Credential credential) throws ProjectRepositoryException { Preconditions.checkNotNull(credential); // TODO cache results https://github.com/GoogleCloudPlatform/google-cloud-eclipse/issues/1374 try { Projects projects = apiFactory.newProjectsApi(credential); String token = null; List<Project> projectList = new ArrayList<>(); do { Projects.List listRequest = projects.list().setPageSize(PROJECT_LIST_PAGESIZE); if (token != null) { listRequest = listRequest.setPageToken(token); } ListProjectsResponse response = listRequest.execute(); List<Project> responseProjects = response.getProjects(); if (responseProjects != null) { projectList.addAll(responseProjects); } token = response.getNextPageToken(); } while (token != null); List<GcpProject> gcpProjects = convertToGcpProjects(projectList); return gcpProjects; } catch (IOException ex) { throw new ProjectRepositoryException(ex); } }