use of org.kie.workbench.common.screens.library.api.preferences.LibraryProjectPreferences in project kie-wb-common by kiegroup.
the class PopulatedAssetsScreenTest method testInitializeDefaultPreference.
@Test
public void testInitializeDefaultPreference() {
LibraryPreferences mockLibraryPreferences = mock(LibraryPreferences.class);
LibraryProjectPreferences mockLibraryProjectPreferences = mock(LibraryProjectPreferences.class);
when(mockLibraryPreferences.getProjectPreferences()).thenReturn(mockLibraryProjectPreferences);
when(mockLibraryProjectPreferences.getAssetsPerPage()).thenReturn(15);
doReturn(promises.resolve(false)).when(this.projectController).canUpdateProject(any());
this.populatedAssetsScreen.init();
verify(libraryPreferences).load(any(ParameterizedCommand.class), any(ParameterizedCommand.class));
}
use of org.kie.workbench.common.screens.library.api.preferences.LibraryProjectPreferences in project kie-wb-common by kiegroup.
the class AddProjectPopUpPresenterTest method testRestoreAdvancedOptionsWithoutActiveOrganizationalUnit.
@Test
public void testRestoreAdvancedOptionsWithoutActiveOrganizationalUnit() {
LibraryPreferences loadedLibraryPreferences = mock(LibraryPreferences.class);
LibraryProjectPreferences libraryProjectPreferences = mock(LibraryProjectPreferences.class);
LibraryOrganizationalUnitPreferences libraryOrganizationalUnitPreferences = mock(LibraryOrganizationalUnitPreferences.class);
doReturn(libraryProjectPreferences).when(loadedLibraryPreferences).getProjectPreferences();
doReturn("version").when(libraryProjectPreferences).getVersion();
doReturn(libraryOrganizationalUnitPreferences).when(loadedLibraryPreferences).getOrganizationalUnitPreferences();
when(libraryOrganizationalUnitPreferences.getGroupId()).thenReturn("group");
when(projectContext.getActiveOrganizationalUnit()).thenReturn(Optional.empty());
when(view.getName()).thenReturn("Project Test");
executeParametrizedCommandWith(0, loadedLibraryPreferences).when(libraryPreferences).load(any(ParameterizedCommand.class), any(ParameterizedCommand.class));
presenter.restoreAdvancedOptions();
verify(view).setVersion("version");
verify(view).setGroupId("group");
verify(view, never()).setDescription(any());
verify(view).setArtifactId("ProjectTest");
}
use of org.kie.workbench.common.screens.library.api.preferences.LibraryProjectPreferences in project kie-wb-common by kiegroup.
the class LibraryServiceImplTest method setup.
@Before
public void setup() {
ous = Arrays.asList(ou1, ou2);
when(ouService.getOrganizationalUnits()).thenReturn(ous);
when(ou1.getIdentifier()).thenReturn("ou1");
when(ou2.getIdentifier()).thenReturn("ou2");
when(repo1.getAlias()).thenReturn("repo_created_by_user");
final List<Branch> repo1Branches = Arrays.asList(makeBranch("repo1-branch1", repo1.getAlias()), makeBranch("repo1-branch2", repo1.getAlias()));
when(repo1.getBranches()).thenReturn(repo1Branches);
when(repo1.getBranch(anyString())).then(inv -> repo1Branches.stream().filter(b -> b.getName().equals(inv.getArgument(0, String.class))).findFirst());
when(repo2Default.getAlias()).thenReturn("ou2-repo-alias");
final List<Branch> repo2Branches = Collections.singletonList(makeBranch("repo2-branch1", repo2Default.getAlias()));
when(repo2Default.getBranches()).thenReturn(repo2Branches);
when(ou2.getRepositories()).thenReturn(Arrays.asList(repo1, repo2Default));
when(indexOracle.isIndexed(any())).thenReturn(true);
modulesMock = new HashSet<>();
modulesMock.add(mock(Module.class));
modulesMock.add(mock(Module.class));
modulesMock.add(mock(Module.class));
when(preferences.getOrganizationalUnitPreferences()).thenReturn(spy(new LibraryOrganizationalUnitPreferences()));
when(preferences.getProjectPreferences()).thenReturn(spy(new LibraryProjectPreferences()));
sessionInfo = new SessionInfoMock();
libraryService = spy(new LibraryServiceImpl(ouService, refactoringQueryService, preferences, authorizationManager, sessionInfo, explorerServiceHelper, projectService, moduleService, examplesService, ioService, userManagerService, indexOracle, spaceConfigStorageRegistry, clusterService, archetypeService));
}
use of org.kie.workbench.common.screens.library.api.preferences.LibraryProjectPreferences in project kie-wb-common by kiegroup.
the class AddProjectPopUpPresenterTest method testRestoreAdvancedOptionsWithActiveOrganizationalUnit.
@Test
public void testRestoreAdvancedOptionsWithActiveOrganizationalUnit() {
LibraryPreferences loadedLibraryPreferences = mock(LibraryPreferences.class);
LibraryProjectPreferences libraryProjectPreferences = mock(LibraryProjectPreferences.class);
doReturn(libraryProjectPreferences).when(loadedLibraryPreferences).getProjectPreferences();
doReturn("version").when(libraryProjectPreferences).getVersion();
when(projectContext.getActiveOrganizationalUnit().get().getDefaultGroupId()).thenReturn("group");
when(view.getName()).thenReturn("Project Test");
executeParametrizedCommandWith(0, loadedLibraryPreferences).when(libraryPreferences).load(any(ParameterizedCommand.class), any(ParameterizedCommand.class));
presenter.restoreAdvancedOptions();
verify(libraryPreferences).load(any(ParameterizedCommand.class), any(ParameterizedCommand.class));
verify(view).setVersion("version");
verify(view).setGroupId("group");
verify(view, never()).setDescription(any());
verify(view).setArtifactId("ProjectTest");
}
Aggregations