Skip to content
Snippets Groups Projects
Commit d3973e88 authored by juanf's avatar juanf
Browse files

SSDM-2788 : Report basic tests

SVN: 35222
parent a395595a
No related branches found
No related tags found
No related merge requests found
...@@ -5,6 +5,40 @@ define([ 'jquery', 'underscore', 'openbis', 'test/common' ], function($, _, open ...@@ -5,6 +5,40 @@ define([ 'jquery', 'underscore', 'openbis', 'test/common' ], function($, _, open
return function() { return function() {
QUnit.module("JS VS JAVA API"); QUnit.module("JS VS JAVA API");
// var packageNameHandlers = {
// }
//
// var jsonObjectAnnotationHandlers = {
//
// }
//
// var standardHandler = function(javaDef, jsDef) {
//
// }
var areClassesCorrect = function(report) {
for(var ridx = 0; ridx < report.entries.length; ridx++) {
var javaClassReport = report.entries[ridx];
var javaClassName = javaClassReport.name;
var jsClassName = javaClassReport.jsonObjAnnotation;
if(jsClassName) {
var errorHandler = function(javaClassName) {
return function() {
console.info("Java class with jsonObjectAnnotation missing in Javascript: " + javaClassName);
};
};
var requireJsPath = jsClassName.replace(/\./g,'/');
require([requireJsPath], function(myclass){
var test = "break";
}, errorHandler(javaClassName));
} else {
console.info("Java class missing jsonObjectAnnotation: " + javaClassName);
}
}
return true;
}
QUnit.test("get Java report from aggregation service", function(assert) { QUnit.test("get Java report from aggregation service", function(assert) {
var c = new common(assert); var c = new common(assert);
c.start(); c.start();
...@@ -20,6 +54,7 @@ define([ 'jquery', 'underscore', 'openbis', 'test/common' ], function($, _, open ...@@ -20,6 +54,7 @@ define([ 'jquery', 'underscore', 'openbis', 'test/common' ], function($, _, open
} }
if(report) { if(report) {
areClassesCorrect(report);
c.ok("Report received"); c.ok("Report received");
} else { } else {
c.fail("Report Missing"); c.fail("Report Missing");
......
...@@ -15,7 +15,9 @@ package ch.ethz.sis.openbis.v3; ...@@ -15,7 +15,9 @@ package ch.ethz.sis.openbis.v3;
* limitations under the License. * limitations under the License.
*/ */
import java.lang.annotation.Annotation;
import java.lang.reflect.Field; import java.lang.reflect.Field;
import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.Method; import java.lang.reflect.Method;
import java.lang.reflect.Modifier; import java.lang.reflect.Modifier;
import java.util.ArrayList; import java.util.ArrayList;
...@@ -109,6 +111,29 @@ public class APIReport ...@@ -109,6 +111,29 @@ public class APIReport
return uniqueClasses; return uniqueClasses;
} }
private String getJSONObjectAnnotation(Class<?> clazz)
{
Annotation[] annotations = clazz.getAnnotations();
for(Annotation annotation:annotations) {
Class<? extends Annotation> type = annotation.annotationType();
String name = type.getName();
if(name.equals("ch.systemsx.cisd.base.annotation.JsonObject")) {
for (Method method : type.getDeclaredMethods()) {
try
{
Object value = method.invoke(annotation, (Object[]) null);
return (String) value;
} catch (Exception e)
{
e.printStackTrace();
}
}
}
}
return null;
}
private Collection<Field> getPublicFields(Class<?> clazz) private Collection<Field> getPublicFields(Class<?> clazz)
{ {
Collection<Field> fields = new ArrayList<Field>(); Collection<Field> fields = new ArrayList<Field>();
...@@ -141,6 +166,7 @@ public class APIReport ...@@ -141,6 +166,7 @@ public class APIReport
for (Class<?> clazz : classes) for (Class<?> clazz : classes)
{ {
Entry entry = new Entry(clazz.getName()); Entry entry = new Entry(clazz.getName());
entry.setJsonObjAnnotation(getJSONObjectAnnotation(clazz));
addFields(entry, getPublicFields(clazz)); addFields(entry, getPublicFields(clazz));
addMethods(entry, getPublicMethods(clazz)); addMethods(entry, getPublicMethods(clazz));
report.add(entry); report.add(entry);
...@@ -183,7 +209,9 @@ public class APIReport ...@@ -183,7 +209,9 @@ public class APIReport
static class Entry static class Entry
{ {
private String Name; private String Name;
private String jsonObjAnnotation;
private List<String> fields = new ArrayList<String>(); private List<String> fields = new ArrayList<String>();
private List<String> methods = new ArrayList<String>(); private List<String> methods = new ArrayList<String>();
...@@ -199,6 +227,17 @@ public class APIReport ...@@ -199,6 +227,17 @@ public class APIReport
return this.Name; return this.Name;
} }
public String getJsonObjAnnotation()
{
return this.jsonObjAnnotation;
}
public void setJsonObjAnnotation(String jsonObjAnnotation)
{
this.jsonObjAnnotation = jsonObjAnnotation;
}
public List<String> getFields() public List<String> getFields()
{ {
return this.fields; return this.fields;
......
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