1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113
|
# Copyright DataStax, Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License
from cassandra.cluster import Cluster
import unittest
import os
import subprocess
from tests.integration import CLOUD_PROXY_PATH, USE_CASS_EXTERNAL
def setup_package():
if CLOUD_PROXY_PATH and not USE_CASS_EXTERNAL:
start_cloud_proxy()
def teardown_package():
if not USE_CASS_EXTERNAL:
stop_cloud_proxy()
class CloudProxyCluster(unittest.TestCase):
creds_dir = os.path.join(os.path.abspath(CLOUD_PROXY_PATH or ''), 'certs/bundles/')
creds = os.path.join(creds_dir, 'creds-v1.zip')
creds_no_auth = os.path.join(creds_dir, 'creds-v1-wo-creds.zip')
creds_unreachable = os.path.join(creds_dir, 'creds-v1-unreachable.zip')
creds_invalid_ca = os.path.join(creds_dir, 'creds-v1-invalid-ca.zip')
cluster, connect = None, False
session = None
@classmethod
def connect(cls, creds, **kwargs):
cloud_config = {
'secure_connect_bundle': creds,
}
cls.cluster = Cluster(cloud=cloud_config, protocol_version=4, **kwargs)
cls.session = cls.cluster.connect(wait_for_all_pools=True)
def tearDown(self):
if self.cluster:
self.cluster.shutdown()
class CloudProxyServer(object):
"""
Class for starting and stopping the proxy (sni_single_endpoint)
"""
ccm_command = 'docker exec $(docker ps -a -q --filter ancestor=single_endpoint) ccm {}'
def __init__(self, CLOUD_PROXY_PATH):
self.CLOUD_PROXY_PATH = CLOUD_PROXY_PATH
self.running = False
def start(self):
return_code = subprocess.call(
['REQUIRE_CLIENT_CERTIFICATE=true ./run.sh'],
cwd=self.CLOUD_PROXY_PATH,
shell=True)
if return_code != 0:
raise Exception("Error while starting proxy server")
self.running = True
def stop(self):
if self.is_running():
subprocess.call(
["docker kill $(docker ps -a -q --filter ancestor=single_endpoint)"],
shell=True)
self.running = False
def is_running(self):
return self.running
def start_node(self, id):
subcommand = 'node{} start --jvm_arg "-Ddse.product_type=DATASTAX_APOLLO" --root --wait-for-binary-proto'.format(id)
subprocess.call(
[self.ccm_command.format(subcommand)],
shell=True)
def stop_node(self, id):
subcommand = 'node{} stop'.format(id)
subprocess.call(
[self.ccm_command.format(subcommand)],
shell=True)
CLOUD_PROXY_SERVER = CloudProxyServer(CLOUD_PROXY_PATH)
def start_cloud_proxy():
"""
Starts and waits for the proxy to run
"""
CLOUD_PROXY_SERVER.stop()
CLOUD_PROXY_SERVER.start()
def stop_cloud_proxy():
CLOUD_PROXY_SERVER.stop()
|