Example #1
0
 def delete_test(self, test_id):
     with transaction() as txn_conn:
         with txn_conn.cursor() as cursor:
             stmt = '''DELETE FROM "tests" WHERE id = %s::INTEGER'''
             cursor.execute(stmt, [test_id])
             return True
     return False
Example #2
0
 def exists(self, email, phash):  # returns id
     with transaction() as txn_conn:
         with txn_conn.cursor() as cursor:
             user_existence_check = '''SELECT id FROM "users" WHERE email = %s and phash = %s'''
             cursor.execute(user_existence_check, [email, phash])
             id_, = cursor.fetchone()
             return id_
Example #3
0
 def get_by_name(self, name):
     with transaction() as txn_conn:
         with txn_conn.cursor() as cursor:
             stmt = '''SELECT id FROM "projects" WHERE name = %s'''
             cursor.execute(stmt, [name])
             id_, = cursor.fetchone()
             return id_
Example #4
0
 def get_test_run_result(self, test_run_id):
     with transaction() as txn_conn:
         with txn_conn.cursor() as cursor:
             stmt = '''SELECT result from "tests_results" WHERE id = %s::INTEGER'''
             cursor.execute(stmt, [test_run_id])
             result, = cursor.fetchone()
             return result
Example #5
0
 def create_test(self, name, project_id):  # returns the test id
     with transaction() as txn_conn:
         with txn_conn.cursor() as cursor:
             stmt = '''INSERT INTO "tests" (name, project_id) SELECT %s, %s::INTEGER RETURNING id;'''
             cursor.execute(stmt, [name, project_id])
             test_id, = cursor.fetchone()
             return test_id
Example #6
0
 def create(self, name):  # returns the project id
     with transaction() as txn_conn:
         with txn_conn.cursor() as cursor:
             stmt = '''INSERT INTO "projects" (name) SELECT %s RETURNING id;'''
             cursor.execute(stmt, [name])
             id_, = cursor.fetchone()
             return id_
Example #7
0
 def run_test(self, test_id):
     with transaction() as txn_conn:
         with txn_conn.cursor() as cursor:
             stmt = '''INSERT INTO "test_results" (test_id) SELECT %s::INTEGER returning id;'''
             cursor.execute(stmt, [test_id])
             id_, = cursor.fetchone()
             self.set_test_result(test_id=id)
             return id_
Example #8
0
 def create(self, email, phash, role):  # return id of newly created user
     with transaction() as txn_conn:
         with txn_conn.cursor() as cursor:
             role_stmt = '''SELECT id FROM "roles" WHERE name = %s'''
             cursor.execute(role_stmt, [role])
             role_id, = cursor.fetchone()
             create_user_stmt = '''INSERT INTO "users" (email, phash, role_id) SELECT %s, %s, %s::INTEGER RETURNING id'''
             cursor.execute(create_user_stmt, [email, phash, role_id])
             id_, = cursor.fetchone()
             return id_
Example #9
0
 def set_test_result(self, test_id, result=None):
     if result is None or result not in TEST_RESULT_VALUES.keys():
         result = TEST_RESULT_VALUES[random.choice(
             list(TEST_RESULT_VALUES.keys()))]
     with transaction() as txn_conn:
         with txn_conn.cursor() as cursor:
             stmt = '''UPDATE "tests_results" SET result = %s WHERE test_id = %s::INTEGER'''
             cursor.execute(stmt, [result, test_id])
             return True
     return False
Example #10
0
 def get_user_roles(self, uid):
     with transaction() as txn_conn:
         with txn_conn.cursor() as cursor:
             fetch_user_abilities = '''
                     SELECT r.abilities
                     FROM "roles" r
                     INNER JOIN "users" u
                         ON u.role_id = r.id
                     WHERE u.id = %s::INTEGER
                 '''
             cursor.execute(fetch_user_abilities, [uid])
             abilities, = cursor.fetchone()
             return abilities
Example #11
0
 def get_test_by_name(self, project_id, test_name):  # return test.id
     with transaction() as txn_conn:
         with txn_conn.cursor() as cursor:
             stmt = '''
                 SELECT t.id
                 FROM "tests" t
                 INNER JOIN "projects" p
                     ON t.project_id = p.id
                 WHERE t.name = %s
                 AND t.project_id = %s::INTEGER'''
             cursor.execute(stmt, [test_name, project_id])
             id_, = cursor.fetchone()
             return id_