Esempio n. 1
0
    def test_mysql_instance_provision(self):
        cwd = os.getcwd()
        os.chdir("/tmp/lme-examples/greetings-python")
        deploy_cmd = "cld service provision --cloud aws"
        dep_id = ''
        try:
            output = subprocess.Popen(deploy_cmd,
                                      stdout=subprocess.PIPE,
                                      stderr=subprocess.PIPE,
                                      shell=True).communicate()[0]

            dep_id, name = utils.parse_dep_id("aws", output)
        except Exception as e:
            print(e)

        show_cmd = ("cld service show --deploy-id {dep_id}").format(
            dep_id=dep_id)
        self.assertTrue(
            utils.assert_deploy_complete(show_cmd,
                                         "SERVICE_DEPLOYMENT_COMPLETE",
                                         wait_count=MAX_WAIT_COUNT),
            "Service deployment completed")
        utils.cleanup(name)

        os.chdir(cwd)
Esempio n. 2
0
    def test_app_deploy_with_mysql_service(self):
        cwd = os.getcwd()
        os.chdir("/tmp/lme-examples/greetings-python")
        deploy_cmd = "cld app deploy --cloud aws --service-name mysql"
        dep_id = ''
        try:
            child = pexpect.spawn(deploy_cmd)
            expected = ">"
            child.expect(expected)
            child.sendline("application.py")
            child.expect(expected)
            child.sendline("5000")
            child.expect(expected)
            child.sendline("DB")
            child.expect(expected)
            child.sendline("HOST")
            child.expect(expected)
            child.sendline("USER")
            child.expect(expected)
            child.sendline("PASSWORD")
            lines = child.read()
            dep_id, name = utils.parse_dep_id("aws", lines)
        except Exception as e:
            print(e)

        show_cmd = ("cld app show --deploy-id {dep_id}").format(dep_id=dep_id)
        self.assertTrue(
            utils.assert_deploy_complete(show_cmd,
                                         "APP_DEPLOYMENT_COMPLETE",
                                         wait_count=900),
            "App deployment completed")

        utils.cleanup(name)
        os.chdir(cwd)
Esempio n. 3
0
    def test_app_deploy_no_service(self):
        cwd = os.getcwd()
        os.chdir("/tmp/lme-examples/hello-world")
        deploy_cmd = "cld app deploy --cloud aws"
        dep_id = ''
        try:
            child = pexpect.spawn(deploy_cmd)
            expected = ">"
            child.expect(expected)
            child.sendline("application.py")
            child.expect(expected)
            child.sendline("5000")
            lines = child.read()
            dep_id, name = utils.parse_dep_id("aws", lines)
        except Exception as e:
            print(e)

        show_cmd = ("cld app show --deploy-id {dep_id}").format(dep_id=dep_id)
        self.assertTrue(
            utils.assert_deploy_complete(show_cmd,
                                         "APP_DEPLOYMENT_COMPLETE",
                                         wait_count=MAX_WAIT_COUNT),
            "App deployment completed")
        utils.cleanup(name)
        os.chdir(cwd)
Esempio n. 4
0
    def test_mysql_instance_provision(self):
        cwd = os.getcwd()

        dep_id, name = self._provision_mysql_instance()

        show_cmd = ("cld service show --deploy-id {dep_id}").format(
            dep_id=dep_id)
        self.assertTrue(
            utils.assert_deploy_complete(show_cmd,
                                         "SERVICE_DEPLOYMENT_COMPLETE"),
            "Service deployment completed")
        utils.cleanup(name)

        os.chdir(cwd)
