How to use dict_to_fields method in lisa

Best Python code snippet using lisa_python

car_library.py

Source:car_library.py Github

copy

Full Screen

...41 return 042 def steering_send(value):43 return 044 def get_known_fields():45 return can_helpers.dict_to_fields(ToyotaYaris.fields)46 fields = {47 0x0b4: [ [ "speed", 40, 16, speed_recv, speed_send ], ],48 0x0b0: [ [ "wheel-fl", 0, 16 ], \49 [ "wheel-fr", 16, 16 ], ],50 0x0b2: [ [ "wheel-bl", 0, 16 ], \51 [ "wheel-br", 16, 16 ], ],52 0x224: [ [ "brake-b", 2, 1 ], ],53 0x260: [ [ "steering", 40, 24, steering_recv, steering_send ], ],54 0x2c4: [ [ "engine-rev-a", 0, 16 ], \55 [ "unknown 2", 54, 8 ], ],56 0x3b3: [ [ "engine-rev-b", 0, 16 ], ],57 0x3b4: [ [ "brake-a", 39, 1 ], ],58 0x610: [ [ "speed-b", 8, 16 ], ],59 0x611: [ [ "km-count", 40, 24 ], ],60 0x620: [ [ "door-rl+rr", 44, 2 ], \61 [ "door-fr", 43, 1 ], \62 [ "door-fl", 42, 1 ], \63 [ "door-trunk", 46, 1 ], \64 [ "parking-brake", 59, 1 ] ],65 0x621: [ [ "lock-trig", 8, 1 ], \66 [ "lock-err", 16, 1 ], ],67 0x398: [ [ "throttle slow", 0, 16 ], ],68 0x638: [ [ "door unlocked", 19, 1 ], ],69 }70 '''71 Need to find how to compute these values72 0x2c1: an accelerator related value73 0x3b3: an accelerator related value too74 steering: find correct constants75 '''76class Peugeot207_2008_diesel:77 fields = {78 0x208: [ [ "throttle-a", 32, 8], ],79 0x228: [ [ "throttle-b", 16, 8], ],80 0x50d: [ [ "brake", 47, 1], ],81 0x412: [ [ "parking-brake", 4, 1], ],82 }83 def get_known_fields():...

Full Screen

Full Screen

sql_builder.py

Source:sql_builder.py Github

copy

Full Screen

...19 return "text default ''"20 raise Exception("datatype_to_sqltype: unknown type field_name=%s, field_value=%s" % (field_name, field_value))212223def dict_to_fields(inp_dict):24 return map(lambda k: fix_json_field_name(k) + " " + datatype_to_sqltype(k, inp_dict[k]), inp_dict.keys())252627def sql_table(tablename, fields, alter=False):28 if alter:29 tmp = []30 for fld in fields:31 tmp.append("alter table %s add column if not exists %s;" % (tablename, fld))32 return "\n".join(tmp) + "\n"33 else:34 return "create table if not exists %s(\n" % (tablename,) + ", \n".join(fields) + ");\n"353637def dump_sql(sql, out, db):38 if out:39 out.write(sql)40 if db:41 cur = db.cursor()42 cur.execute(sql)43 db.commit()444546# TODO: параметры для верификации базы47parser = argparse.ArgumentParser(description='postall SQL database initializer')48parser.add_argument("-o", "--out", type=unicode, default="-", help="output file for sql code")49parser.add_argument("-db", "--database", type=unicode, default=argparse.SUPPRESS, help="database connection string")50parser.add_argument("-a", "--alter", action="store_true", help="alter columns of tables")51parser.add_argument("-v", "--verify", action="store_true", help="verify tables")52args = vars(parser.parse_args())5354out = None55db = None56if "out" in args:57 if args["out"] == "-":58 import sys59 out = sys.stdout60 else:61 out = open(args["out"], "w")62if "database" in args:63 import psycopg264 db = psycopg2.connect(args["database"])6566alter = False67if "alter" in args:68 alter = args["alter"]69###70sql = sql_table("LETTER_INFO", dict_to_fields(defconf.LETTER_DB_FIELDS) + dict_to_fields(defconf.LETTER_DEFAULT), alter)71dump_sql(sql, out, db)72###73sql = sql_table("REESTR_INFO", dict_to_fields(defconf.REESTR_DB_FIELDS), alter)74dump_sql(sql, out, db)75###76contragent_struct = copy.copy(defconf.CONTRAGENT_DB_FIELDS)77for k, v in defconf.LETTER_DEFAULT.iteritems():78 if k.endswith("-to"):79 contragent_struct[k] = v80sql = sql_table("CONTRAGENT_DICT", dict_to_fields(contragent_struct), alter)81dump_sql(sql, out, db)82###83sql = sql_table("USER_DICT", dict_to_fields(defconf.USER_DB_FIELDS), alter)84dump_sql(sql, out, db)85###86sql = sql_table("POSTINDEX", dict_to_fields(defconf.POSTINDEX_DB_FIELDS), alter)87dump_sql(sql, out, db)88###89if defconf.USE_DAEMON:90 sql = sql_table("COMMAND_QUEUE",91 ["uid serial", "command varchar(20)", "db_reestr_id integer unique", "db_letter_id integer",92 "reestr_date date", "db_user_id text"], alter)93 dump_sql(sql, out, db)94###95if out:96 out.close()97if db: ...

Full Screen

Full Screen

test_config_file.py

Source:test_config_file.py Github

copy

Full Screen

...14 def test_property_prices(self):15 ff = FieldFile(f("data/uk_property_prices.tff"))16 self.assertTrue(ff.has_new_name("txn"))17 self.assertFalse(ff.name_value("txn") is None)18 def test_dict_to_fields(self):19 a = {"a": 1, "b": 2, "c": 3}20 b = {"w": 5, "z": a}21 c = {"m": a, "n": b}22 fields = dict_to_fields(a)23 self.assertEqual(len(fields), 3)24 self.assertEqual(["a", "b", "c"], fields)25 fields = dict_to_fields(b)26 self.assertEqual(len(fields), 4)27 self.assertEqual(["w", "a", "b", "c"], fields)28 fields = dict_to_fields(c)29 self.assertEqual(len(fields), 7)30 self.assertEqual(["a", "b", "c", "w", "a", "b", "c"], fields)31if __name__ == "__main__":...

Full Screen

Full Screen

Automation Testing Tutorials

Learn to execute automation testing from scratch with LambdaTest Learning Hub. Right from setting up the prerequisites to run your first automation test, to following best practices and diving deeper into advanced test scenarios. LambdaTest Learning Hubs compile a list of step-by-step guides to help you be proficient with different test automation frameworks i.e. Selenium, Cypress, TestNG etc.

LambdaTest Learning Hubs:

YouTube

You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.

Run lisa automation tests on LambdaTest cloud grid

Perform automation testing on 3000+ real desktop and mobile devices online.

Try LambdaTest Now !!

Get 100 minutes of automation test minutes FREE!!

Next-Gen App & Browser Testing Cloud

Was this article helpful?

Helpful

NotHelpful