summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLarry Jr <larry.olj@gmail.com>2018-04-16 19:12:33 -0300
committerLarry Jr <larry.olj@gmail.com>2018-04-16 19:12:33 -0300
commit4ed3bfe4f8f5d7c5656fbba09f49bdf3f7d45942 (patch)
tree291fa1b9de6f68d87c7c48aa51063a83edf2a1f2
parenta09a8030f93a6669302db4430a0a82d9212112c3 (diff)
downloadefl-devs/felipealmeida/automatedtests.tar.gz
automatedtest-mono: fixed directions and complex typesdevs/felipealmeida/automatedtests
-rwxr-xr-xsrc/scripts/pyolian/testgenerator.py113
-rw-r--r--src/scripts/pyolian/testgenerator_suite.cs.template8
2 files changed, 90 insertions, 31 deletions
diff --git a/src/scripts/pyolian/testgenerator.py b/src/scripts/pyolian/testgenerator.py
index aa846c2a69..7ec22be127 100755
--- a/src/scripts/pyolian/testgenerator.py
+++ b/src/scripts/pyolian/testgenerator.py
@@ -42,13 +42,9 @@ def load_file(filename):
return f.read()
return None
-dicttypes = {}
-keywords = []
-
-def cs_types():
- global keywords
- dicttypes.update({"byte": "sbyte"
+def cs_types(suite):
+ suite.dicttypes = {"byte": "sbyte"
, "llong": "long"
, "int8": "sbyte"
, "int16": "short"
@@ -79,31 +75,67 @@ def cs_types():
, "array": "eina.Array"
, "inarray": "eina.Inarray"
, "hash": "eina.Hash"
- , "promise": " int"
- , "future": " int"
+ , "promise": "int"
+ , "future": "int"
, "iterator": "eina.Iterator"
- , "accessor": " int"
- })
+ , "accessor": "int"
+ }
- keywords = ["delete", "do", "lock", "event", "in", "object",
- "interface", "string", "internal", "fixed", "base"]
+ suite.dictwords = {'INOUT':'ref ', 'OUT': 'out '}
-def escape_keyword(key):
- if key in keywords:
+ suite.keywords = ["delete", "do", "lock", "event", "in", "object",
+ "interface", "string", "internal", "fixed", "base"]
+ suite.blist_func = [
+ "efl_event_callback_array_priority_add"
+ , "efl_player_position_get"
+ , "efl_text_font_source_get"
+ , "efl_text_font_source_set"
+ , "efl_ui_focus_manager_focus_get"
+ , "efl_ui_widget_focus_set"
+ , "efl_ui_widget_focus_get"
+ , "efl_ui_text_password_get"
+ , "efl_ui_text_password_set"
+ , "elm_interface_scrollable_repeat_events_get"
+ , "elm_interface_scrollable_repeat_events_set"
+ , "elm_wdg_item_del"
+ , "elm_wdg_item_focus_get"
+ , "elm_wdg_item_focus_set"
+ , "elm_interface_scrollable_mirrored_set"
+ , "evas_obj_table_mirrored_get"
+ , "evas_obj_table_mirrored_set"
+ , "edje_obj_load_error_get"
+ , "efl_ui_focus_user_parent_get"
+ , "efl_canvas_object_scale_get" # duplicated signature
+ , "efl_canvas_object_scale_set" # duplicated signature
+ , "efl_access_parent_get"
+ , "efl_access_name_get"
+ , "efl_access_name_set"
+ , "efl_access_root_get"
+ , "efl_access_type_get"
+ , "efl_access_role_get"
+ , "efl_access_action_description_get"
+ , "efl_access_action_description_set"
+ , "efl_access_image_description_get"
+ , "efl_access_image_description_set"
+ , "efl_access_component_layer_get" # duplicated signature
+ , "efl_access_component_alpha_get"
+ , "efl_access_component_size_get"
+ , "efl_ui_spin_button_loop_get"
+ , "efl_ui_list_model_size_get"
+ , "efl_ui_list_relayout_layout_do"
+ ]
+
+def escape_keyword(suite, key):
+ if key in suite.keywords:
return "kw_{}".format(key)
return key
-def to_csharp_klass_name(eo_name):
+def to_csharp_klass_name(suite, eo_name):
names = eo_name.split('.')
- namespaces = [escape_keyword(x.lower()) for x in names[:-1]]
+ namespaces = [escape_keyword(suite, x.lower()) for x in names[:-1]]
klass_name = names[-1]
return '.'.join(namespaces + [klass_name])
-def type_convert(eotype):
- if eotype.type == eotype.type.VOID:
- return 'System.IntPtr'
- return dicttypes.get(eotype.name, to_csharp_klass_name(eotype.name))
-
"""
It will find methods and functions with owned return and without other params
"""
@@ -138,9 +170,6 @@ class Template(pyratemp.Template):
# Build the context for the template
ctx = {}
ctx['suite'] = suite
- ctx['type_convert'] = type_convert
- ctx['keywords'] = keywords
-
# render with the augmented context
output = self(**ctx)
@@ -166,8 +195,14 @@ class SuiteCase():
"dup", "reset", "unload", "close", "set", "interpolate", "has", "grab", "check", "find", "ungrab",
"unset", "clear", "pop", "new", "peek", "push", "update", "show", "move", "hide", "calculate",
"resize", "attach", "pack", "unpack", "emit", "call", "append"]
+
+ self.dicttypes = {}
+ self.dictwords = {}
+ self.blist_func = []
+ self.keywords = []
+
if self.ext == '.cs':
- cs_types()
+ cs_types(self)
def __del__(self):
for cls in self.clslist:
@@ -179,6 +214,29 @@ class SuiteCase():
self.clslist = None
+ def type_convert(self, eotype):
+ if eotype.type == eotype.type.VOID:
+ return 'System.IntPtr'
+
+ new_type = self.dicttypes.get(eotype.name, to_csharp_klass_name(self, eotype.name))
+ if new_type != 'int' and eotype.base_type:
+ new_type = "{}<{}>".format(new_type, self.dicttypes.get(eotype.base_type.name, to_csharp_klass_name(self, eotype.base_type.name)))
+
+ return new_type
+
+ def print_arg(self, eoarg):
+ r = 'arg_{}'.format(eoarg.name)
+
+ prefix = self.dictwords.get(eoarg.direction.name)
+
+ if prefix == 'out' and (eoarg.type.name == "Eina.Slice" or eoarg.type.name == "Eina.Rw_Slice"):
+ prefix = 'ref'
+
+ if not prefix and eoarg.type.is_ptr and eoarg.type.type == eoarg.type.type.REGULAR and eoarg.type.typedecl and eoarg.type.typedecl.type == eoarg.type.typedecl.type.STRUCT:
+ prefix = 'ref'
+
+ return prefix and ' '.join([prefix, r]) or r
+
def load(self, testdir, eofiles):
self.clslist = []
self.custom = load_file(os.path.join(testdir, "{}_custom{}".format(self.name, self.ext))) or ''
@@ -197,7 +255,7 @@ class SuiteCase():
cls.init = load_file(os.path.join(filedir, "init{}".format(self.ext)))
cls.shutdown = load_file(os.path.join(filedir, "shutdown{}".format(self.ext)))
- cls.mlist = list(cls.methods)
+ cls.mlist = [ m for m in cls.methods if m.full_c_method_name not in self.blist_func ]
for func in cls.mlist:
cls.custom += load_file(os.path.join(filedir, func.name, "custom{}".format(self.ext))) or ''
func.init = load_file(os.path.join(filedir, func.name, "init{}".format(self.ext)))
@@ -205,7 +263,8 @@ class SuiteCase():
func.arg_init = load_file(os.path.join(filedir, func.name, "arg_init{}".format(self.ext))) or ''
func.arg_shutdown = load_file(os.path.join(filedir, func.name, "arg_shutdown{}".format(self.ext))) or ''
- cls.plist = [ p for p in cls.properties if p.getter_scope == p.getter_scope.PUBLIC or p.setter_scope == p.setter_scope.PUBLIC ]
+ cls.plist = [ p for p in cls.properties if (p.getter_scope == p.getter_scope.PUBLIC and p.full_c_getter_name not in self.blist_func) or
+ (p.setter_scope == p.setter_scope.PUBLIC and p.full_c_setter_name not in self.blist_func)]
for func in cls.plist:
if func.getter_scope == func.getter_scope.PUBLIC:
cls.custom += load_file(os.path.join(filedir, '{}_get'.format(func.name), "custom{}".format(self.ext))) or ''
diff --git a/src/scripts/pyolian/testgenerator_suite.cs.template b/src/scripts/pyolian/testgenerator_suite.cs.template
index 54fe4b3197..b068018fc7 100644
--- a/src/scripts/pyolian/testgenerator_suite.cs.template
+++ b/src/scripts/pyolian/testgenerator_suite.cs.template
@@ -1,6 +1,6 @@
<!--(macro def_obj)-->${'.'.join(param.type.namespaces).lower()}$.${param.type.short_name}$ arg_${param.name}$ = null;<!--(end)-->
<!--(macro def_param)-->
- <!--(if param.type.type == param.type.type.CLASS)-->${def_obj(param=param)}$<!--(else)-->${type_convert(param.type)}$ arg_${param.name}$ = default(${type_convert(param.type)}$);<!--(end)-->
+ <!--(if param.type.type == param.type.type.CLASS)-->${def_obj(param=param)}$<!--(else)-->${suite.type_convert(param.type)}$ arg_${param.name}$ = default(${suite.type_convert(param.type)}$);<!--(end)-->
<!--(end)-->
<!--(macro def_params)-->
<!--(for p in parameters)-->
@@ -65,7 +65,7 @@ ${def_params(parameters=func.parameters)}$
${func.arg_init}$
${func.init}$
<!--(end)-->
- <!--(if func.method_return_type)-->var r = <!--(end)-->obj.${func.csname}$(${', '.join(['{} arg_{}'.format( param.direction.name.lower().replace('in', ''), param.name) for param in func.parameters])}$);
+ <!--(if func.method_return_type)-->var r = <!--(end)-->obj.${func.csname}$(${', '.join([ suite.print_arg(p) for p in func.parameters])}$);
<!--(if func.arg_shutdown or func.shutdown)-->
${func.arg_shutdown}$
${func.shutdown}$
@@ -91,7 +91,7 @@ ${func.get_init}$
<!--(if len(list(func.getter_values)) == 1)-->
var arg_${list(func.getter_values)[0].name}$ = obj.Get${func.csname}$(${', '.join(['arg_{}'.format(param.name) for param in func.getter_keys])}$);
<!--(else)-->
- obj.Get${func.csname}$(${', '.join(['arg_{}'.format(p.name) for p in func.getter_keys] + ['out arg_{}'.format(p.name) for p in func.getter_values])}$);
+ obj.Get${func.csname}$(${', '.join([suite.print_arg(p) for p in func.getter_keys] + ['out arg_{}'.format(p.name) for p in func.getter_values])}$);
<!--(end)-->
<!--(if func.arg_get_shutdown or func.get_shutdown)-->
${func.arg_get_shutdown}$
@@ -112,7 +112,7 @@ ${def_params(parameters=func.setter_keys)}$
${func.arg_set_init}$
${func.set_init}$
<!--(end)-->
- obj.Set${func.csname}$(${', '.join(['arg_{}'.format(p.name) for p in list(func.setter_keys) + list(func.setter_values)])}$);
+ obj.Set${func.csname}$(${', '.join([suite.print_arg(p) for p in list(func.setter_keys) + list(func.setter_values)])}$);
<!--(if func.arg_set_shutdown or func.set_shutdown)-->
${func.arg_set_shutdown}$
${func.set_shutdown}$