Skip to content
Snippets Groups Projects
Commit 380c7d34 authored by Julian Dehne's avatar Julian Dehne
Browse files

bug: fixed problem in mocking

parent f2c22726
No related branches found
No related tags found
No related merge requests found
package unipotsdam.gf.core.database.mysql;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import unipotsdam.gf.config.GFDatabaseConfig;
import unipotsdam.gf.modules.communication.view.CommunicationView;
import java.sql.*;
import java.util.Date;
public class MysqlConnect {
private static final Logger log = LoggerFactory.getLogger(MysqlConnect.class);
public Connection conn = null;
private static String createConnectionString() {
......@@ -41,6 +46,7 @@ public class MysqlConnect {
conn.close();
}
} catch (final SQLException e) {
log.error(e.toString());
throw new Error("could not close mysql");
}
}
......@@ -56,6 +62,7 @@ public class MysqlConnect {
}
return ps;
} catch (SQLException ex) {
log.error(ex.toString());
System.out.println(ex);
}
return null;
......@@ -68,6 +75,7 @@ public class MysqlConnect {
ResultSet queryResult = ps.executeQuery();
return new VereinfachtesResultSet(queryResult);
} catch (SQLException ex) {
log.error(ex.toString());
System.out.println(ex);
}
return null;
......@@ -78,6 +86,7 @@ public class MysqlConnect {
try {
this.conn.createStatement().execute(statement);
} catch (SQLException ex) {
log.error(ex.toString());
System.out.println(ex);
}
}
......@@ -88,6 +97,7 @@ public class MysqlConnect {
try {
return ps.executeUpdate();
} catch (SQLException ex) {
log.error(ex.toString());
System.out.println(ex);
}
return null;
......@@ -99,6 +109,8 @@ public class MysqlConnect {
try {
ps.execute();
} catch (SQLException ex) {
log.error(ex.toString());
System.out.println(ex);
}
}
......
package unipotsdam.gf.modules.researchreport;
import sun.reflect.generics.reflectiveObjects.NotImplementedException;
import uk.co.jemos.podam.api.PodamFactory;
import uk.co.jemos.podam.api.PodamFactoryImpl;
import unipotsdam.gf.core.management.project.Project;
import unipotsdam.gf.core.management.user.User;
import java.io.File;
public class DummyResearchReportManagement implements ResearchReportManagement {
/**
* Utility to creaty dummy data for students
*/
PodamFactory factory = new PodamFactoryImpl();
@Override
public String createResearchReport(
ResearchReport researchReport, Project project, User student) {
throw new NotImplementedException();
return factory.manufacturePojo(ResearchReport.class).getId();
}
@Override
......
......@@ -6,7 +6,7 @@ public class ResearchReport {
// TODO add properties
private String title;
private ResearchQuestion researchQuestion;
private String id;
private List<String> learningGoals;
private String method;
private String research;
......@@ -108,4 +108,12 @@ public class ResearchReport {
public void setTimeplan(Timeplanning timeplan) {
this.timeplan = timeplan;
}
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
}
......@@ -6,6 +6,7 @@ import org.junit.Before;
import org.junit.Rule;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.mockito.Mock;
import org.mockito.junit.MockitoJUnit;
import org.mockito.junit.MockitoJUnitRunner;
import org.mockito.junit.MockitoRule;
......@@ -47,7 +48,7 @@ public class ActivityFlowTest {
@Inject
ResearchReportManagement researchReportManagement;
@Inject
@Mock
Feedback feedback;
@Inject
......@@ -174,17 +175,10 @@ public class ActivityFlowTest {
public void createCourse() {
// add Titel
Project project = new Project();
project.setId("testprojekt");
Project project = factory.manufacturePojo(Project.class);
management.create(project);
// select criteria, topics, phases, assessment criteria
HashMap<ProjectPhase, Boolean> phasesSelected = new HashMap<>();
HashMap<Category, Boolean> criteriaSelected = new HashMap<>();
HashMap<AssessmentMechanism, Boolean> assessemtsSelected = new HashMap<>();
HashMap<GroupFormationMechanism, Boolean> groupFormationSelected = new HashMap<>();
ProjectConfiguration projectConfiguration = new ProjectConfiguration(phasesSelected, criteriaSelected,
assessemtsSelected, groupFormationSelected);
ProjectConfiguration projectConfiguration = factory.manufacturePojo(ProjectConfiguration.class);
management.create(projectConfiguration, project);
//
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment