summaryrefslogblamecommitdiffhomepage
path: root/test/unit/applications/lang/python.py
blob: dcdd2ffeeb79fe5aafa0f1e0097793bd5969c2c0 (plain) (tree)
1
2
3
4
5
6
7
8
9
         
             
             
 
                                                        
                           


                                                  

                               
                                                
               


                         


                                
                                                               










                                                                            
 




                                                    
                        
             
                                                                          

                                 
                                                





                                                         

                    
         
import os
import shutil
import pytest

from unit.applications.proto import TestApplicationProto
from conftest import option


class TestApplicationPython(TestApplicationProto):
    application_type = "python"

    def load(self, script, name=None, **kwargs):
        print()
        if name is None:
            name = script

        if script[0] == '/':
            script_path = script
        else:
            script_path = option.test_dir + '/python/' + script

        if kwargs.get('isolation') and kwargs['isolation'].get('rootfs'):
            rootfs = kwargs['isolation']['rootfs']

            if not os.path.exists(rootfs + '/app/python/'):
                os.makedirs(rootfs + '/app/python/')

            if not os.path.exists(rootfs + '/app/python/' + name):
                shutil.copytree(script_path, rootfs + '/app/python/' + name)

            script_path = '/app/python/' + name

        appication_type = self.get_appication_type()

        if appication_type is None:
            appication_type = self.application_type

        self._load_conf(
            {
                "listeners": {"*:7080": {"pass": "applications/" + name}},
                "applications": {
                    name: {
                        "type": appication_type,
                        "processes": {"spare": 0},
                        "path": script_path,
                        "working_directory": script_path,
                        "module": "wsgi",
                    }
                },
            },
            **kwargs
        )