Search in sources :

Example 1 with LibraryProjectPreferences

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));
}
Also used : LibraryPreferences(org.kie.workbench.common.screens.library.api.preferences.LibraryPreferences) LibraryProjectPreferences(org.kie.workbench.common.screens.library.api.preferences.LibraryProjectPreferences) ParameterizedCommand(org.uberfire.mvp.ParameterizedCommand) Test(org.junit.Test)

Example 2 with LibraryProjectPreferences

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");
}
Also used : LibraryOrganizationalUnitPreferences(org.kie.workbench.common.screens.library.api.preferences.LibraryOrganizationalUnitPreferences) LibraryPreferences(org.kie.workbench.common.screens.library.api.preferences.LibraryPreferences) LibraryProjectPreferences(org.kie.workbench.common.screens.library.api.preferences.LibraryProjectPreferences) ParameterizedCommand(org.uberfire.mvp.ParameterizedCommand) Test(org.junit.Test)

Example 3 with LibraryProjectPreferences

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));
}
Also used : LibraryOrganizationalUnitPreferences(org.kie.workbench.common.screens.library.api.preferences.LibraryOrganizationalUnitPreferences) SessionInfoMock(org.uberfire.mocks.SessionInfoMock) Branch(org.guvnor.structure.repositories.Branch) Module(org.guvnor.common.services.project.model.Module) LibraryProjectPreferences(org.kie.workbench.common.screens.library.api.preferences.LibraryProjectPreferences) Before(org.junit.Before)

Example 4 with LibraryProjectPreferences

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");
}
Also used : LibraryPreferences(org.kie.workbench.common.screens.library.api.preferences.LibraryPreferences) LibraryProjectPreferences(org.kie.workbench.common.screens.library.api.preferences.LibraryProjectPreferences) ParameterizedCommand(org.uberfire.mvp.ParameterizedCommand) Test(org.junit.Test)

Aggregations

LibraryProjectPreferences (org.kie.workbench.common.screens.library.api.preferences.LibraryProjectPreferences)4 Test (org.junit.Test)3 LibraryPreferences (org.kie.workbench.common.screens.library.api.preferences.LibraryPreferences)3 ParameterizedCommand (org.uberfire.mvp.ParameterizedCommand)3 LibraryOrganizationalUnitPreferences (org.kie.workbench.common.screens.library.api.preferences.LibraryOrganizationalUnitPreferences)2 Module (org.guvnor.common.services.project.model.Module)1 Branch (org.guvnor.structure.repositories.Branch)1 Before (org.junit.Before)1 SessionInfoMock (org.uberfire.mocks.SessionInfoMock)1