Esempio n. 5
0
    def _execute_app_vars_test(self, target_dir, list_of_dicts):
        utils.create_cld_yaml_file(target_dir, list_of_dicts)
        os.chdir(target_dir)

        deploy_cmd = "cld app deploy"
        dep_id = ''
        try:
            print("Deploy cmd:%s" % deploy_cmd)
            print("cwd:%s" % os.getcwd())
            output = subprocess.Popen(deploy_cmd,
                                      stdout=subprocess.PIPE,
                                      stderr=subprocess.PIPE,
                                      shell=True).communicate()[0]
            dep_id, app_name = utils.parse_dep_id("local-docker", output)
        except Exception as e:
            print(e)

        show_cmd = ("cld app show --deploy-id {dep_id}").format(dep_id=dep_id)
        self.assertTrue(
            utils.assert_deploy_complete(show_cmd, "APP_DEPLOYMENT_COMPLETE"),
            "App deployment completed")

        try:
            output = subprocess.Popen(show_cmd,
                                      stdout=subprocess.PIPE,
                                      stderr=subprocess.PIPE,
                                      shell=True).communicate()[0]
            app_url = utils.parse_app_url(output)
        except Exception as e:
            print(e)

        req = requests.get(app_url)
        response = req.text
        self.assertTrue(utils.contains("Hello, World!", response))

        utils.cleanup(app_name)
        utils.cleanup(app_name)
        utils.cleanup("mysql")
        utils.cleanup("ubuntu")
Esempio n. 6
0
    def test_app_deploy_with_yaml_file(self):
        cwd = os.getcwd()
        dep_id, service_name = self._provision_mysql_instance()

        show_cmd = ("cld service show --deploy-id {dep_id}").format(
            dep_id=dep_id)

        self.assertTrue(
            utils.assert_deploy_complete(show_cmd,
                                         "SERVICE_DEPLOYMENT_COMPLETE"),
            "Service deployment completed")
        try:
            output = subprocess.Popen(show_cmd,
                                      stdout=subprocess.PIPE,
                                      stderr=subprocess.PIPE,
                                      shell=True).communicate()[0]
        except Exception as e:
            print(e)

        host, db_name, user, password = utils.parse_service_info(output)

        env_vars_dict = dict()
        env_vars_dict['DB'] = db_name
        env_vars_dict['HOST'] = host
        env_vars_dict['USER'] = user
        env_vars_dict['PASSWORD'] = password

        app_details_dict = {}
        app_details_dict['type'] = 'python'
        app_details_dict['entry_point'] = 'application.py'
        app_details_dict['app_port'] = '5000'
        app_details_dict['env_variables'] = env_vars_dict
        app_dict = {}
        app_dict['application'] = app_details_dict

        cloud_details_dict = {}
        cloud_details_dict['type'] = 'local-docker'
        cloud_dict = {}
        cloud_dict['cloud'] = cloud_details_dict

        list_of_dicts = list()
        list_of_dicts.append(app_dict)
        list_of_dicts.append(cloud_dict)

        target_dir = "/tmp/lme-examples/greetings-python"
        utils.create_cld_yaml_file(target_dir, list_of_dicts)

        deploy_cmd = "cld app deploy"
        dep_id = ''
        try:
            output = subprocess.Popen(deploy_cmd,
                                      stdout=subprocess.PIPE,
                                      stderr=subprocess.PIPE,
                                      shell=True).communicate()[0]
            dep_id, app_name = utils.parse_dep_id("local-docker", output)
        except Exception as e:
            print(e)

        show_cmd = ("cld app show --deploy-id {dep_id}").format(dep_id=dep_id)
        self.assertTrue(
            utils.assert_deploy_complete(show_cmd, "APP_DEPLOYMENT_COMPLETE"),
            "App deployment completed")

        try:
            output = subprocess.Popen(show_cmd,
                                      stdout=subprocess.PIPE,
                                      stderr=subprocess.PIPE,
                                      shell=True).communicate()[0]
            app_url = utils.parse_app_url(output)
        except Exception as e:
            print(e)

        req = requests.get(app_url)
        response = req.text
        self.assertTrue(utils.contains("Hello, World!", response))

        utils.cleanup(service_name)
        utils.cleanup(app_name)
        os.chdir(cwd)