2016-12-15 12:44:17 +00:00
|
|
|
#!/usr/bin/env python
|
|
|
|
import sys
|
2015-12-10 17:05:16 +00:00
|
|
|
import os
|
2016-12-15 12:44:17 +00:00
|
|
|
import os.path
|
2015-12-10 17:05:16 +00:00
|
|
|
import json
|
|
|
|
import subprocess
|
|
|
|
import time
|
2016-12-15 12:44:17 +00:00
|
|
|
import lxml.etree as et
|
2015-12-10 17:05:16 +00:00
|
|
|
from itertools import chain
|
|
|
|
from os import system
|
2016-12-15 12:44:17 +00:00
|
|
|
from argparse import ArgumentParser
|
|
|
|
from termcolor import colored
|
|
|
|
from subprocess import check_call
|
|
|
|
from subprocess import Popen
|
|
|
|
from subprocess import PIPE
|
|
|
|
from subprocess import CalledProcessError
|
|
|
|
from datetime import datetime
|
|
|
|
from time import sleep
|
|
|
|
from errno import ESRCH
|
|
|
|
from pprint import pprint
|
|
|
|
|
|
|
|
|
|
|
|
OP_SQUARE_BRACKET = colored("[", attrs=['bold'])
|
|
|
|
CL_SQUARE_BRACKET = colored("]", attrs=['bold'])
|
|
|
|
|
|
|
|
MSG_FAIL = OP_SQUARE_BRACKET + colored(" FAIL ", "red", attrs=['bold']) + CL_SQUARE_BRACKET
|
|
|
|
MSG_UNKNOWN = OP_SQUARE_BRACKET + colored(" UNKNOWN ", "yellow", attrs=['bold']) + CL_SQUARE_BRACKET
|
|
|
|
MSG_OK = OP_SQUARE_BRACKET + colored(" OK ", "green", attrs=['bold']) + CL_SQUARE_BRACKET
|
|
|
|
MSG_SKIPPED = OP_SQUARE_BRACKET + colored(" SKIPPED ", "cyan", attrs=['bold']) + CL_SQUARE_BRACKET
|
|
|
|
|
2015-12-10 17:05:16 +00:00
|
|
|
|
|
|
|
wait_for_loading_sleep_time_sec = 3
|
|
|
|
continue_on_error = False
|
|
|
|
|
2016-12-15 12:44:17 +00:00
|
|
|
failures = 0
|
|
|
|
SERVER_DIED = False
|
|
|
|
|
2015-12-10 17:05:16 +00:00
|
|
|
prefix = base_dir = os.path.dirname(os.path.realpath(__file__))
|
|
|
|
generated_prefix = prefix + '/generated/'
|
|
|
|
|
2016-12-15 12:44:17 +00:00
|
|
|
|
2015-12-10 17:05:16 +00:00
|
|
|
# [ name, key_type, has_parent ]
|
|
|
|
dictionaries = [
|
|
|
|
# Simple key dictionaries
|
2016-12-18 18:43:08 +00:00
|
|
|
# [ 'file_flat', 0, True ],
|
|
|
|
# [ 'clickhouse_flat', 0, True ],
|
|
|
|
# [ 'mysql_flat', 0, True ],
|
2015-12-10 17:05:16 +00:00
|
|
|
[ 'mongodb_flat', 0, True ],
|
|
|
|
|
2016-12-18 18:43:08 +00:00
|
|
|
# [ 'file_hashed', 0, True ],
|
|
|
|
# [ 'clickhouse_hashed', 0, True ],
|
|
|
|
# [ 'mysql_hashed', 0, True ],
|
2015-12-10 17:05:16 +00:00
|
|
|
[ 'mongodb_hashed', 0, True ],
|
|
|
|
|
2016-12-18 18:43:08 +00:00
|
|
|
# [ 'clickhouse_cache', 0, True ],
|
|
|
|
# [ 'mysql_cache', 0, True ],
|
2015-12-10 17:05:16 +00:00
|
|
|
[ 'mongodb_cache', 0, True ],
|
|
|
|
|
|
|
|
# Complex key dictionaries with (UInt8, UInt8) key
|
2016-12-18 18:43:08 +00:00
|
|
|
# [ 'file_complex_integers_key_hashed', 1, False ],
|
|
|
|
# [ 'clickhouse_complex_integers_key_hashed', 1, False ],
|
|
|
|
# [ 'mysql_complex_integers_key_hashed', 1, False ],
|
2015-12-10 17:05:16 +00:00
|
|
|
[ 'mongodb_complex_integers_key_hashed', 1, False ],
|
|
|
|
|
2016-12-18 18:43:08 +00:00
|
|
|
# [ 'clickhouse_complex_integers_key_cache', 1, False ],
|
|
|
|
# [ 'mysql_complex_integers_key_cache', 1, False ],
|
2015-12-10 17:05:16 +00:00
|
|
|
[ 'mongodb_complex_integers_key_cache', 1, False ],
|
|
|
|
|
|
|
|
# Complex key dictionaries with (String, UInt8) key
|
2016-12-18 18:43:08 +00:00
|
|
|
# [ 'file_complex_mixed_key_hashed', 2, False ],
|
|
|
|
# [ 'clickhouse_complex_mixed_key_hashed', 2, False ],
|
|
|
|
# [ 'mysql_complex_mixed_key_hashed', 2, False ],
|
2015-12-10 17:05:16 +00:00
|
|
|
[ 'mongodb_complex_mixed_key_hashed', 2, False ],
|
|
|
|
|
2016-12-18 18:43:08 +00:00
|
|
|
# [ 'clickhouse_complex_mixed_key_cache', 2, False ],
|
|
|
|
# [ 'mysql_complex_mixed_key_cache', 2, False ],
|
2015-12-10 17:05:16 +00:00
|
|
|
[ 'mongodb_complex_mixed_key_cache', 2, False ],
|
|
|
|
]
|
|
|
|
|
2016-12-15 12:44:17 +00:00
|
|
|
|
2015-12-10 17:05:16 +00:00
|
|
|
files = [ 'key_simple.tsv', 'key_complex_integers.tsv', 'key_complex_mixed.tsv' ]
|
|
|
|
|
2016-12-15 12:44:17 +00:00
|
|
|
|
2015-12-10 17:05:16 +00:00
|
|
|
types = [
|
|
|
|
'UInt8', 'UInt16', 'UInt32', 'UInt64',
|
|
|
|
'Int8', 'Int16', 'Int32', 'Int64',
|
|
|
|
'Float32', 'Float64',
|
|
|
|
'String',
|
|
|
|
'Date', 'DateTime'
|
|
|
|
]
|
|
|
|
|
2016-12-15 12:44:17 +00:00
|
|
|
|
2015-12-10 17:05:16 +00:00
|
|
|
explicit_defaults = [
|
|
|
|
'42', '42', '42', '42',
|
|
|
|
'-42', '-42', '-42', '-42',
|
|
|
|
'1.5', '1.6',
|
|
|
|
"'explicit-default'",
|
|
|
|
"'2015-01-01'", "'2015-01-01 00:00:00'"
|
|
|
|
]
|
|
|
|
|
2016-12-15 12:44:17 +00:00
|
|
|
|
2015-12-10 17:05:16 +00:00
|
|
|
implicit_defaults = [
|
|
|
|
'1', '1', '1', '1',
|
|
|
|
'-1', '-1', '-1', '-1',
|
|
|
|
'2.71828', '2.71828',
|
|
|
|
'implicit-default',
|
|
|
|
'2015-11-25', '2015-11-25 00:00:00'
|
|
|
|
]
|
|
|
|
|
2016-12-15 12:44:17 +00:00
|
|
|
|
|
|
|
def dump_report(destination, suite, test_case, report):
|
|
|
|
if destination is not None:
|
|
|
|
destination_file = os.path.join(destination, suite, test_case + ".xml")
|
|
|
|
destination_dir = os.path.dirname(destination_file)
|
|
|
|
if not os.path.exists(destination_dir):
|
|
|
|
os.makedirs(destination_dir)
|
|
|
|
with open(destination_file, 'w') as report_file:
|
|
|
|
report_root = et.Element("testsuites", attrib = {'name': 'ClickHouse External Dictionaries Tests'})
|
|
|
|
report_suite = et.Element("testsuite", attrib = {"name": suite})
|
|
|
|
report_suite.append(report)
|
|
|
|
report_root.append(report_suite)
|
|
|
|
report_file.write(et.tostring(report_root, encoding = "UTF-8", xml_declaration=True, pretty_print=True))
|
|
|
|
|
|
|
|
|
2015-12-10 17:05:16 +00:00
|
|
|
def call(args, out_filename):
|
|
|
|
with open(out_filename, 'w') as file:
|
|
|
|
subprocess.check_call(args, stdout=file)
|
|
|
|
|
2016-12-15 12:44:17 +00:00
|
|
|
|
|
|
|
def generate_data(args):
|
2015-12-10 17:05:16 +00:00
|
|
|
def comma_separated(iterable):
|
|
|
|
return ', '.join(iterable)
|
|
|
|
|
|
|
|
def columns():
|
|
|
|
return map(lambda t: t + '_', types)
|
|
|
|
|
|
|
|
key_columns = [
|
|
|
|
[ 'id' ],
|
|
|
|
[ 'key0', 'key1' ],
|
|
|
|
[ 'key0_str', 'key1' ]
|
|
|
|
]
|
|
|
|
|
|
|
|
print 'Creating ClickHouse table'
|
|
|
|
# create ClickHouse table via insert select
|
2016-12-16 00:10:37 +00:00
|
|
|
system('cat {source} | {ch} --port={port} -m -n --query "'
|
2015-12-10 17:05:16 +00:00
|
|
|
'create database if not exists test;'
|
|
|
|
'drop table if exists test.dictionary_source;'
|
|
|
|
'create table test.dictionary_source ('
|
|
|
|
'id UInt64, key0 UInt8, key0_str String, key1 UInt8,'
|
|
|
|
'UInt8_ UInt8, UInt16_ UInt16, UInt32_ UInt32, UInt64_ UInt64,'
|
|
|
|
'Int8_ Int8, Int16_ Int16, Int32_ Int32, Int64_ Int64,'
|
|
|
|
'Float32_ Float32, Float64_ Float64,'
|
|
|
|
'String_ String,'
|
|
|
|
'Date_ Date, DateTime_ DateTime, Parent UInt64'
|
|
|
|
') engine=Log; insert into test.dictionary_source format TabSeparated'
|
2016-12-16 14:26:24 +00:00
|
|
|
'"'.format(source = args.source, ch = args.client, port = args.port))
|
2015-12-10 17:05:16 +00:00
|
|
|
|
|
|
|
# generate 3 files with different key types
|
|
|
|
print 'Creating .tsv files'
|
|
|
|
file_source_query = 'select %s from test.dictionary_source format TabSeparated;'
|
|
|
|
for file, keys in zip(files, key_columns):
|
|
|
|
query = file_source_query % comma_separated(chain(keys, columns(), [ 'Parent' ] if 1 == len(keys) else []))
|
2016-12-16 14:26:24 +00:00
|
|
|
call([ args.client, '--port', args.port, '--query', query ], 'generated/' + file)
|
2015-12-10 17:05:16 +00:00
|
|
|
|
|
|
|
# create MySQL table from complete_query
|
|
|
|
print 'Creating MySQL table'
|
|
|
|
subprocess.check_call('echo "'
|
|
|
|
'create database if not exists test;'
|
|
|
|
'drop table if exists test.dictionary_source;'
|
|
|
|
'create table test.dictionary_source ('
|
|
|
|
'id tinyint unsigned, key0 tinyint unsigned, key0_str text, key1 tinyint unsigned, '
|
|
|
|
'UInt8_ tinyint unsigned, UInt16_ smallint unsigned, UInt32_ int unsigned, UInt64_ bigint unsigned, '
|
|
|
|
'Int8_ tinyint, Int16_ smallint, Int32_ int, Int64_ bigint, '
|
|
|
|
'Float32_ float, Float64_ double, '
|
|
|
|
'String_ text, Date_ date, DateTime_ datetime, Parent bigint unsigned'
|
|
|
|
');'
|
2016-12-08 05:12:49 +00:00
|
|
|
'load data local infile \'{0}/source.tsv\' into table test.dictionary_source;" | mysql $MYSQL_OPTIONS --local-infile=1'
|
2015-12-10 17:05:16 +00:00
|
|
|
.format(prefix), shell=True)
|
|
|
|
|
|
|
|
# create MongoDB collection from complete_query via JSON file
|
|
|
|
print 'Creating MongoDB collection'
|
|
|
|
table_rows = json.loads(subprocess.check_output([
|
2016-12-15 12:44:17 +00:00
|
|
|
args.client,
|
2016-12-16 00:10:37 +00:00
|
|
|
'--port',
|
2016-12-16 14:26:24 +00:00
|
|
|
args.port,
|
2016-12-18 18:43:08 +00:00
|
|
|
'--output_format_json_quote_64bit_integers',
|
|
|
|
'0',
|
2015-12-10 17:05:16 +00:00
|
|
|
'--query',
|
|
|
|
"select * from test.dictionary_source where not ignore(" \
|
|
|
|
"concat('new Date(\\'', toString(Date_), '\\')') as Date_, " \
|
|
|
|
"concat('new Date(\\'', toString(DateTime_), '\\')') as DateTime_" \
|
|
|
|
") format JSON"
|
|
|
|
]))['data']
|
|
|
|
|
|
|
|
source_for_mongo = json.dumps(table_rows).replace(')"', ')').replace('"new', 'new')
|
|
|
|
open('generated/full.json', 'w').write('db.dictionary_source.drop(); db.dictionary_source.insert(%s);' % source_for_mongo)
|
2016-12-15 12:44:17 +00:00
|
|
|
result = system('cat {0}/full.json | mongo --quiet > /dev/null'.format(args.generated))
|
2015-12-10 17:05:16 +00:00
|
|
|
if result != 0:
|
|
|
|
print 'Could not create MongoDB collection'
|
|
|
|
exit(-1)
|
|
|
|
|
2016-12-15 12:44:17 +00:00
|
|
|
|
|
|
|
def generate_dictionaries(args):
|
2015-12-10 17:05:16 +00:00
|
|
|
dictionary_skeleton = '''
|
|
|
|
<dictionaries>
|
|
|
|
<dictionary>
|
|
|
|
<name>{name}</name>
|
|
|
|
|
|
|
|
<source>
|
|
|
|
{source}
|
|
|
|
</source>
|
|
|
|
|
|
|
|
<lifetime>
|
|
|
|
<min>0</min>
|
|
|
|
<max>0</max>
|
|
|
|
</lifetime>
|
|
|
|
|
|
|
|
<layout>
|
|
|
|
{layout}
|
|
|
|
</layout>
|
|
|
|
|
|
|
|
<structure>
|
|
|
|
{key}
|
|
|
|
|
|
|
|
%s
|
|
|
|
|
|
|
|
{parent}
|
|
|
|
</structure>
|
|
|
|
</dictionary>
|
|
|
|
</dictionaries>'''
|
|
|
|
attribute_skeleton = '''
|
|
|
|
<attribute>
|
|
|
|
<name>%s_</name>
|
|
|
|
<type>%s</type>
|
|
|
|
<null_value>%s</null_value>
|
|
|
|
</attribute>
|
|
|
|
'''
|
|
|
|
|
|
|
|
dictionary_skeleton =\
|
|
|
|
dictionary_skeleton % reduce(lambda xml, (type, default): xml + attribute_skeleton % (type, type, default),
|
|
|
|
zip(types, implicit_defaults), '')
|
|
|
|
|
|
|
|
source_file = '''
|
|
|
|
<file>
|
|
|
|
<path>%s</path>
|
|
|
|
<format>TabSeparated</format>
|
|
|
|
</file>
|
|
|
|
'''
|
2016-12-16 00:10:37 +00:00
|
|
|
|
2015-12-10 17:05:16 +00:00
|
|
|
source_clickhouse = '''
|
|
|
|
<clickhouse>
|
|
|
|
<host>127.0.0.1</host>
|
2016-12-16 00:10:37 +00:00
|
|
|
<port>%s</port>
|
2015-12-10 17:05:16 +00:00
|
|
|
<user>default</user>
|
|
|
|
<password></password>
|
|
|
|
<db>test</db>
|
|
|
|
<table>dictionary_source</table>
|
|
|
|
</clickhouse>
|
2016-12-16 14:26:24 +00:00
|
|
|
''' % args.port
|
2016-12-16 00:10:37 +00:00
|
|
|
|
2015-12-10 17:05:16 +00:00
|
|
|
source_mysql = '''
|
|
|
|
<mysql>
|
|
|
|
<host>127.0.0.1</host>
|
|
|
|
<port>3306</port>
|
|
|
|
<user>root</user>
|
|
|
|
<password></password>
|
|
|
|
<db>test</db>
|
|
|
|
<table>dictionary_source</table>
|
|
|
|
</mysql>
|
|
|
|
'''
|
2016-12-16 00:10:37 +00:00
|
|
|
|
2015-12-10 17:05:16 +00:00
|
|
|
source_mongodb = '''
|
|
|
|
<mongodb>
|
2016-12-15 12:44:17 +00:00
|
|
|
<host>127.0.0.1</host>
|
2015-12-10 17:05:16 +00:00
|
|
|
<port>27017</port>
|
|
|
|
<user></user>
|
|
|
|
<password></password>
|
|
|
|
<db>test</db>
|
|
|
|
<collection>dictionary_source</collection>
|
|
|
|
</mongodb>
|
|
|
|
'''
|
|
|
|
|
|
|
|
layout_flat = '<flat />'
|
|
|
|
layout_hashed = '<hashed />'
|
|
|
|
layout_cache = '<cache><size_in_cells>128</size_in_cells></cache>'
|
|
|
|
layout_complex_key_hashed = '<complex_key_hashed />'
|
|
|
|
layout_complex_key_cache = '<complex_key_cache><size_in_cells>128</size_in_cells></complex_key_cache>'
|
|
|
|
|
|
|
|
key_simple = '''
|
|
|
|
<id>
|
|
|
|
<name>id</name>
|
|
|
|
</id>
|
|
|
|
'''
|
|
|
|
key_complex_integers = '''
|
|
|
|
<key>
|
|
|
|
<attribute>
|
|
|
|
<name>key0</name>
|
|
|
|
<type>UInt8</type>
|
|
|
|
</attribute>
|
|
|
|
|
|
|
|
<attribute>
|
|
|
|
<name>key1</name>
|
|
|
|
<type>UInt8</type>
|
|
|
|
</attribute>
|
|
|
|
</key>
|
|
|
|
'''
|
|
|
|
key_complex_mixed = '''
|
|
|
|
<key>
|
|
|
|
<attribute>
|
|
|
|
<name>key0_str</name>
|
|
|
|
<type>String</type>
|
|
|
|
</attribute>
|
|
|
|
|
|
|
|
<attribute>
|
|
|
|
<name>key1</name>
|
|
|
|
<type>UInt8</type>
|
|
|
|
</attribute>
|
|
|
|
</key>
|
|
|
|
'''
|
|
|
|
|
|
|
|
keys = [ key_simple, key_complex_integers, key_complex_mixed ]
|
|
|
|
|
|
|
|
parent_attribute = '''
|
|
|
|
<attribute>
|
|
|
|
<name>Parent</name>
|
|
|
|
<type>UInt64</type>
|
|
|
|
<hierarchical>true</hierarchical>
|
|
|
|
<null_value>0</null_value>
|
|
|
|
</attribute>
|
|
|
|
'''
|
|
|
|
|
|
|
|
sources_and_layouts = [
|
|
|
|
# Simple key dictionaries
|
|
|
|
[ source_file % (generated_prefix + files[0]), layout_flat],
|
|
|
|
[ source_clickhouse, layout_flat ],
|
|
|
|
[ source_mysql, layout_flat ],
|
|
|
|
[ source_mongodb, layout_flat ],
|
|
|
|
|
|
|
|
[ source_file % (generated_prefix + files[0]), layout_hashed],
|
|
|
|
[ source_clickhouse, layout_hashed ],
|
|
|
|
[ source_mysql, layout_hashed ],
|
|
|
|
[ source_mongodb, layout_hashed ],
|
|
|
|
|
|
|
|
[ source_clickhouse, layout_cache ],
|
|
|
|
[ source_mysql, layout_cache ],
|
|
|
|
[ source_mongodb, layout_cache ],
|
|
|
|
|
|
|
|
# Complex key dictionaries with (UInt8, UInt8) key
|
|
|
|
[ source_file % (generated_prefix + files[1]), layout_complex_key_hashed],
|
|
|
|
[ source_clickhouse, layout_complex_key_hashed ],
|
|
|
|
[ source_mysql, layout_complex_key_hashed ],
|
|
|
|
[ source_mongodb, layout_complex_key_hashed ],
|
|
|
|
|
|
|
|
[ source_clickhouse, layout_complex_key_cache ],
|
|
|
|
[ source_mysql, layout_complex_key_cache ],
|
|
|
|
[ source_mongodb, layout_complex_key_cache ],
|
|
|
|
|
|
|
|
# Complex key dictionaries with (String, UInt8) key
|
|
|
|
[ source_file % (generated_prefix + files[2]), layout_complex_key_hashed],
|
|
|
|
[ source_clickhouse, layout_complex_key_hashed ],
|
|
|
|
[ source_mysql, layout_complex_key_hashed ],
|
|
|
|
[ source_mongodb, layout_complex_key_hashed ],
|
|
|
|
|
|
|
|
[ source_clickhouse, layout_complex_key_cache ],
|
|
|
|
[ source_mysql, layout_complex_key_cache ],
|
|
|
|
[ source_mongodb, layout_complex_key_cache ],
|
|
|
|
]
|
|
|
|
|
|
|
|
for (name, key_idx, has_parent), (source, layout) in zip(dictionaries, sources_and_layouts):
|
2016-12-15 12:44:17 +00:00
|
|
|
filename = os.path.join(args.generated, 'dictionary_%s.xml' % name)
|
2015-12-10 17:05:16 +00:00
|
|
|
with open(filename, 'w') as file:
|
|
|
|
dictionary_xml = dictionary_skeleton.format(
|
|
|
|
key = keys[key_idx], parent = parent_attribute if has_parent else '', **locals())
|
|
|
|
file.write(dictionary_xml)
|
|
|
|
|
2016-12-15 12:44:17 +00:00
|
|
|
|
|
|
|
def run_tests(args):
|
2015-12-10 17:05:16 +00:00
|
|
|
keys = [ 'toUInt64(n)', '(n, n)', '(toString(n), n)' ]
|
2016-12-08 05:12:49 +00:00
|
|
|
dict_get_query_skeleton = "select dictGet{type}('{name}', '{type}_', {key}) from system.one array join range(8) as n;"
|
|
|
|
dict_has_query_skeleton = "select dictHas('{name}', {key}) from system.one array join range(8) as n;"
|
|
|
|
dict_get_or_default_query_skeleton = "select dictGet{type}OrDefault('{name}', '{type}_', {key}, to{type}({default})) from system.one array join range(8) as n;"
|
|
|
|
dict_hierarchy_query_skeleton = "select dictGetHierarchy('{name}' as d, key), dictIsIn(d, key, toUInt64(1)), dictIsIn(d, key, key) from system.one array join range(toUInt64(8)) as key;"
|
2015-12-10 17:05:16 +00:00
|
|
|
|
|
|
|
def test_query(dict, query, reference, name):
|
2016-12-15 12:44:17 +00:00
|
|
|
global failures
|
|
|
|
global SERVER_DIED
|
|
|
|
|
|
|
|
print "{0:100}".format('Dictionary: ' + dict + ' Name: ' + name + ": "),
|
|
|
|
sys.stdout.flush()
|
|
|
|
report_testcase = et.Element("testcase", attrib = {"name": name})
|
|
|
|
|
|
|
|
reference_file = os.path.join(args.reference, reference) + '.reference'
|
|
|
|
stdout_file = os.path.join(args.reference, reference) + '.stdout'
|
|
|
|
stderr_file = os.path.join(args.reference, reference) + '.stderr'
|
|
|
|
|
2016-12-16 14:26:24 +00:00
|
|
|
command = '{ch} --port {port} --query "{query}" > {stdout_file} 2> {stderr_file}'.format(ch = args.client, port = args.port, query = query, stdout_file = stdout_file, stderr_file = stderr_file)
|
2016-12-15 12:44:17 +00:00
|
|
|
proc = Popen(command, shell = True)
|
|
|
|
start_time = datetime.now()
|
|
|
|
while (datetime.now() - start_time).total_seconds() < args.timeout and proc.poll() is None:
|
|
|
|
sleep(0)
|
|
|
|
|
|
|
|
if proc.returncode is None:
|
|
|
|
try:
|
|
|
|
proc.kill()
|
|
|
|
except OSError as e:
|
|
|
|
if e.errno != ESRCH:
|
|
|
|
raise
|
|
|
|
|
|
|
|
failure = et.Element("failure", attrib = {"message": "Timeout"})
|
|
|
|
report_testcase.append(failure)
|
|
|
|
failures = failures + 1
|
|
|
|
print("{0} - Timeout!".format(MSG_FAIL))
|
|
|
|
else:
|
|
|
|
stdout = open(stdout_file, 'r').read() if os.path.exists(stdout_file) else ''
|
|
|
|
stdout = unicode(stdout, errors='replace', encoding='utf-8')
|
|
|
|
stderr = open(stderr_file, 'r').read() if os.path.exists(stderr_file) else ''
|
|
|
|
stderr = unicode(stderr, errors='replace', encoding='utf-8')
|
|
|
|
|
|
|
|
if proc.returncode != 0:
|
|
|
|
failure = et.Element("failure", attrib = {"message": "return code {}".format(proc.returncode)})
|
|
|
|
report_testcase.append(failure)
|
|
|
|
|
|
|
|
stdout_element = et.Element("system-out")
|
|
|
|
stdout_element.text = et.CDATA(stdout)
|
|
|
|
report_testcase.append(stdout_element)
|
|
|
|
|
|
|
|
failures = failures + 1
|
|
|
|
print("{0} - return code {1}".format(MSG_FAIL, proc.returncode))
|
|
|
|
|
|
|
|
if stderr:
|
|
|
|
stderr_element = et.Element("system-err")
|
|
|
|
stderr_element.text = et.CDATA(stderr)
|
|
|
|
report_testcase.append(stderr_element)
|
|
|
|
print(stderr)
|
|
|
|
|
|
|
|
if 'Connection refused' in stderr or 'Attempt to read after eof' in stderr:
|
|
|
|
SERVER_DIED = True
|
|
|
|
|
|
|
|
elif stderr:
|
|
|
|
failure = et.Element("failure", attrib = {"message": "having stderror"})
|
|
|
|
report_testcase.append(failure)
|
|
|
|
|
|
|
|
stderr_element = et.Element("system-err")
|
|
|
|
stderr_element.text = et.CDATA(stderr)
|
|
|
|
report_testcase.append(stderr_element)
|
|
|
|
|
|
|
|
failures = failures + 1
|
|
|
|
print("{0} - having stderror:\n{1}".format(MSG_FAIL, stderr.encode('utf-8')))
|
|
|
|
elif 'Exception' in stdout:
|
|
|
|
failure = et.Element("error", attrib = {"message": "having exception"})
|
|
|
|
report_testcase.append(failure)
|
|
|
|
|
|
|
|
stdout_element = et.Element("system-out")
|
|
|
|
stdout_element.text = et.CDATA(stdout)
|
|
|
|
report_testcase.append(stdout_element)
|
|
|
|
|
|
|
|
failures = failures + 1
|
|
|
|
print("{0} - having exception:\n{1}".format(MSG_FAIL, stdout.encode('utf-8')))
|
|
|
|
elif not os.path.isfile(reference_file):
|
|
|
|
skipped = et.Element("skipped", attrib = {"message": "no reference file"})
|
|
|
|
report_testcase.append(skipped)
|
|
|
|
print("{0} - no reference file".format(MSG_UNKNOWN))
|
|
|
|
else:
|
|
|
|
(diff, _) = Popen(['diff', reference_file, stdout_file], stdout = PIPE).communicate()
|
|
|
|
|
|
|
|
if diff:
|
|
|
|
failure = et.Element("failure", attrib = {"message": "result differs with reference"})
|
|
|
|
report_testcase.append(failure)
|
|
|
|
|
|
|
|
stdout_element = et.Element("system-out")
|
|
|
|
stdout_element.text = et.CDATA(diff)
|
|
|
|
report_testcase.append(stdout_element)
|
|
|
|
|
|
|
|
failures = failures + 1
|
|
|
|
print("{0} - result differs with reference:\n{1}".format(MSG_FAIL, diff))
|
|
|
|
else:
|
|
|
|
print(MSG_OK)
|
|
|
|
if os.path.exists(stdout_file):
|
|
|
|
os.remove(stdout_file)
|
|
|
|
if os.path.exists(stderr_file):
|
|
|
|
os.remove(stderr_file)
|
|
|
|
|
|
|
|
dump_report(args.output, dict, name, report_testcase)
|
|
|
|
|
|
|
|
|
2015-12-10 17:05:16 +00:00
|
|
|
print 'Waiting for dictionaries to load...'
|
|
|
|
time.sleep(wait_for_loading_sleep_time_sec)
|
|
|
|
|
|
|
|
# the actual tests
|
|
|
|
for (name, key_idx, has_parent) in dictionaries:
|
2016-12-15 12:44:17 +00:00
|
|
|
if SERVER_DIED:
|
|
|
|
break
|
2015-12-10 17:05:16 +00:00
|
|
|
key = keys[key_idx]
|
|
|
|
print 'Testing dictionary', name
|
|
|
|
|
|
|
|
# query dictHas
|
|
|
|
test_query(name, dict_has_query_skeleton.format(**locals()), 'has', 'dictHas')
|
|
|
|
|
|
|
|
# query dictGet*
|
|
|
|
for type, default in zip(types, explicit_defaults):
|
2016-12-15 12:44:17 +00:00
|
|
|
if SERVER_DIED:
|
|
|
|
break
|
2015-12-10 17:05:16 +00:00
|
|
|
test_query(name,
|
|
|
|
dict_get_query_skeleton.format(**locals()),
|
|
|
|
type, 'dictGet' + type)
|
|
|
|
test_query(name,
|
|
|
|
dict_get_or_default_query_skeleton.format(**locals()),
|
|
|
|
type + 'OrDefault', 'dictGet' + type + 'OrDefault')
|
|
|
|
|
|
|
|
# query dictGetHierarchy, dictIsIn
|
|
|
|
if has_parent:
|
|
|
|
test_query(name,
|
|
|
|
dict_hierarchy_query_skeleton.format(**locals()),
|
|
|
|
'hierarchy', ' for dictGetHierarchy, dictIsIn')
|
|
|
|
|
2016-12-15 12:44:17 +00:00
|
|
|
if failures > 0:
|
|
|
|
print(colored("\nHaving {0} errors!".format(failures), "red", attrs=["bold"]))
|
|
|
|
sys.exit(1)
|
|
|
|
else:
|
|
|
|
print(colored("\nAll tests passed.", "green", attrs=["bold"]))
|
|
|
|
sys.exit(0)
|
|
|
|
|
|
|
|
|
|
|
|
def main(args):
|
|
|
|
generate_data(args)
|
|
|
|
generate_dictionaries(args)
|
|
|
|
run_tests(args)
|
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
parser = ArgumentParser(description = 'ClickHouse external dictionaries tests')
|
|
|
|
parser.add_argument('-s', '--source', default = 'source.tsv', help = 'Path to source data')
|
|
|
|
parser.add_argument('-g', '--generated', default = 'generated', help = 'Path to directory with generated data')
|
|
|
|
parser.add_argument('-r', '--reference', default = 'reference', help = 'Path to directory with reference data')
|
|
|
|
parser.add_argument('-c', '--client', default = 'clickhouse-client', help = 'Client program')
|
2016-12-17 00:25:10 +00:00
|
|
|
parser.add_argument('-p', '--port', default = '9001', help = 'ClickHouse port')
|
2016-12-15 12:44:17 +00:00
|
|
|
parser.add_argument('-o', '--output', default = 'output', help = 'Output xUnit compliant test report directory')
|
|
|
|
parser.add_argument('-t', '--timeout', type = int, default = 10, help = 'Timeout for each test case in seconds')
|
|
|
|
|
|
|
|
args = parser.parse_args()
|
|
|
|
|
|
|
|
main(args)
|
2015-12-10 17:05:16 +00:00
|
|
|
|