コード例 #1
0
def test_integrate(target_file, connection, clear_entries):
    cursor = connection.cursor()
    job = Job(job_id=None, filename=target_file)
    job.update(cursor)
    connection.commit()
    cursor.execute('select * from transmission_log where image_id = %s',
                   (80220150902064322,))
    assert cursor.rowcount == 1
コード例 #2
0
def test_integrate_without_refcat(ref_image_path, target_file, connection,
                                  clear_entries, clear_catalogue,
                                  refimage_file):
    ref_image_path.return_value = refimage_file
    cursor = connection.cursor()
    job = Job(job_id=None, filename=target_file)
    job.update(cursor)
    connection.commit()
    cursor.execute('select * from transmission_log where image_id = %s',
                   (80220150902064322,))
    assert cursor.rowcount == 1