Switch from an in-memory HSQLDB to MariaDB during integration tests #57
13
README.md
13
README.md
@ -19,9 +19,14 @@ to format all Java code. To reformat the code run
|
||||
Yes it's a mouthful but unfortunately the [prettier-maven-plugin](https://github.com/HubSpot/prettier-maven-plugin)
|
||||
does not work due to an [outstanding issue](https://github.com/HubSpot/prettier-maven-plugin/issues/79).
|
||||
|
||||
An easier way to reformat code is to set IntelliJ to do it on save. Go to
|
||||
`Settings -> Language & Frameworks -> JavaScript -> Prettier` and then check
|
||||
The formatting is validated by CI, but you should do it beforehand with a simple `./mvnw verify -pl .`.
|
||||
|
||||
### Making IntelliJ format for you
|
||||
For this to work you also need to have [Node.js](https://nodejs.org)
|
||||
installed and configured under `Settings -> Language & Frameworks -> Node.js`
|
||||
and the file you're saving *must* be able to compile otherwise no formatting
|
||||
can be performed.
|
||||
|
||||
Go to `Settings -> Language & Frameworks -> JavaScript -> Prettier` and then check
|
||||
`Automatic Prettier Configuration`, set `Run for files` to `**/*.{java}`,
|
||||
and finally check `Run on save`.
|
||||
|
||||
The formatting is validated by CI, but you should do it beforehand with a simple `./mvnw verify -pl .`.
|
||||
|
@ -1,8 +1,6 @@
|
||||
package se.su.dsv.scipro.report;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public interface GradeCalculator extends Serializable {
|
||||
public interface GradeCalculator {
|
||||
GradingReport.Grade getGrade(GradingReport gradingReport);
|
||||
|
||||
long getPoints(GradingReport gradingReport);
|
||||
|
2
pom.xml
2
pom.xml
@ -100,7 +100,7 @@
|
||||
<dependency>
|
||||
<groupId>org.springframework.boot</groupId>
|
||||
<artifactId>spring-boot-dependencies</artifactId>
|
||||
<version>3.2.5</version>
|
||||
<version>3.2.12</version>
|
||||
<scope>import</scope>
|
||||
<type>pom</type>
|
||||
</dependency>
|
||||
|
@ -16,10 +16,8 @@
|
||||
|
||||
<fieldset class="mb-3">
|
||||
<legend><wicket:message key="projectTypes"/></legend>
|
||||
<div class="form-check" wicket:id="projectTypes">
|
||||
<input type="checkbox" wicket:id="checkbox" class="form-check-input"/>
|
||||
<label class="form-check-label" wicket:for="checkbox"><span wicket:id="name"></span></label>
|
||||
</div>
|
||||
<div wicket:id="projectTypes"></div>
|
||||
<div wicket:id="projectTypesFeedback"></div>
|
||||
</fieldset>
|
||||
|
||||
<div class="form-row">
|
||||
|
@ -4,17 +4,14 @@ import jakarta.inject.Inject;
|
||||
import java.time.LocalDate;
|
||||
import java.time.LocalTime;
|
||||
import java.util.List;
|
||||
import org.apache.wicket.extensions.model.AbstractCheckBoxModel;
|
||||
import org.apache.wicket.feedback.FencedFeedbackPanel;
|
||||
import org.apache.wicket.markup.html.basic.Label;
|
||||
import org.apache.wicket.markup.html.form.*;
|
||||
import org.apache.wicket.markup.html.list.ListItem;
|
||||
import org.apache.wicket.markup.html.list.ListView;
|
||||
import org.apache.wicket.markup.html.panel.ComponentFeedbackPanel;
|
||||
import org.apache.wicket.model.IModel;
|
||||
import org.apache.wicket.model.LambdaModel;
|
||||
import org.apache.wicket.model.LoadableDetachableModel;
|
||||
import org.apache.wicket.request.mapper.parameter.PageParameters;
|
||||
import se.su.dsv.scipro.components.BootstrapCheckBoxMultipleChoice;
|
||||
import se.su.dsv.scipro.components.BootstrapDatePicker;
|
||||
import se.su.dsv.scipro.components.BootstrapTimePicker;
|
||||
import se.su.dsv.scipro.components.DatesValidator;
|
||||
@ -39,7 +36,6 @@ public class AdminEditApplicationPeriodPage
|
||||
public static final String TITLE = "title";
|
||||
public static final String FEEDBACK = "Feedback";
|
||||
public static final String TITLE_FEEDBACK = "titleFeedback";
|
||||
public static final String CHECKBOX = "checkbox";
|
||||
|
||||
@Inject
|
||||
private ProjectTypeService projectTypeService;
|
||||
@ -62,19 +58,15 @@ public class AdminEditApplicationPeriodPage
|
||||
);
|
||||
add(new ComponentFeedbackPanel(TITLE_FEEDBACK, title));
|
||||
add(title);
|
||||
add(
|
||||
new ListView<>(PROJECT_TYPES, availableProjectTypes()) {
|
||||
@Override
|
||||
protected void populateItem(ListItem<ProjectType> item) {
|
||||
item.add(
|
||||
new CheckBox(CHECKBOX, new ProjectTypeSelectionModel(item.getModel())).setOutputMarkupId(
|
||||
true
|
||||
)
|
||||
);
|
||||
item.add(new Label("name", item.getModel().map(ProjectType::getName)));
|
||||
}
|
||||
}
|
||||
BootstrapCheckBoxMultipleChoice<ProjectType> projectTypeChoice = new BootstrapCheckBoxMultipleChoice<>(
|
||||
PROJECT_TYPES,
|
||||
LambdaModel.of(getModel(), ApplicationPeriod::getProjectTypes, ApplicationPeriod::setProjectTypes),
|
||||
availableProjectTypes(),
|
||||
new LambdaChoiceRenderer<>(ProjectType::getName, ProjectType::getId)
|
||||
);
|
||||
projectTypeChoice.setRequired(true);
|
||||
add(projectTypeChoice);
|
||||
add(new FencedFeedbackPanel("projectTypesFeedback", projectTypeChoice));
|
||||
final FormComponent<LocalDate> startDate = addDateField(
|
||||
START_DATE,
|
||||
LambdaModel.of(getModel(), ApplicationPeriod::getStartDate, ApplicationPeriod::setStartDate)
|
||||
@ -139,30 +131,6 @@ public class AdminEditApplicationPeriodPage
|
||||
getRootForm().error(getString("overlapping"));
|
||||
}
|
||||
}
|
||||
|
||||
private class ProjectTypeSelectionModel extends AbstractCheckBoxModel {
|
||||
|
||||
private final IModel<ProjectType> model;
|
||||
|
||||
public ProjectTypeSelectionModel(IModel<ProjectType> model) {
|
||||
this.model = model;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean isSelected() {
|
||||
return getModelObject().getProjectTypes().contains(model.getObject());
|
||||
}
|
||||
|
||||
@Override
|
||||
public void select() {
|
||||
getModelObject().addProjectType(model.getObject());
|
||||
}
|
||||
|
||||
@Override
|
||||
public void unselect() {
|
||||
getModelObject().removeProjectType(model.getObject());
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
private LoadableDetachableModel<ApplicationPeriod> getLoaded(final PageParameters pp) {
|
||||
|
@ -15,3 +15,4 @@ overlapping= Overlapping application period already exists.
|
||||
date.Required= You need to specify a valid date.
|
||||
hours.Required= Hours field is required.
|
||||
minutes.Required= Minutes field is required.
|
||||
projectTypes.Required=You must select at least one project type.
|
||||
|
@ -4,7 +4,6 @@ import org.apache.wicket.markup.html.WebMarkupContainer;
|
||||
import org.apache.wicket.markup.html.basic.Label;
|
||||
import org.apache.wicket.markup.html.panel.Panel;
|
||||
import org.apache.wicket.model.IModel;
|
||||
import org.apache.wicket.model.LoadableDetachableModel;
|
||||
import se.su.dsv.scipro.components.OppositeVisibility;
|
||||
import se.su.dsv.scipro.report.GradeCalculator;
|
||||
import se.su.dsv.scipro.report.GradingReport;
|
||||
@ -18,15 +17,13 @@ public class GradingReportPointsPanel extends Panel {
|
||||
public GradingReportPointsPanel(
|
||||
String id,
|
||||
final IModel<? extends GradingReport> gradingReportIModel,
|
||||
final GradeCalculator gradeCalculator
|
||||
final IModel<GradeCalculator> gradeCalculator
|
||||
) {
|
||||
super(id, gradingReportIModel);
|
||||
final IModel<GradingReport.Grade> gradeModel = new LoadableDetachableModel<>() {
|
||||
@Override
|
||||
protected GradingReport.Grade load() {
|
||||
return gradingReportIModel.getObject().getGrade(gradeCalculator);
|
||||
}
|
||||
};
|
||||
final IModel<GradingReport.Grade> gradeModel = gradingReportIModel.combineWith(
|
||||
gradeCalculator,
|
||||
GradingReport::getGrade
|
||||
);
|
||||
final Label grade = new Label(GRADE, gradeModel.map(GradingReport.Grade::name)) {
|
||||
@Override
|
||||
protected void onConfigure() {
|
||||
@ -36,12 +33,7 @@ public class GradingReportPointsPanel extends Panel {
|
||||
};
|
||||
add(grade);
|
||||
|
||||
final IModel<Long> points = new LoadableDetachableModel<>() {
|
||||
@Override
|
||||
protected Long load() {
|
||||
return gradingReportIModel.getObject().getPoints(gradeCalculator);
|
||||
}
|
||||
};
|
||||
final IModel<Long> points = gradingReportIModel.combineWith(gradeCalculator, GradingReport::getPoints);
|
||||
add(new Label(POINTS_LABEL, points));
|
||||
|
||||
add(new WebMarkupContainer(NO_GRADE_EXPLANATION).add(new OppositeVisibility(grade)));
|
||||
|
@ -271,8 +271,8 @@ public class IndividualAuthorAssessmentPanel extends GenericPanel<User> {
|
||||
new TemplatePanel("points_to_grade_conversion", gradingReport.map(SupervisorGradingReport::getProject))
|
||||
);
|
||||
|
||||
GradeCalculator supervisorCalculator = gradeCalculatorService.getSupervisorCalculator(
|
||||
gradingReport.getObject().getProject()
|
||||
IModel<GradeCalculator> supervisorCalculator = LoadableDetachableModel.of(() ->
|
||||
gradeCalculatorService.getSupervisorCalculator(gradingReport.getObject().getProject())
|
||||
);
|
||||
add(new GradingReportPointsPanel("points", gradingReport, supervisorCalculator));
|
||||
|
||||
|
@ -7,8 +7,10 @@ import java.io.Serializable;
|
||||
import java.time.LocalDate;
|
||||
import java.util.Collections;
|
||||
import java.util.List;
|
||||
import org.apache.wicket.Component;
|
||||
import org.apache.wicket.Page;
|
||||
import org.apache.wicket.feedback.FeedbackMessage;
|
||||
import org.apache.wicket.markup.html.form.CheckBoxMultipleChoice;
|
||||
import org.apache.wicket.markup.html.form.RequiredTextField;
|
||||
import org.apache.wicket.request.mapper.parameter.PageParameters;
|
||||
import org.apache.wicket.util.tester.FormTester;
|
||||
@ -36,6 +38,7 @@ public class AdminEditApplicationPeriodPageTest extends SciProTest {
|
||||
@BeforeEach
|
||||
public void setUp() throws Exception {
|
||||
bachelor = new ProjectType(DegreeType.BACHELOR, "Bachelor", "Bachelor");
|
||||
bachelor.setId(8L);
|
||||
bachelor.addModule(ProjectModule.MATCH);
|
||||
when(projectTypeService.findWithModule(ProjectModule.MATCH)).thenReturn(Collections.singletonList(bachelor));
|
||||
startPage();
|
||||
@ -47,8 +50,12 @@ public class AdminEditApplicationPeriodPageTest extends SciProTest {
|
||||
}
|
||||
|
||||
@Test
|
||||
@SuppressWarnings("unchecked")
|
||||
public void contains_project_type_selection() {
|
||||
tester.assertModelValue(path(FORM, PROJECT_TYPES), projectTypeService.findWithModule(ProjectModule.MATCH));
|
||||
tester.assertComponent(path(FORM, PROJECT_TYPES), CheckBoxMultipleChoice.class);
|
||||
Component component = tester.getComponentFromLastRenderedPage(path(FORM, PROJECT_TYPES));
|
||||
CheckBoxMultipleChoice<ProjectType> choice = (CheckBoxMultipleChoice<ProjectType>) component;
|
||||
Assertions.assertEquals(projectTypeService.findWithModule(ProjectModule.MATCH), choice.getChoices());
|
||||
}
|
||||
|
||||
@Test
|
||||
@ -105,7 +112,7 @@ public class AdminEditApplicationPeriodPageTest extends SciProTest {
|
||||
);
|
||||
FormTester formTester = tester.newFormTester(FORM);
|
||||
fillInForm("Title", 0, 1, 2, formTester);
|
||||
formTester.setValue(path(PROJECT_TYPES, 0, CHECKBOX), true);
|
||||
formTester.setValue(path(PROJECT_TYPES), String.valueOf(bachelor.getId()));
|
||||
formTester.submit();
|
||||
|
||||
ArgumentCaptor<ApplicationPeriod> captor = ArgumentCaptor.forClass(ApplicationPeriod.class);
|
||||
@ -113,12 +120,25 @@ public class AdminEditApplicationPeriodPageTest extends SciProTest {
|
||||
MatcherAssert.assertThat(captor.getValue().getProjectTypes(), Matchers.hasItem(bachelor));
|
||||
}
|
||||
|
||||
@Test
|
||||
public void requires_at_least_one_project_type_to_be_selected() {
|
||||
FormTester formTester = tester.newFormTester(FORM);
|
||||
fillInFormWithValidValues(formTester);
|
||||
formTester.setValue(path(PROJECT_TYPES), "");
|
||||
formTester.submit();
|
||||
tester.assertErrorMessages(tester.getLastRenderedPage().getString("projectTypes.Required"));
|
||||
}
|
||||
|
||||
private void submitForm(String title, int startDate, int endDate, int courseStartDate) {
|
||||
FormTester formTester = tester.newFormTester(FORM);
|
||||
fillInForm(title, startDate, endDate, courseStartDate, formTester);
|
||||
formTester.submit();
|
||||
}
|
||||
|
||||
private void fillInFormWithValidValues(FormTester formTester) {
|
||||
fillInForm("Title", 0, 1, 2, formTester);
|
||||
}
|
||||
|
||||
private void fillInForm(String title, int startDate, int endDate, int courseStartDate, FormTester formTester) {
|
||||
formTester.setValue(TITLE, title);
|
||||
final LocalDate now = LocalDate.now();
|
||||
@ -126,6 +146,7 @@ public class AdminEditApplicationPeriodPageTest extends SciProTest {
|
||||
formTester.setValue(END_DATE, now.plusDays(endDate).toString());
|
||||
formTester.setValue(COURSE_START_DATE, now.plusDays(courseStartDate).toString());
|
||||
formTester.setValue("courseStartTime", "08:00");
|
||||
formTester.setValue(PROJECT_TYPES, String.valueOf(bachelor.getId()));
|
||||
}
|
||||
|
||||
private void startPage() {
|
||||
|
@ -62,7 +62,7 @@ public class GradingReportPointsPanelTest extends SciProTest {
|
||||
|
||||
private void startPanel() {
|
||||
panel = tester.startComponentInPage(
|
||||
new GradingReportPointsPanel("id", Model.of(gradingReport), gradeCalculator)
|
||||
new GradingReportPointsPanel("id", Model.of(gradingReport), () -> gradeCalculator)
|
||||
);
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user