2020-04-21 11:30:45 +00:00
import os
import urllib
import contextlib
from helpers . cluster import ClickHouseCluster
class SimpleCluster :
def close ( self ) :
self . cluster . shutdown ( )
def __init__ ( self , cluster , name , config_dir ) :
self . cluster = cluster
self . instance = self . add_instance ( name , config_dir )
cluster . start ( )
def add_instance ( self , name , config_dir ) :
script_path = os . path . dirname ( os . path . realpath ( __file__ ) )
2020-04-27 23:02:58 +00:00
return self . cluster . add_instance ( name , main_configs = [ os . path . join ( script_path , config_dir , ' config.xml ' ) ] )
2020-04-21 11:30:45 +00:00
def test_dynamic_query_handler ( ) :
with contextlib . closing ( SimpleCluster ( ClickHouseCluster ( __file__ ) , " dynamic_handler " , " test_dynamic_handler " ) ) as cluster :
test_query = urllib . quote_plus ( ' SELECT * FROM system.settings WHERE name = \' max_threads \' ' )
assert 404 == cluster . instance . http_request ( ' ?max_threads=1 ' , method = ' GET ' , headers = { ' XXX ' : ' xxx ' } ) . status_code
assert 404 == cluster . instance . http_request ( ' test_dynamic_handler_get?max_threads=1 ' , method = ' POST ' , headers = { ' XXX ' : ' xxx ' } ) . status_code
assert 404 == cluster . instance . http_request ( ' test_dynamic_handler_get?max_threads=1 ' , method = ' GET ' , headers = { ' XXX ' : ' bad ' } ) . status_code
assert 400 == cluster . instance . http_request ( ' test_dynamic_handler_get?max_threads=1 ' , method = ' GET ' , headers = { ' XXX ' : ' xxx ' } ) . status_code
assert 200 == cluster . instance . http_request ( ' test_dynamic_handler_get?max_threads=1&get_dynamic_handler_query= ' + test_query ,
method = ' GET ' , headers = { ' XXX ' : ' xxx ' } ) . status_code
2020-04-27 20:51:39 +00:00
def test_predefined_query_handler ( ) :
2020-04-21 11:30:45 +00:00
with contextlib . closing ( SimpleCluster ( ClickHouseCluster ( __file__ ) , " predefined_handler " , " test_predefined_handler " ) ) as cluster :
assert 404 == cluster . instance . http_request ( ' ?max_threads=1 ' , method = ' GET ' , headers = { ' XXX ' : ' xxx ' } ) . status_code
2020-04-27 20:51:39 +00:00
assert 404 == cluster . instance . http_request ( ' test_predefined_handler_get?max_threads=1 ' , method = ' GET ' , headers = { ' XXX ' : ' bad ' } ) . status_code
2020-04-21 11:30:45 +00:00
2020-04-27 20:51:39 +00:00
assert 404 == cluster . instance . http_request ( ' test_predefined_handler_get?max_threads=1 ' , method = ' POST ' , headers = { ' XXX ' : ' xxx ' } ) . status_code
2020-04-21 11:30:45 +00:00
2020-04-27 20:51:39 +00:00
assert 500 == cluster . instance . http_request ( ' test_predefined_handler_get?max_threads=1 ' , method = ' GET ' , headers = { ' XXX ' : ' xxx ' } ) . status_code
2020-04-26 11:06:14 +00:00
2020-04-27 20:51:39 +00:00
assert ' max_threads \t 1 \n ' == cluster . instance . http_request ( ' test_predefined_handler_get?max_threads=1&setting_name=max_threads ' , method = ' GET ' , headers = { ' XXX ' : ' xxx ' } ) . content
2020-04-26 11:06:14 +00:00
assert ' max_threads \t 1 \n max_alter_threads \t 1 \n ' == cluster . instance . http_request (
' query_param_with_url/max_threads?max_threads=1&max_alter_threads=1 ' , headers = { ' XXX ' : ' max_alter_threads ' } ) . content
def test_fixed_static_handler ( ) :
with contextlib . closing ( SimpleCluster ( ClickHouseCluster ( __file__ ) , " static_handler " , " test_static_handler " ) ) as cluster :
assert 404 == cluster . instance . http_request ( ' ' , method = ' GET ' , headers = { ' XXX ' : ' xxx ' } ) . status_code
assert 404 == cluster . instance . http_request ( ' test_get_fixed_static_handler ' , method = ' GET ' , headers = { ' XXX ' : ' bad ' } ) . status_code
assert 404 == cluster . instance . http_request ( ' test_get_fixed_static_handler ' , method = ' POST ' , headers = { ' XXX ' : ' xxx ' } ) . status_code
assert 402 == cluster . instance . http_request ( ' test_get_fixed_static_handler ' , method = ' GET ' , headers = { ' XXX ' : ' xxx ' } ) . status_code
assert ' text/html; charset=UTF-8 ' == cluster . instance . http_request ( ' test_get_fixed_static_handler ' , method = ' GET ' , headers = { ' XXX ' : ' xxx ' } ) . headers [ ' Content-Type ' ]
assert ' Test get static handler and fix content ' == cluster . instance . http_request ( ' test_get_fixed_static_handler ' , method = ' GET ' , headers = { ' XXX ' : ' xxx ' } ) . content
def test_config_static_handler ( ) :
with contextlib . closing ( SimpleCluster ( ClickHouseCluster ( __file__ ) , " static_handler " , " test_static_handler " ) ) as cluster :
assert 404 == cluster . instance . http_request ( ' ' , method = ' GET ' , headers = { ' XXX ' : ' xxx ' } ) . status_code
assert 404 == cluster . instance . http_request ( ' test_get_config_static_handler ' , method = ' GET ' , headers = { ' XXX ' : ' bad ' } ) . status_code
assert 404 == cluster . instance . http_request ( ' test_get_config_static_handler ' , method = ' POST ' , headers = { ' XXX ' : ' xxx ' } ) . status_code
# check default status code
assert 200 == cluster . instance . http_request ( ' test_get_config_static_handler ' , method = ' GET ' , headers = { ' XXX ' : ' xxx ' } ) . status_code
assert ' text/plain; charset=UTF-8 ' == cluster . instance . http_request ( ' test_get_config_static_handler ' , method = ' GET ' , headers = { ' XXX ' : ' xxx ' } ) . headers [ ' Content-Type ' ]
assert ' Test get static handler and config content ' == cluster . instance . http_request ( ' test_get_config_static_handler ' , method = ' GET ' , headers = { ' XXX ' : ' xxx ' } ) . content
def test_absolute_path_static_handler ( ) :
with contextlib . closing ( SimpleCluster ( ClickHouseCluster ( __file__ ) , " static_handler " , " test_static_handler " ) ) as cluster :
cluster . instance . exec_in_container (
[ ' bash ' , ' -c ' , ' echo " <html><body>Absolute Path File</body></html> " > /var/lib/clickhouse/user_files/absolute_path_file.html ' ] ,
privileged = True , user = ' root ' )
assert 404 == cluster . instance . http_request ( ' ' , method = ' GET ' , headers = { ' XXX ' : ' xxx ' } ) . status_code
assert 404 == cluster . instance . http_request ( ' test_get_absolute_path_static_handler ' , method = ' GET ' , headers = { ' XXX ' : ' bad ' } ) . status_code
assert 404 == cluster . instance . http_request ( ' test_get_absolute_path_static_handler ' , method = ' POST ' , headers = { ' XXX ' : ' xxx ' } ) . status_code
# check default status code
assert 200 == cluster . instance . http_request ( ' test_get_absolute_path_static_handler ' , method = ' GET ' , headers = { ' XXX ' : ' xxx ' } ) . status_code
assert ' text/html; charset=UTF-8 ' == cluster . instance . http_request ( ' test_get_absolute_path_static_handler ' , method = ' GET ' , headers = { ' XXX ' : ' xxx ' } ) . headers [ ' Content-Type ' ]
assert ' <html><body>Absolute Path File</body></html> \n ' == cluster . instance . http_request ( ' test_get_absolute_path_static_handler ' , method = ' GET ' , headers = { ' XXX ' : ' xxx ' } ) . content
def test_relative_path_static_handler ( ) :
with contextlib . closing ( SimpleCluster ( ClickHouseCluster ( __file__ ) , " static_handler " , " test_static_handler " ) ) as cluster :
cluster . instance . exec_in_container (
[ ' bash ' , ' -c ' , ' echo " <html><body>Relative Path File</body></html> " > /var/lib/clickhouse/user_files/relative_path_file.html ' ] ,
privileged = True , user = ' root ' )
assert 404 == cluster . instance . http_request ( ' ' , method = ' GET ' , headers = { ' XXX ' : ' xxx ' } ) . status_code
assert 404 == cluster . instance . http_request ( ' test_get_relative_path_static_handler ' , method = ' GET ' , headers = { ' XXX ' : ' bad ' } ) . status_code
assert 404 == cluster . instance . http_request ( ' test_get_relative_path_static_handler ' , method = ' POST ' , headers = { ' XXX ' : ' xxx ' } ) . status_code
# check default status code
assert 200 == cluster . instance . http_request ( ' test_get_relative_path_static_handler ' , method = ' GET ' , headers = { ' XXX ' : ' xxx ' } ) . status_code
assert ' text/html; charset=UTF-8 ' == cluster . instance . http_request ( ' test_get_relative_path_static_handler ' , method = ' GET ' , headers = { ' XXX ' : ' xxx ' } ) . headers [ ' Content-Type ' ]
assert ' <html><body>Relative Path File</body></html> \n ' == cluster . instance . http_request ( ' test_get_relative_path_static_handler ' , method = ' GET ' , headers = { ' XXX ' : ' xxx ' } ) . content
2020-04-21 11:30:45 +00:00