Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

refactored dashboard ExportSearchResultsPage #2611

Merged
merged 3 commits into from
Dec 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,10 @@ public T getById(ID id) {
public T save(T entity) {
return save(entity, false, false);
}

public void saveAll(final Iterable<T> entities) {
entities.forEach(this::save);
}

public T saveAndFlush(T entity) {
return save(entity, true, false);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,10 @@ public void updateLocaleInViewRoot() {
FacesContext.getCurrentInstance().getViewRoot().setLocale(new Locale(localeCode));
}
}

public boolean canEditDashboard() {
return !this.systemConfig.isReadonlyMode() && getUser().isSuperuser();
}

// -------------------- PRIVATE --------------------

Expand Down
Original file line number Diff line number Diff line change
@@ -1,123 +1,66 @@
package edu.harvard.iq.dataverse.dashboard;

import static java.lang.Boolean.FALSE;
import static java.util.Comparator.comparing;
import static java.util.stream.Collectors.toList;
import static org.apache.commons.lang.StringUtils.EMPTY;

import java.io.Serializable;
import java.util.List;

import javax.annotation.PostConstruct;
import javax.enterprise.context.RequestScoped;
import javax.inject.Inject;
import javax.inject.Named;

import org.omnifaces.cdi.ViewScoped;

import edu.harvard.iq.dataverse.DataverseDao;
import edu.harvard.iq.dataverse.DataverseSession;
import edu.harvard.iq.dataverse.PermissionsWrapper;
import edu.harvard.iq.dataverse.NavigationWrapper;
import edu.harvard.iq.dataverse.persistence.dataset.DatasetFieldType;
import edu.harvard.iq.dataverse.persistence.dataset.DatasetFieldTypeRepository;
import edu.harvard.iq.dataverse.util.SystemConfig;

@ViewScoped
@SuppressWarnings("serial")
@RequestScoped
@Named("ExportSearchResultsPage")
public class DashboardExportSearchResultsPage implements Serializable {

private final DataverseSession session;
private final PermissionsWrapper permissionsWrapper;
private final NavigationWrapper navigation;
private final DataverseDao dataverseDao;
private final SystemConfig systemConfig;
private final DatasetFieldTypeRepository datasetFiledTypeRepo;

private List<Metadata> metadataTypes;
private List<DatasetFieldType> fieldTypes;

@Inject
public DashboardExportSearchResultsPage(final DataverseSession session,
final PermissionsWrapper permissionsWrapper,
final DataverseDao dataverseDao, final SystemConfig systemConfig,
final NavigationWrapper navigation,
final DataverseDao dataverseDao,
final DatasetFieldTypeRepository datasetFiledTypeRepo) {
this.session = session;
this.permissionsWrapper = permissionsWrapper;
this.navigation = navigation;
this.dataverseDao = dataverseDao;
this.systemConfig = systemConfig;
this.datasetFiledTypeRepo = datasetFiledTypeRepo;
}

public List<Metadata> getMetadataTypes() {
return this.metadataTypes;
}

public String init() {
if (canEdit()) {
initMetadataTypes();
return EMPTY;
} else {
return this.permissionsWrapper.notAuthorized();
}

@PostConstruct
public void init() {
this.fieldTypes = this.datasetFiledTypeRepo.findAll();
this.fieldTypes.sort(comparing(DatasetFieldType::getTitle));
}

private void initMetadataTypes() {
this.metadataTypes = this.datasetFiledTypeRepo.findAll().stream()
.map(Metadata::new).sorted(comparing(Metadata::getTitle))
.collect(toList());
public List<DatasetFieldType> getFieldTypes() {
return this.fieldTypes;
}

private boolean canEdit() {
return !this.systemConfig.isReadonlyMode()
&& this.session.getUser().isSuperuser();
public String verifyAccess() {
return this.session.canEditDashboard() ? EMPTY : this.navigation.notAuthorized();
}

public String save() {
for (final DatasetFieldType fieldType : this.datasetFiledTypeRepo.findAll()) {
fieldType.setExportToFile(isExportedToFile(fieldType.getId()));
this.datasetFiledTypeRepo.save(fieldType);
}
this.datasetFiledTypeRepo.saveAll(this.fieldTypes);
return EMPTY;
}

private boolean isExportedToFile(final Long id) {
return this.metadataTypes.stream().filter(mt -> mt.getId().equals(id))
.findFirst().map(Metadata::isExportable).orElse(FALSE);
}

public String cancel() {
return "/dashboard.xhtml?faces-redirect=true&dataverseId="
+ this.dataverseDao.findRootDataverse().getId();
}

public static class Metadata {

private final Long id;
private final String title;
private final String description;
private boolean exportable;

private Metadata(final DatasetFieldType fieldType) {
this.id = fieldType.getId();
this.title = fieldType.getTitle();
this.description = fieldType.getDescription();
this.exportable = fieldType.isExportToFile();
}

public boolean isExportable() {
return this.exportable;
}

public void setExportable(final boolean exportable) {
this.exportable = exportable;
}

public Long getId() {
return this.id;
}

public String getTitle() {
return this.title;
}

public String getDescription() {
return this.description;
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
<f:viewParam name="dataverseId"
value="#{dataverseDao.findRootDataverse().id}" />
<f:viewAction action="#{dataverseSession.updateLocaleInViewRoot}" />
<f:viewAction action="#{ExportSearchResultsPage.init()}" />
<f:viewAction action="#{ExportSearchResultsPage.verifyAccess()}" />
<f:viewAction
action="#{dataverseHeaderFragment.initBreadcrumbs(dataverseDao.findRootDataverse())}" />
<f:viewAction
Expand All @@ -40,7 +40,7 @@
<div class="collapse in">
<div class="panel-body">
<div class="form-group">
<p:dataTable value="#{ExportSearchResultsPage.metadataTypes}" var="mt" >
<p:dataTable value="#{ExportSearchResultsPage.fieldTypes}" var="mt" >
<p:column width="20%"
headerText="#{bundle['dashboard.card.exportsearchresults.name']}">
<h:outputText value="#{mt.title}"/>
Expand All @@ -51,7 +51,7 @@
</p:column>
<p:column width="10%"
headerText="#{bundle['dashboard.card.exportsearchresults.exported']}">
<p:selectBooleanCheckbox value="#{mt.exportable}"/>
<p:selectBooleanCheckbox value="#{mt.exportToFile}"/>
</p:column>
</p:dataTable>
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@
import static org.mockito.Mockito.when;
import static org.mockito.quality.Strictness.LENIENT;

import java.util.List;

import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.extension.ExtendWith;
Expand All @@ -25,7 +27,6 @@
@ExtendWith(MockitoExtension.class)
@MockitoSettings(strictness = LENIENT)
public class DashboardExportSearchResultsPageTest {

@InjectMocks
private DashboardExportSearchResultsPage page;

Expand All @@ -39,10 +40,10 @@ public class DashboardExportSearchResultsPageTest {
private PermissionsWrapper permissionsWrapper;
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You still need a NavigationWrapper mock.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I dont need it since I don't test DashboardExportSearchResultsPage.verifyAccess() method, and I don't intend to for now.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

But you're purposefully breaking the constructor interface by providing null and you're still creating a SystemConfig mock even though it doesn't seem necessary. I mean, it's not very consistent. Tests are in a way much like production code.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

fixed

@Mock
private DataverseDao dataverseDao;


private DatasetFieldType type1 = new DatasetFieldType();
private DatasetFieldType type2 = new DatasetFieldType();
private List<DatasetFieldType> types = asList(this.type1, this.type2);

@BeforeEach
public void setUp() {
Expand All @@ -55,28 +56,28 @@ public void setUp() {
this.type2.setId(2L);
this.type2.setTitle("abc");

when(this.datasetFiledTypeRepo.findAll())
.thenReturn(asList(this.type1, this.type2));
when(this.datasetFiledTypeRepo.findAll()).thenReturn(types);

this.page.init();
}

@Test
public void selectionAndSavingWorks() throws Exception {
this.page.init();

assertThat(this.page.getMetadataTypes().size()).isEqualTo(2);
assertThat(this.page.getFieldTypes().size()).isEqualTo(2);

assertThat(this.page.getMetadataTypes().get(0).getId()).isEqualTo(2L);
assertThat(this.page.getMetadataTypes().get(0).getTitle()).isEqualTo("abc");
assertThat(this.page.getMetadataTypes().get(0).isExportable()).isFalse();
assertThat(this.page.getFieldTypes().get(0).getId()).isEqualTo(2L);
assertThat(this.page.getFieldTypes().get(0).getTitle()).isEqualTo("abc");
assertThat(this.page.getFieldTypes().get(0).isExportToFile()).isFalse();

assertThat(this.page.getMetadataTypes().get(1).getId()).isEqualTo(1L);
assertThat(this.page.getMetadataTypes().get(1).getTitle()).isEqualTo("def");
assertThat(this.page.getMetadataTypes().get(1).isExportable()).isFalse();
assertThat(this.page.getFieldTypes().get(1).getId()).isEqualTo(1L);
assertThat(this.page.getFieldTypes().get(1).getTitle()).isEqualTo("def");
assertThat(this.page.getFieldTypes().get(1).isExportToFile()).isFalse();

this.page.getMetadataTypes().get(0).setExportable(true);
this.page.getFieldTypes().get(0).setExportToFile(true);
this.page.save();

verify(this.datasetFiledTypeRepo).save(this.type2);
verify(this.datasetFiledTypeRepo).saveAll(this.types);
assertThat(this.type1.isExportToFile()).isFalse();
assertThat(this.type2.isExportToFile()).isTrue();
}
Expand Down
Loading