mirror of
https://github.com/FirebirdSQL/firebird-qa.git
synced 2025-01-23 05:53:06 +01:00
115 lines
3.6 KiB
Python
115 lines
3.6 KiB
Python
#coding:utf-8
|
|
#
|
|
# id: bugs.gh_7045
|
|
# title: International characters in table or alias names causes queries of MON$STATEMENTS to fail
|
|
# decription:
|
|
# NOTES.
|
|
# Blob column mon$explained_plan seems to be source of problem, but only for mon$statements table.
|
|
# Other blob columns (e.g. rdb$exceptions.rdb$description or sec$users.sec$description) not affected.
|
|
#
|
|
# Confirmed bug on 5.0.0.310.
|
|
# Checked on 5.0.0.311 - all fine.
|
|
#
|
|
# tracker_id:
|
|
# min_versions: ['5.0']
|
|
# versions: 5.0
|
|
# qmid: None
|
|
|
|
import pytest
|
|
from firebird.qa import db_factory, python_act, Action
|
|
|
|
# version: 5.0
|
|
# resources: None
|
|
|
|
substitutions_1 = []
|
|
|
|
init_script_1 = """"""
|
|
|
|
db_1 = db_factory(sql_dialect=3, init=init_script_1)
|
|
|
|
# test_script_1
|
|
#---
|
|
#
|
|
# import os
|
|
# import subprocess
|
|
# import time
|
|
# import codecs
|
|
#
|
|
# db_conn.close()
|
|
# os.environ["ISC_USER"] = user_name
|
|
# os.environ["ISC_PASSWORD"] = user_password
|
|
#
|
|
#
|
|
# #--------------------------------------------
|
|
#
|
|
# def flush_and_close( file_handle ):
|
|
# # https://docs.python.org/2/library/os.html#os.fsync
|
|
# # If you're starting with a Python file object f,
|
|
# # first do f.flush(), and
|
|
# # then do os.fsync(f.fileno()), to ensure that all internal buffers associated with f are written to disk.
|
|
# global os
|
|
#
|
|
# file_handle.flush()
|
|
# if file_handle.mode not in ('r', 'rb') and file_handle.name != os.devnull:
|
|
# # otherwise: "OSError: [Errno 9] Bad file descriptor"!
|
|
# os.fsync(file_handle.fileno())
|
|
# file_handle.close()
|
|
#
|
|
# #--------------------------------------------
|
|
#
|
|
# def cleanup( f_names_list ):
|
|
# global os
|
|
# for f in f_names_list:
|
|
# if type(f) == file:
|
|
# del_name = f.name
|
|
# elif type(f) == str:
|
|
# del_name = f
|
|
# else:
|
|
# print('Unrecognized type of element:', f, ' - can not be treated as file.')
|
|
# del_name = None
|
|
#
|
|
# if del_name and os.path.isfile( del_name ):
|
|
# os.remove( del_name )
|
|
#
|
|
# #--------------------------------------------
|
|
#
|
|
# non_ascii_char = 'á'
|
|
# conn_charset = 'iso8859_1'
|
|
# sql_cmd=''' set list on;
|
|
# set blob all;
|
|
# set names %(conn_charset)s;
|
|
# connect '%(dsn)s';
|
|
#
|
|
# select mon$explained_plan -- BLOB SUB_TYPE 1 SEGMENT SIZE 80 CHARACTER SET UTF8
|
|
# from mon$statements as "%(non_ascii_char)s" where mon$attachment_id = current_connection
|
|
# ;
|
|
# ''' % dict(globals(), **locals())
|
|
#
|
|
# # >>> do not (ordinal not in range(128)" >>> f_sql_chk = codecs.open( os.path.join(context['temp_directory'],'tmp_7045_run.sql'), 'w', encoding = 'latin-1')
|
|
# f_sql_chk = open( os.path.join(context['temp_directory'],'tmp_7045_run.sql'), 'w')
|
|
# f_sql_chk.write(sql_cmd.decode('utf8').encode('latin-1'))
|
|
# flush_and_close( f_sql_chk )
|
|
#
|
|
#
|
|
# f_sql_log = open( ''.join( (os.path.splitext(f_sql_chk.name)[0], '.log' ) ), 'w')
|
|
# f_sql_err = open( ''.join( (os.path.splitext(f_sql_chk.name)[0], '.err' ) ), 'w')
|
|
# subprocess.call( [ context['isql_path'], '-q', '-i', f_sql_chk.name ], stdout = f_sql_log, stderr = f_sql_err)
|
|
# flush_and_close( f_sql_log )
|
|
# flush_and_close( f_sql_err )
|
|
#
|
|
# if os.path.getsize(f_sql_err.name):
|
|
# print('UNEXPECTED STDERR:')
|
|
# with open(f_sql_err.name, 'r') as f:
|
|
# print(f.read())
|
|
#
|
|
# cleanup((f_sql_chk, f_sql_log, f_sql_err))
|
|
#
|
|
#---
|
|
|
|
act_1 = python_act('db_1', substitutions=substitutions_1)
|
|
|
|
@pytest.mark.version('>=5.0')
|
|
@pytest.mark.xfail
|
|
def test_1(act_1: Action):
|
|
pytest.fail("Test not IMPLEMENTED")
|